drg_cms 0.5.8.2 → 0.5.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,33 +0,0 @@
1
- .themodal-lock {
2
- /* when modal is opened we're removing scrollbars from the main content */
3
- overflow: hidden;
4
- }
5
-
6
- .themodal-overlay {
7
- /* overlay will stay fixed and will take all the space available */
8
- position: fixed;
9
- bottom: 0;
10
- left: 0;
11
- top: 0;
12
- right: 0;
13
- z-index: 100;
14
-
15
- /* if modal content doesn't fit inside the overlay, display scrollbars */
16
- overflow: auto;
17
-
18
- /* allow one-finger iPad scrolling */
19
- -webkit-overflow-scrolling: touch;
20
-
21
- }
22
-
23
- /* fix for iPad glitches */
24
- .themodal-overlay > * {
25
- -webkit-transform: translateZ(0px);
26
- }
27
-
28
- .themodal-overlay {
29
- background: rgba(0, 0, 0, 0.5);
30
- /* IE6–IE8 */
31
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #7F000000, endColorstr = #7F000000);
32
- zoom: 1;
33
- }