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