comparison js/Editor-1.5.6/css/scss/lightbox.scss @ 2:a64ece32a01a draft default tip

"planemo upload for repository https://github.com/ImmPortDB/immport-galaxy-tools/tree/master/flowtools/cs_overview commit a46097db0b6056e1125237393eb6974cfd51eb41"
author azomics
date Tue, 28 Jul 2020 08:32:36 -0400
parents
children
comparison
equal deleted inserted replaced
1:bca68066a957 2:a64ece32a01a
1
2
3 div.DTED_Lightbox_Wrapper {
4 position: fixed;
5 top: 0;
6 left: 50%;
7 margin-left: -390px;
8 width: 780px;
9 height: 100%;
10 z-index: 11;
11
12 div.DTED_Lightbox_Container {
13 *position: absolute; /* IE6 */
14 *top: 50%;
15 #position: absolute; /* IE7 */
16 #top: 50%;
17 display: table;
18 height: 100%;
19 width: 100%;
20
21 div.DTED_Lightbox_Content_Wrapper {
22 *position: relative; /* IE6 */
23 #position: relative; /* IE7 */
24 display: table-cell;
25 vertical-align: middle;
26 width: 100%;
27
28 div.DTED_Lightbox_Content {
29 *top: -50%; /* IE6 */
30 #top: -50%; /* IE7 */
31 position: relative;
32 border: 7px solid rgba(220, 220, 220, 0.5);
33 box-shadow: 2px 2px 10px #555;
34 border-radius: 10px;
35 @include box-sizing(border-box);
36
37 div.DTE {
38 background: white;
39 border-radius: 6px;
40 box-shadow: 0 0 5px #555;
41 border: 2px solid #444;
42 @include box-sizing(border-box);
43
44 div.DTE_Header {
45 top: 2px;
46 left: 2px;
47 right: 2px;
48 width: auto;
49 border-top-left-radius: 5px;
50 border-top-right-radius: 5px;
51 }
52
53 div.DTE_Footer {
54 bottom: 2px;
55 left: 2px;
56 right: 2px;
57 width: auto;
58 border-bottom-left-radius: 5px;
59 border-bottom-right-radius: 5px;
60 }
61 }
62
63 div.DTED_Lightbox_Close {
64 @include close-icon();
65 }
66 }
67 }
68 }
69 }
70
71
72 div.DTED_Lightbox_Background {
73 @include overlay-background();
74 }
75
76
77 body.DTED_Lightbox_Mobile {
78 div.DTED_Lightbox_Background {
79 height: 0;
80 }
81
82 div.DTED_Lightbox_Shown {
83 display: none;
84 }
85
86 div.DTED_Lightbox_Wrapper {
87 position: absolute;
88 top: 0px;
89 left: 0px;
90 right: 0px;
91 bottom: 0px;
92 width: auto;
93 height: auto;
94 margin-left: 0;
95 -webkit-overflow-scrolling: touch;
96
97 div.DTED_Lightbox_Container {
98 display: block;
99
100 div.DTED_Lightbox_Content_Wrapper {
101 display: block;
102
103 div.DTED_Lightbox_Content {
104 border: 4px solid rgba(220, 220, 220, 0.5);
105 border-radius: 0;
106
107 div.DTE {
108 border-radius: 0;
109 box-shadow: 0 0 5px #555;
110 border: 2px solid #444;
111
112 div.DTE_Header {
113 border-top-left-radius: 0;
114 border-top-right-radius: 0;
115 }
116
117 div.DTE_Footer {
118 border-bottom-left-radius: 0;
119 border-bottom-right-radius: 0;
120 }
121 }
122
123 div.DTED_Lightbox_Close {
124 top: 11px;
125 right: 15px;
126 }
127 }
128 }
129 }
130 }
131 }
132
133 @media only screen
134 and (max-width: 780px) {
135 div.DTED_Lightbox_Wrapper {
136 position: fixed;
137 top: 0;
138 left: 0;
139 width: 100%;
140 margin-left: 0;
141 }
142 }
143
144
145
146
147