semantic-ui-sass 0.19.3.1 → 1.7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +5 -6
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +472 -367
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +9 -5
- data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
- data/app/assets/javascripts/semantic-ui/api.js +840 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
- data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
- data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
- data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
- data/app/assets/javascripts/semantic-ui/modal.js +294 -219
- data/app/assets/javascripts/semantic-ui/nag.js +120 -186
- data/app/assets/javascripts/semantic-ui/popup.js +491 -223
- data/app/assets/javascripts/semantic-ui/progress.js +779 -0
- data/app/assets/javascripts/semantic-ui/rating.js +66 -22
- data/app/assets/javascripts/semantic-ui/search.js +219 -99
- data/app/assets/javascripts/semantic-ui/shape.js +72 -29
- data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
- data/app/assets/javascripts/semantic-ui/site.js +487 -0
- data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
- data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
- data/app/assets/javascripts/semantic-ui/tab.js +680 -603
- data/app/assets/javascripts/semantic-ui/transition.js +269 -158
- data/app/assets/javascripts/semantic-ui/video.js +113 -32
- data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
- data/app/assets/javascripts/semantic-ui/visit.js +513 -0
- data/app/assets/stylesheets/semantic-ui.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +99 -216
- metadata +22 -27
- data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
- data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
- data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-large.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small.gif +0 -0
- data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
- data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
- data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,7 +1,7 @@
|
|
1
|
-
/*
|
2
|
-
* # Semantic
|
3
|
-
*
|
4
|
-
*
|
1
|
+
/*
|
2
|
+
* # Semantic UI
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
5
|
*
|
6
6
|
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
@@ -9,6 +9,8 @@
|
|
9
9
|
*
|
10
10
|
*/
|
11
11
|
|
12
|
+
|
13
|
+
|
12
14
|
/*******************************
|
13
15
|
Modal
|
14
16
|
*******************************/
|
@@ -22,19 +24,32 @@
|
|
22
24
|
text-align: left;
|
23
25
|
width: 90%;
|
24
26
|
margin-left: -45%;
|
25
|
-
background
|
26
|
-
border:
|
27
|
-
|
27
|
+
background: #ffffff;
|
28
|
+
border: none;
|
29
|
+
box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.3);
|
30
|
+
border-radius: 0.2857rem;
|
28
31
|
-webkit-user-select: text;
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
+
-moz-user-select: text;
|
33
|
+
-ms-user-select: text;
|
34
|
+
user-select: text;
|
35
|
+
will-change: top, left, margin, transform, opacity;
|
36
|
+
}
|
37
|
+
.ui.modal > :first-child:not(.icon),
|
38
|
+
.ui.modal > .icon:first-child + * {
|
39
|
+
border-top-left-radius: 0.2857rem;
|
40
|
+
border-top-right-radius: 0.2857rem;
|
32
41
|
}
|
42
|
+
.ui.modal > :last-child {
|
43
|
+
border-bottom-left-radius: 0.2857rem;
|
44
|
+
border-bottom-right-radius: 0.2857rem;
|
45
|
+
}
|
46
|
+
|
33
47
|
|
34
48
|
/*******************************
|
35
49
|
Content
|
36
50
|
*******************************/
|
37
51
|
|
52
|
+
|
38
53
|
/*--------------
|
39
54
|
Close
|
40
55
|
---------------*/
|
@@ -42,14 +57,16 @@
|
|
42
57
|
.ui.modal > .close {
|
43
58
|
cursor: pointer;
|
44
59
|
position: absolute;
|
60
|
+
top: -2.5rem;
|
61
|
+
right: -2.5rem;
|
45
62
|
z-index: 1;
|
46
63
|
opacity: 0.8;
|
47
64
|
font-size: 1.25em;
|
48
|
-
|
49
|
-
|
50
|
-
|
65
|
+
color: #ffffff;
|
66
|
+
width: 2.25rem;
|
67
|
+
height: 2.25rem;
|
68
|
+
padding: 0.625rem 0rem 0rem 0rem;
|
51
69
|
}
|
52
|
-
|
53
70
|
.ui.modal > .close:hover {
|
54
71
|
opacity: 1;
|
55
72
|
}
|
@@ -59,11 +76,18 @@
|
|
59
76
|
---------------*/
|
60
77
|
|
61
78
|
.ui.modal > .header {
|
79
|
+
display: block;
|
80
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
81
|
+
background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
|
82
|
+
background: linear-gradient(transparent, rgba(0, 0, 0, 0.05)) #ffffff;
|
62
83
|
margin: 0em;
|
63
|
-
padding: 1.
|
84
|
+
padding: 1.2rem 2rem;
|
85
|
+
box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
64
86
|
font-size: 1.6em;
|
87
|
+
line-height: 1.3em;
|
65
88
|
font-weight: bold;
|
66
|
-
|
89
|
+
color: rgba(0, 0, 0, 0.85);
|
90
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
67
91
|
}
|
68
92
|
|
69
93
|
/*--------------
|
@@ -72,37 +96,44 @@
|
|
72
96
|
|
73
97
|
.ui.modal > .content {
|
74
98
|
display: table;
|
99
|
+
table-layout: fixed;
|
75
100
|
width: 100%;
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
-moz-box-sizing: border-box;
|
81
|
-
-ms-box-sizing: border-box;
|
82
|
-
box-sizing: border-box;
|
101
|
+
font-size: 1em;
|
102
|
+
line-height: 1.4;
|
103
|
+
padding: 2rem;
|
104
|
+
background: #ffffff;
|
83
105
|
}
|
84
106
|
|
85
|
-
|
107
|
+
/* Image */
|
108
|
+
.ui.modal > .content > .image {
|
86
109
|
display: table-cell;
|
87
|
-
|
88
|
-
|
110
|
+
width: '';
|
111
|
+
vertical-align: top;
|
112
|
+
}
|
113
|
+
.ui.modal > .content > .image[class*="top aligned"] {
|
114
|
+
vertical-align: top;
|
115
|
+
}
|
116
|
+
.ui.modal > .content > .image[class*="top aligned"] {
|
117
|
+
vertical-align: middle;
|
89
118
|
}
|
90
119
|
|
91
|
-
|
120
|
+
/* Description */
|
121
|
+
.ui.modal > .content > .description {
|
92
122
|
display: table-cell;
|
93
|
-
padding-left: 1.5%;
|
94
123
|
vertical-align: top;
|
95
124
|
}
|
96
|
-
|
125
|
+
.ui.modal > .content > .icon + .description,
|
126
|
+
.ui.modal > .content > .image + .description {
|
127
|
+
min-width: '';
|
128
|
+
width: 80%;
|
129
|
+
padding-left: 2em;
|
130
|
+
}
|
97
131
|
/*rtl:ignore*/
|
98
|
-
|
99
|
-
|
100
|
-
font-size: 8em;
|
132
|
+
.ui.modal > .content > .image > i.icon {
|
133
|
+
font-size: 8rem;
|
101
134
|
margin: 0em;
|
102
|
-
|
103
|
-
|
104
|
-
.ui.modal > .content p {
|
105
|
-
line-height: 1.6;
|
135
|
+
opacity: 1;
|
136
|
+
width: auto;
|
106
137
|
}
|
107
138
|
|
108
139
|
/*--------------
|
@@ -110,97 +141,108 @@
|
|
110
141
|
---------------*/
|
111
142
|
|
112
143
|
.ui.modal .actions {
|
144
|
+
background: #efefef;
|
113
145
|
padding: 1rem 2rem;
|
146
|
+
border-top: 1px solid rgba(39, 41, 43, 0.15);
|
114
147
|
text-align: right;
|
115
148
|
}
|
116
|
-
|
117
149
|
.ui.modal .actions > .button {
|
118
150
|
margin-left: 0.75em;
|
119
151
|
}
|
120
152
|
|
121
153
|
/*-------------------
|
122
|
-
|
154
|
+
Responsive
|
123
155
|
--------------------*/
|
124
156
|
|
125
|
-
/* Mobile Only */
|
126
|
-
|
127
|
-
@media only screen and (max-width : 768px) {
|
128
|
-
/*rtl:ignore*/
|
129
|
-
|
130
|
-
.ui.modal .content > .left:not(.ui) {
|
131
|
-
display: block;
|
132
|
-
padding: 0em 0em 1em;
|
133
|
-
}
|
134
|
-
|
135
|
-
/*rtl:ignore*/
|
136
|
-
|
137
|
-
.ui.modal .content > .right:not(.ui) {
|
138
|
-
display: block;
|
139
|
-
padding: 1em 0em 0em;
|
140
|
-
-webkit-box-shadow: none;
|
141
|
-
box-shadow: none;
|
142
|
-
}
|
143
|
-
|
144
|
-
.ui.modal .content .image {
|
145
|
-
width: auto !important;
|
146
|
-
max-width: 100%;
|
147
|
-
}
|
148
|
-
|
149
|
-
.ui.modal .actions {
|
150
|
-
padding-bottom: 0em;
|
151
|
-
}
|
152
157
|
|
153
|
-
|
154
|
-
|
155
|
-
|
158
|
+
/* Modal Width */
|
159
|
+
@media only screen and (max-width: 767px) {
|
160
|
+
.ui.modal {
|
161
|
+
width: 95%;
|
162
|
+
margin: 0em 0em 0em -47.5%;
|
156
163
|
}
|
157
164
|
}
|
158
|
-
|
159
|
-
/* Tablet and Mobile */
|
160
|
-
|
161
|
-
@media only screen and (max-width : 998px) {
|
165
|
+
@media only screen and (min-width: 768px) {
|
162
166
|
.ui.modal {
|
163
|
-
width:
|
164
|
-
margin
|
165
|
-
}
|
166
|
-
|
167
|
-
.ui.modal > .close {
|
168
|
-
color: rgba(0, 0, 0, 0.8);
|
169
|
-
top: 1.5rem;
|
170
|
-
right: 1rem;
|
167
|
+
width: 88%;
|
168
|
+
margin: 0em 0em 0em -44%;
|
171
169
|
}
|
172
170
|
}
|
173
|
-
|
174
|
-
/* Computer / Responsive */
|
175
|
-
|
176
|
-
@media only screen and (min-width : 998px) {
|
171
|
+
@media only screen and (min-width: 992px) {
|
177
172
|
.ui.modal {
|
178
173
|
width: 74%;
|
179
|
-
margin
|
174
|
+
margin: 0em 0em 0em -37%;
|
180
175
|
}
|
181
176
|
}
|
182
|
-
|
183
|
-
@media only screen and (min-width : 1500px) {
|
177
|
+
@media only screen and (min-width: 1400px) {
|
184
178
|
.ui.modal {
|
185
179
|
width: 56%;
|
186
|
-
margin
|
180
|
+
margin: 0em 0em 0em -28%;
|
187
181
|
}
|
188
182
|
}
|
189
|
-
|
190
|
-
@media only screen and (min-width : 1750px) {
|
183
|
+
@media only screen and (min-width: 1920px) {
|
191
184
|
.ui.modal {
|
192
185
|
width: 42%;
|
193
|
-
margin
|
186
|
+
margin: 0em 0em 0em -21%;
|
194
187
|
}
|
195
188
|
}
|
196
189
|
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
190
|
+
/* Tablet and Mobile */
|
191
|
+
@media only screen and (max-width: 992px) {
|
192
|
+
.ui.modal > .header {
|
193
|
+
padding-right: 2.25rem;
|
194
|
+
}
|
195
|
+
.ui.modal > .close {
|
196
|
+
top: 0.905rem;
|
197
|
+
right: 1rem;
|
198
|
+
color: rgba(0, 0, 0, 0.8);
|
201
199
|
}
|
202
200
|
}
|
203
201
|
|
202
|
+
/* Mobile */
|
203
|
+
@media only screen and (max-width: 767px) {
|
204
|
+
.ui.modal > .header {
|
205
|
+
padding: 0.75rem 1rem !important;
|
206
|
+
padding-right: 2.25rem !important;
|
207
|
+
}
|
208
|
+
.ui.modal > .content {
|
209
|
+
display: block;
|
210
|
+
padding: 1rem !important;
|
211
|
+
}
|
212
|
+
.ui.modal > .close {
|
213
|
+
top: 0.5rem !important;
|
214
|
+
right: 0.5rem !important;
|
215
|
+
}
|
216
|
+
/*rtl:ignore*/
|
217
|
+
.ui.modal .content > .image {
|
218
|
+
display: block;
|
219
|
+
max-width: 100%;
|
220
|
+
margin: 0em auto !important;
|
221
|
+
text-align: center;
|
222
|
+
padding: 0rem 0rem 1rem !important;
|
223
|
+
}
|
224
|
+
.ui.modal > .content > .image > i.icon {
|
225
|
+
font-size: 5rem;
|
226
|
+
text-align: center;
|
227
|
+
}
|
228
|
+
/*rtl:ignore*/
|
229
|
+
.ui.modal .content > .description {
|
230
|
+
display: block;
|
231
|
+
width: 100% !important;
|
232
|
+
margin: 0em !important;
|
233
|
+
padding: 1rem 0rem !important;
|
234
|
+
box-shadow: none;
|
235
|
+
}
|
236
|
+
.ui.modal > .actions {
|
237
|
+
padding: 1rem 1rem -1rem !important;
|
238
|
+
}
|
239
|
+
.ui.modal .actions > .buttons,
|
240
|
+
.ui.modal .actions > .button {
|
241
|
+
margin-bottom: 2rem;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
|
204
246
|
/*******************************
|
205
247
|
Types
|
206
248
|
*******************************/
|
@@ -208,101 +250,181 @@
|
|
208
250
|
.ui.basic.modal {
|
209
251
|
background-color: transparent;
|
210
252
|
border: none;
|
211
|
-
|
253
|
+
box-shadow: 0px 0px 0px 0px;
|
254
|
+
color: #ffffff;
|
255
|
+
}
|
256
|
+
.ui.basic.modal > .header,
|
257
|
+
.ui.basic.modal > .content,
|
258
|
+
.ui.basic.modal > .actions {
|
259
|
+
background-color: transparent;
|
260
|
+
}
|
261
|
+
.ui.basic.modal > .header {
|
262
|
+
color: #ffffff;
|
212
263
|
}
|
213
|
-
|
214
264
|
.ui.basic.modal > .close {
|
215
|
-
top:
|
216
|
-
right:
|
265
|
+
top: 1rem;
|
266
|
+
right: 1.5rem;
|
217
267
|
}
|
218
268
|
|
219
|
-
|
220
|
-
|
269
|
+
/* Tablet and Mobile */
|
270
|
+
@media only screen and (max-width: 992px) {
|
271
|
+
.ui.basic.modal > .close {
|
272
|
+
color: #ffffff;
|
273
|
+
}
|
221
274
|
}
|
222
275
|
|
276
|
+
|
223
277
|
/*******************************
|
224
278
|
Variations
|
225
279
|
*******************************/
|
226
280
|
|
227
|
-
/* A modal that cannot fit on the page */
|
228
281
|
|
229
|
-
|
230
|
-
|
231
|
-
|
282
|
+
/* A modal that cannot fit on the page */
|
283
|
+
.scrolling.dimmable.dimmed {
|
284
|
+
overflow: hidden;
|
285
|
+
}
|
286
|
+
.scrolling.dimmable.dimmed > .dimmer {
|
287
|
+
overflow: auto;
|
288
|
+
-webkit-overflow-scrolling: touch;
|
289
|
+
}
|
290
|
+
.scrolling.dimmable > .dimmer {
|
291
|
+
position: fixed;
|
292
|
+
}
|
293
|
+
.ui.scrolling.modal {
|
294
|
+
position: static;
|
295
|
+
margin: 3.5rem auto !important;
|
296
|
+
}
|
297
|
+
@media only screen and (max-width: 992px) {
|
298
|
+
.ui.scrolling.modal {
|
299
|
+
margin-top: 1rem;
|
300
|
+
margin-bottom: 1rem;
|
301
|
+
}
|
232
302
|
}
|
233
303
|
|
304
|
+
|
234
305
|
/*******************************
|
235
|
-
|
306
|
+
States
|
236
307
|
*******************************/
|
237
308
|
|
238
309
|
.ui.active.modal {
|
239
310
|
display: block;
|
240
311
|
}
|
241
312
|
|
313
|
+
|
314
|
+
/*******************************
|
315
|
+
Variations
|
316
|
+
*******************************/
|
317
|
+
|
318
|
+
|
319
|
+
/*--------------
|
320
|
+
Full Screen
|
321
|
+
---------------*/
|
322
|
+
|
323
|
+
.ui.fullscreen.modal {
|
324
|
+
width: 95% !important;
|
325
|
+
left: 2.5% !important;
|
326
|
+
margin: 1em auto;
|
327
|
+
}
|
328
|
+
.ui.fullscreen.scrolling.modal {
|
329
|
+
left: 0em !important;
|
330
|
+
}
|
331
|
+
.ui.fullscreen.modal > .header {
|
332
|
+
padding-right: 2.25rem;
|
333
|
+
}
|
334
|
+
.ui.fullscreen.modal > .close {
|
335
|
+
top: 0.905rem;
|
336
|
+
right: 1rem;
|
337
|
+
color: rgba(0, 0, 0, 0.8);
|
338
|
+
}
|
339
|
+
|
242
340
|
/*--------------
|
243
341
|
Size
|
244
342
|
---------------*/
|
245
343
|
|
246
|
-
|
344
|
+
.ui.modal {
|
345
|
+
font-size: 1rem;
|
346
|
+
}
|
247
347
|
|
348
|
+
/* Small */
|
248
349
|
.ui.small.modal > .header {
|
249
350
|
font-size: 1.3em;
|
250
351
|
}
|
251
352
|
|
252
|
-
|
353
|
+
/* Small Modal Width */
|
354
|
+
@media only screen and (max-width: 767px) {
|
253
355
|
.ui.small.modal {
|
254
|
-
width:
|
255
|
-
margin
|
356
|
+
width: 95%;
|
357
|
+
margin: 0em 0em 0em -47.5%;
|
256
358
|
}
|
257
359
|
}
|
258
|
-
|
259
|
-
@media only screen and (min-width : 1500px) {
|
360
|
+
@media only screen and (min-width: 768px) {
|
260
361
|
.ui.small.modal {
|
261
|
-
width:
|
262
|
-
margin
|
362
|
+
width: 52.8%;
|
363
|
+
margin: 0em 0em 0em -26.4%;
|
263
364
|
}
|
264
365
|
}
|
265
|
-
|
266
|
-
@media only screen and (min-width : 1750px) {
|
366
|
+
@media only screen and (min-width: 992px) {
|
267
367
|
.ui.small.modal {
|
268
|
-
width:
|
269
|
-
margin
|
368
|
+
width: 44.4%;
|
369
|
+
margin: 0em 0em 0em -22.2%;
|
270
370
|
}
|
271
371
|
}
|
272
|
-
|
273
|
-
@media only screen and (min-width : 2000px) {
|
372
|
+
@media only screen and (min-width: 1400px) {
|
274
373
|
.ui.small.modal {
|
275
|
-
width:
|
276
|
-
margin
|
374
|
+
width: 33.6%;
|
375
|
+
margin: 0em 0em 0em -16.8%;
|
376
|
+
}
|
377
|
+
}
|
378
|
+
@media only screen and (min-width: 1920px) {
|
379
|
+
.ui.small.modal {
|
380
|
+
width: 25.2%;
|
381
|
+
margin: 0em 0em 0em -12.6%;
|
277
382
|
}
|
278
383
|
}
|
279
384
|
|
280
|
-
/* Large */
|
281
|
-
|
282
|
-
|
385
|
+
/* Large Modal Width */
|
386
|
+
.ui.large.modal > .header {
|
387
|
+
font-size: 1.6em;
|
388
|
+
}
|
389
|
+
@media only screen and (max-width: 767px) {
|
283
390
|
.ui.large.modal {
|
284
|
-
width:
|
285
|
-
margin
|
391
|
+
width: 95%;
|
392
|
+
margin: 0em 0em 0em -47.5%;
|
286
393
|
}
|
287
394
|
}
|
288
|
-
|
289
|
-
@media only screen and (min-width : 1500px) {
|
395
|
+
@media only screen and (min-width: 768px) {
|
290
396
|
.ui.large.modal {
|
291
|
-
width:
|
292
|
-
margin
|
397
|
+
width: 88%;
|
398
|
+
margin: 0em 0em 0em -44%;
|
293
399
|
}
|
294
400
|
}
|
295
|
-
|
296
|
-
@media only screen and (min-width : 1750px) {
|
401
|
+
@media only screen and (min-width: 992px) {
|
297
402
|
.ui.large.modal {
|
298
|
-
width:
|
299
|
-
margin
|
403
|
+
width: 88.8%;
|
404
|
+
margin: 0em 0em 0em -44.4%;
|
300
405
|
}
|
301
406
|
}
|
302
|
-
|
303
|
-
@media only screen and (min-width : 2000px) {
|
407
|
+
@media only screen and (min-width: 1400px) {
|
304
408
|
.ui.large.modal {
|
305
|
-
width:
|
306
|
-
margin
|
409
|
+
width: 67.2%;
|
410
|
+
margin: 0em 0em 0em -33.6%;
|
307
411
|
}
|
308
|
-
}
|
412
|
+
}
|
413
|
+
@media only screen and (min-width: 1920px) {
|
414
|
+
.ui.large.modal {
|
415
|
+
width: 50.4%;
|
416
|
+
margin: 0em 0em 0em -25.2%;
|
417
|
+
}
|
418
|
+
}
|
419
|
+
|
420
|
+
|
421
|
+
/*******************************
|
422
|
+
Theme Overrides
|
423
|
+
*******************************/
|
424
|
+
|
425
|
+
|
426
|
+
|
427
|
+
/*******************************
|
428
|
+
Site Overrides
|
429
|
+
*******************************/
|
430
|
+
|