Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / composer / src / src / styles / DetailsPanel.scss
1
2 /*
3  * 
4  *   Copyright 2016 RIFT.IO Inc
5  *
6  *   Licensed under the Apache License, Version 2.0 (the "License");
7  *   you may not use this file except in compliance with the License.
8  *   You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *   Unless required by applicable law or agreed to in writing, software
13  *   distributed under the License is distributed on an "AS IS" BASIS,
14  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *   See the License for the specific language governing permissions and
16  *   limitations under the License.
17  *
18  */
19 @import 'main';
20 @import 'variables';
21 .DetailsPanel {
22         @extend .panel;
23         border-top: 1px solid mix($panel-border-color, white, 80%);
24         //border-left: 1px solid $panel-border-color;
25         background-color: ($panel-bg-color-contrast);
26         position: absolute;
27         top: 111px;
28         right: 0;
29         bottom: 0;
30         width: 300px;
31         min-width: 6px;
32         z-index: 2;
33         .DetailsPanelBody {
34                 @extend .panel-body;
35                 position: absolute;
36                 overflow: hidden;
37                 &:hover {
38                         overflow: auto;
39                 }
40                 -ms-overflow-style: -ms-autohiding-scrollbar;
41                 bottom: 0;
42                 top: 0;
43                 left: 0;
44                 right: 0;
45                 min-width: 200px;
46         }
47 }