PluginProbe
QuadMenu – Mega Menu / 3.3.4
QuadMenu – Mega Menu v3.3.4
3.3.7 3.3.6 trunk 1.8.4 1.8.5 1.8.7 1.8.8 1.8.9 1.9.0 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 All 87 releases
quadmenu / assets / backend / css / modal.css

modal.css in QuadMenu – Mega Menu 3.3.4, at assets/backend/css/modal.css

150 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .fade {
2 opacity: 0;
3 -webkit-transition: opacity .15s linear;
4 -o-transition: opacity .15s linear;
5 transition: opacity .15s linear;
6 }
7
8 .fade.in {
9 opacity: 1;
10 }
11
12 .modal-open {
13 overflow: hidden;
14 }
15 .modal {
16 display: none;
17 overflow: hidden;
18 position: fixed;
19 top: 0;
20 right: 0;
21 bottom: 0;
22 left: 0;
23 z-index: 1050;
24 -webkit-overflow-scrolling: touch;
25 outline: 0;
26 }
27 .modal.fade .modal-dialog {
28 -webkit-transform: translate(0, -25%);
29 -ms-transform: translate(0, -25%);
30 -o-transform: translate(0, -25%);
31 transform: translate(0, -25%);
32 -webkit-transition: -webkit-transform 0.3s ease-out;
33 -o-transition: -o-transform 0.3s ease-out;
34 transition: transform 0.3s ease-out;
35 }
36
37 .modal.in .modal-dialog {
38 -webkit-transform: translate(0,25%);
39 -ms-transform: translate(0,25%);
40 -o-transform: translate(0,25%);
41 transform: translate(0,25%);
42 }
43 .modal-open .modal {
44 overflow-x: hidden;
45 overflow-y: auto;
46 }
47 .modal-dialog {
48 position: relative;
49 width: auto;
50 margin: 10px;
51 }
52 .modal-content {
53 position: relative;
54 background-color: #ffffff;
55 border: 1px solid #999999;
56 border: 1px solid rgba(0, 0, 0, 0.2);
57 border-radius: 6px;
58 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
59 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
60 -webkit-background-clip: padding-box;
61 background-clip: padding-box;
62 outline: 0;
63 }
64 .modal-backdrop {
65 position: fixed;
66 top: 0;
67 right: 0;
68 bottom: 0;
69 left: 0;
70 z-index: 1040;
71 background-color: #000000;
72 }
73 .modal-backdrop.fade {
74 opacity: 0;
75 filter: alpha(opacity=0);
76 }
77 .modal-backdrop.in {
78 opacity: 0.5;
79 filter: alpha(opacity=50);
80 }
81 .modal-header {
82 padding: 15px;
83 border-bottom: 1px solid #e5e5e5;
84 }
85 .modal-header .close {
86 margin-top: -2px;
87 float: right;
88 }
89 .modal-title {
90 margin: 0;
91 line-height: 1.42857143;
92 }
93 .modal-body {
94 position: relative;
95 padding: 15px;
96 }
97 .modal-footer {
98 padding: 15px;
99 text-align: right;
100 border-top: 1px solid #e5e5e5;
101 }
102 .modal-footer .btn + .btn {
103 margin-left: 5px;
104 margin-bottom: 0;
105 }
106 .modal-footer .btn-group .btn + .btn {
107 margin-left: -1px;
108 }
109 .modal-footer .btn-block + .btn-block {
110 margin-left: 0;
111 }
112 .modal-scrollbar-measure {
113 position: absolute;
114 top: -9999px;
115 width: 50px;
116 height: 50px;
117 overflow: scroll;
118 }
119 @media (min-width: 768px) {
120 .modal-dialog {
121 width: 600px;
122 margin: 30px auto;
123 }
124 .modal-content {
125 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
126 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
127 }
128 .modal-sm {
129 width: 300px;
130 }
131 }
132 @media (min-width: 992px) {
133 .modal-lg {
134 width: 900px;
135 }
136 }
137 .clearfix:before,
138 .clearfix:after,
139 .modal-header:before,
140 .modal-header:after,
141 .modal-footer:before,
142 .modal-footer:after {
143 content: " ";
144 display: table;
145 }
146 .clearfix:after,
147 .modal-header:after,
148 .modal-footer:after {
149 clear: both;
150 }