changed the header and license
[aai/sparky-fe.git] / resources / scss / components / _slidePanel.scss
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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 .slide-panel {
22   transition: left .5s,right .5s;
23
24   .slide-panel-header {
25     padding: 10px;
26     height: 45px;
27     display: table;
28     width: 100%;
29     .slide-panel-header-title, .collapse-double-icon {
30       display: table-cell;
31       vertical-align: middle;
32     }
33     .slide-panel-header-title {
34       @extend .body-2;
35       text-align: center;
36       width: 100%;
37       color: $text-color1;
38     }
39     .collapse-double-icon {
40       color: $text-color1;
41       cursor: pointer;
42     }
43   }
44
45   .slide-panel-content {
46     opacity: 1;
47     transition: opacity .5s, visibility .5s;
48
49     &.closed {
50       opacity: 0;
51       visibility: hidden;
52     }
53   }
54 }