Correcting spinner
[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 div.SplitPane.vertical {
25   position: initial !important;
26 }
27
28 .SplitPane {
29   min-width: $minimum-application-width;
30 }
31
32 .Resizer {
33   background: $border-color1;
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 transparent;
53   border-bottom: 5px solid transparent;
54   cursor: row-resize;
55   width: 100%;
56 }
57
58 .Resizer.horizontal:hover {
59   border-top: 5px solid $border-color2;
60   border-bottom: 5px solid $border-color2;
61 }
62
63 .Resizer.vertical {
64   width: 11px;
65   margin: 0 -5px;
66   border-left: 5px solid transparent;
67   border-right: 5px solid transparent;
68   cursor: col-resize;
69 }
70
71 .Resizer.vertical:hover {
72   border-left: 5px solid $border-color2;
73   border-right: $border-color2;
74 }
75 Resizer.disabled {
76   cursor: not-allowed;
77 }
78 Resizer.disabled:hover {
79   border-color: transparent;
80 }
81
82 .Pane2 {
83   background-color: $background-color4;
84   border-left: solid 2px $border-color5;
85   overflow: auto;
86 }