bfaf21f8b3d983e23c0d78cb48357493eb974143
[aai/sparky-fe.git] / resources / scss / tier-support / _splitPane.scss
1 /*
2 * ============LICENSE_START=======================================================
3 * SPARKY (AAI UI service)
4 * ================================================================================
5 * Copyright © 2017 AT&T Intellectual Property.
6 * Copyright © 2017 Amdocs
7 * All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 *
22 * ECOMP and OpenECOMP are trademarks
23 * and service marks of AT&T Intellectual Property.
24 */
25
26 .SplitPane {
27   min-width: 1280px;
28   //108 is the height of the header in tsui
29   height: calc(100% - 108px) !important;
30 }
31
32 .Resizer {
33   background: #000;
34   opacity: .2;
35   z-index: 1;
36   -moz-box-sizing: border-box;
37   -webkit-box-sizing: border-box;
38   box-sizing: border-box;
39   -moz-background-clip: padding;
40   -webkit-background-clip: padding;
41   background-clip: padding-box;
42 }
43
44 .Resizer:hover {
45   -webkit-transition: all 2s ease;
46   transition: all 2s ease;
47 }
48
49 .Resizer.horizontal {
50   height: 11px;
51   margin: -5px 0;
52   border-top: 5px solid rgba(255, 255, 255, 0);
53   border-bottom: 5px solid rgba(255, 255, 255, 0);
54   cursor: row-resize;
55   width: 100%;
56 }
57
58 .Resizer.horizontal:hover {
59   border-top: 5px solid rgba(0, 0, 0, 0.5);
60   border-bottom: 5px solid rgba(0, 0, 0, 0.5);
61 }
62
63 .Resizer.vertical {
64   width: 11px;
65   margin: 0 -5px;
66   border-left: 5px solid rgba(255, 255, 255, 0);
67   border-right: 5px solid rgba(255, 255, 255, 0);
68   cursor: col-resize;
69 }
70
71 .Resizer.vertical:hover {
72   border-left: 5px solid rgba(0, 0, 0, 0.5);
73   border-right: 5px solid rgba(0, 0, 0, 0.5);
74 }
75 Resizer.disabled {
76   cursor: not-allowed;
77 }
78 Resizer.disabled:hover {
79   border-color: transparent;
80 }
81
82 .Pane2 {
83   background-color: $tlv-light-gray;
84   border-left: solid 2px $light-gray;
85   overflow: hidden;
86 }