semantic-ui-sass 0.8.1.0 → 0.8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/dimmer.js +4 -2
- data/app/assets/javascripts/semantic-ui/modal.js +11 -6
- data/app/assets/javascripts/semantic-ui/popup.js +0 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +6 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +56 -73
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +89 -53
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +221 -316
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +43 -88
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +83 -23
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +831 -187
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +189 -191
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +4 -22
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +43 -20
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1529 -472
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +145 -152
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +36 -63
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +120 -175
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +13 -11
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +33 -115
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +46 -101
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +35 -65
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +127 -170
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +287 -269
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +42 -129
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +16 -49
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +54 -107
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +29 -22
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +112 -147
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +226 -230
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +20 -28
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +35 -78
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +27 -44
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +10 -41
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +31 -60
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +219 -451
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +75 -79
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +21 -23
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -8
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +86 -43
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +80 -53
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +6 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/semantic-ui-sass.gemspec +1 -1
- data/spec/dummy/config/application.rb +1 -1
- data/spec/spec_helper.rb +0 -1
- data/tasks/converter.rb +7 -0
- metadata +4 -7
- data/spec/dummy/config/database.yml +0 -25
@@ -16,11 +16,9 @@
|
|
16
16
|
.ui.grid {
|
17
17
|
display: block;
|
18
18
|
text-align: left;
|
19
|
-
|
20
19
|
font-size: 0em;
|
21
20
|
margin: 0% -1.5%;
|
22
21
|
padding: 0%;
|
23
|
-
|
24
22
|
-webkit-box-sizing: border-box;
|
25
23
|
-moz-box-sizing: border-box;
|
26
24
|
-ms-box-sizing: border-box;
|
@@ -47,19 +45,15 @@ body > .ui.grid {
|
|
47
45
|
|
48
46
|
.ui.grid > .column,
|
49
47
|
.ui.grid > .row > .column {
|
50
|
-
|
51
48
|
display: inline-block;
|
52
49
|
text-align: left;
|
53
50
|
font-size: 1rem;
|
54
|
-
|
55
51
|
padding-left: 1.5%;
|
56
52
|
padding-right: 1.5%;
|
57
|
-
|
58
53
|
-webkit-box-sizing: border-box;
|
59
54
|
-moz-box-sizing: border-box;
|
60
55
|
-ms-box-sizing: border-box;
|
61
56
|
box-sizing: border-box;
|
62
|
-
|
63
57
|
vertical-align: top;
|
64
58
|
}
|
65
59
|
|
@@ -74,6 +68,7 @@ body > .ui.grid {
|
|
74
68
|
padding: 1.5% 0% 0%;
|
75
69
|
font-size: 0rem;
|
76
70
|
}
|
71
|
+
|
77
72
|
.ui.grid > .row:first-child {
|
78
73
|
padding-top: 0rem;
|
79
74
|
margin-top: 0rem;
|
@@ -92,12 +87,10 @@ body > .ui.grid {
|
|
92
87
|
margin: 0em;
|
93
88
|
}
|
94
89
|
|
95
|
-
|
96
90
|
/*******************************
|
97
91
|
Variations
|
98
92
|
*******************************/
|
99
93
|
|
100
|
-
|
101
94
|
/*-----------------------
|
102
95
|
Page Grid (Responsive)
|
103
96
|
-------------------------*/
|
@@ -113,21 +106,25 @@ body > .ui.grid {
|
|
113
106
|
padding: 0% 4%;
|
114
107
|
}
|
115
108
|
}
|
109
|
+
|
116
110
|
@media only screen and (min-width : 998px) {
|
117
111
|
.ui.page.grid {
|
118
112
|
padding: 0% 8%;
|
119
113
|
}
|
120
114
|
}
|
115
|
+
|
121
116
|
@media only screen and (min-width : 1500px) {
|
122
117
|
.ui.page.grid {
|
123
118
|
padding: 0% 13%;
|
124
119
|
}
|
125
120
|
}
|
121
|
+
|
126
122
|
@media only screen and (min-width : 1750px) {
|
127
123
|
.ui.page.grid {
|
128
124
|
padding: 0% 18%;
|
129
125
|
}
|
130
126
|
}
|
127
|
+
|
131
128
|
@media only screen and (min-width : 2000px) {
|
132
129
|
.ui.page.grid {
|
133
130
|
padding: 0% 23%;
|
@@ -139,66 +136,82 @@ body > .ui.grid {
|
|
139
136
|
--------------------*/
|
140
137
|
|
141
138
|
/* Sizing Combinations */
|
139
|
+
|
142
140
|
.ui.grid > .row > .one.wide.column,
|
143
141
|
.ui.grid > .one.wide.column {
|
144
142
|
width: 6.25%;
|
145
143
|
}
|
144
|
+
|
146
145
|
.ui.grid > .row > .two.wide.column,
|
147
146
|
.ui.grid > .two.wide.column {
|
148
147
|
width: 12.5%;
|
149
148
|
}
|
149
|
+
|
150
150
|
.ui.grid > .row > .three.wide.column,
|
151
151
|
.ui.grid > .three.wide.column {
|
152
152
|
width: 18.75%;
|
153
153
|
}
|
154
|
+
|
154
155
|
.ui.grid > .row > .four.wide.column,
|
155
156
|
.ui.grid > .four.wide.column {
|
156
157
|
width: 25%;
|
157
158
|
}
|
159
|
+
|
158
160
|
.ui.grid > .row > .five.wide.column,
|
159
161
|
.ui.grid > .five.wide.column {
|
160
162
|
width: 31.25%;
|
161
163
|
}
|
164
|
+
|
162
165
|
.ui.grid > .row > .six.wide.column,
|
163
166
|
.ui.grid > .six.wide.column {
|
164
167
|
width: 37.5%;
|
165
168
|
}
|
169
|
+
|
166
170
|
.ui.grid > .row > .seven.wide.column,
|
167
171
|
.ui.grid > .seven.wide.column {
|
168
172
|
width: 43.75%;
|
169
173
|
}
|
174
|
+
|
170
175
|
.ui.grid > .row > .eight.wide.column,
|
171
176
|
.ui.grid > .eight.wide.column {
|
172
177
|
width: 50%;
|
173
178
|
}
|
179
|
+
|
174
180
|
.ui.grid > .row > .nine.wide.column,
|
175
181
|
.ui.grid > .nine.wide.column {
|
176
182
|
width: 56.25%;
|
177
183
|
}
|
184
|
+
|
178
185
|
.ui.grid > .row > .ten.wide.column,
|
179
186
|
.ui.grid > .ten.wide.column {
|
180
187
|
width: 62.5%;
|
181
188
|
}
|
189
|
+
|
182
190
|
.ui.grid > .row > .eleven.wide.column,
|
183
191
|
.ui.grid > .eleven.wide.column {
|
184
192
|
width: 68.75%;
|
185
193
|
}
|
194
|
+
|
186
195
|
.ui.grid > .row > .twelve.wide.column,
|
187
196
|
.ui.grid > .twelve.wide.column {
|
188
197
|
width: 75%;
|
189
198
|
}
|
199
|
+
|
190
200
|
.ui.grid > .row > .thirteen.wide.column,
|
191
201
|
.ui.grid > .thirteen.wide.column {
|
192
202
|
width: 81.25%;
|
193
203
|
}
|
204
|
+
|
194
205
|
.ui.grid > .row > .fourteen.wide.column,
|
195
206
|
.ui.grid > .fourteen.wide.column {
|
196
207
|
width: 87.5%;
|
197
208
|
}
|
209
|
+
|
198
210
|
.ui.grid > .row > .fifteen.wide.column,
|
199
211
|
.ui.grid > .fifteen.wide.column {
|
200
212
|
width: 93.75%;
|
201
213
|
}
|
214
|
+
|
202
215
|
.ui.grid > .row > .sixteen.wide.column,
|
203
216
|
.ui.grid > .sixteen.wide.column {
|
204
217
|
width: 100%;
|
@@ -209,87 +222,104 @@ body > .ui.grid {
|
|
209
222
|
--------------------*/
|
210
223
|
|
211
224
|
/* Standard */
|
225
|
+
|
212
226
|
.ui.grid > .column,
|
213
227
|
.ui.grid > .row > .column {
|
214
228
|
width: 6.25%;
|
215
229
|
}
|
216
230
|
|
217
231
|
/* Assume full width with one column */
|
232
|
+
|
218
233
|
.ui.one.column.grid > .row > .column,
|
219
234
|
.ui.one.column.grid > .column,
|
220
235
|
.ui.grid > .one.column.row > .column {
|
221
236
|
width: 100%;
|
222
237
|
}
|
238
|
+
|
223
239
|
.ui.two.column.grid > .row > .column,
|
224
240
|
.ui.two.column.grid > .column,
|
225
241
|
.ui.grid > .two.column.row > .column {
|
226
242
|
width: 50%;
|
227
243
|
}
|
244
|
+
|
228
245
|
.ui.three.column.grid > .row > .column,
|
229
246
|
.ui.three.column.grid > .column,
|
230
247
|
.ui.grid > .three.column.row > .column {
|
231
248
|
width: 33.3333%;
|
232
249
|
}
|
250
|
+
|
233
251
|
.ui.four.column.grid > .row > .column,
|
234
252
|
.ui.four.column.grid > .column,
|
235
253
|
.ui.grid > .four.column.row > .column {
|
236
254
|
width: 25%;
|
237
255
|
}
|
256
|
+
|
238
257
|
.ui.five.column.grid > .row > .column,
|
239
258
|
.ui.five.column.grid > .column,
|
240
259
|
.ui.grid > .five.column.row > .column {
|
241
260
|
width: 20%;
|
242
261
|
}
|
262
|
+
|
243
263
|
.ui.six.column.grid > .row > .column,
|
244
264
|
.ui.six.column.grid > .column,
|
245
265
|
.ui.grid > .six.column.row > .column {
|
246
266
|
width: 16.66667%;
|
247
267
|
}
|
268
|
+
|
248
269
|
.ui.seven.column.grid > .row > .column,
|
249
270
|
.ui.seven.column.grid > .column,
|
250
271
|
.ui.grid > .seven.column.row > .column {
|
251
272
|
width: 14.2857%;
|
252
273
|
}
|
274
|
+
|
253
275
|
.ui.eight.column.grid > .row > .column,
|
254
276
|
.ui.eight.column.grid > .column,
|
255
277
|
.ui.grid > .eight.column.row > .column {
|
256
278
|
width: 12.5%;
|
257
279
|
}
|
280
|
+
|
258
281
|
.ui.nine.column.grid > .row > .column,
|
259
282
|
.ui.nine.column.grid > .column,
|
260
283
|
.ui.grid > .nine.column.row > .column {
|
261
284
|
width: 11.1111%;
|
262
285
|
}
|
286
|
+
|
263
287
|
.ui.ten.column.grid > .row > .column,
|
264
288
|
.ui.ten.column.grid > .column,
|
265
289
|
.ui.grid > .ten.column.row > .column {
|
266
290
|
width: 10%;
|
267
291
|
}
|
292
|
+
|
268
293
|
.ui.eleven.column.grid > .row > .column,
|
269
294
|
.ui.eleven.column.grid > .column,
|
270
295
|
.ui.grid > .eleven.column.row > .column {
|
271
296
|
width: 9.0909%;
|
272
297
|
}
|
298
|
+
|
273
299
|
.ui.twelve.column.grid > .row > .column,
|
274
300
|
.ui.twelve.column.grid > .column,
|
275
301
|
.ui.grid > .twelve.column.row > .column {
|
276
302
|
width: 8.3333%;
|
277
303
|
}
|
304
|
+
|
278
305
|
.ui.thirteen.column.grid > .row > .column,
|
279
306
|
.ui.thirteen.column.grid > .column,
|
280
307
|
.ui.grid > .thirteen.column.row > .column {
|
281
308
|
width: 7.6923%;
|
282
309
|
}
|
310
|
+
|
283
311
|
.ui.fourteen.column.grid > .row > .column,
|
284
312
|
.ui.fourteen.column.grid > .column,
|
285
313
|
.ui.grid > .fourteen.column.row > .column {
|
286
314
|
width: 7.1428%;
|
287
315
|
}
|
316
|
+
|
288
317
|
.ui.fifteen.column.grid > .row > .column,
|
289
318
|
.ui.fifteen.column.grid > .column,
|
290
319
|
.ui.grid > .fifteen.column.row > .column {
|
291
320
|
width: 6.6666%;
|
292
321
|
}
|
322
|
+
|
293
323
|
.ui.sixteen.column.grid > .row > .column,
|
294
324
|
.ui.sixteen.column.grid > .column,
|
295
325
|
.ui.grid > .sixteen.column.row > .column {
|
@@ -297,12 +327,12 @@ body > .ui.grid {
|
|
297
327
|
}
|
298
328
|
|
299
329
|
/* Assume full width with one column */
|
330
|
+
|
300
331
|
.ui.grid > .column:only-child,
|
301
332
|
.ui.grid > .row > .column:only-child {
|
302
333
|
width: 100%;
|
303
334
|
}
|
304
335
|
|
305
|
-
|
306
336
|
/*----------------------
|
307
337
|
Relaxed
|
308
338
|
-----------------------*/
|
@@ -310,13 +340,13 @@ body > .ui.grid {
|
|
310
340
|
.ui.relaxed.grid {
|
311
341
|
margin: 0% -2.5%;
|
312
342
|
}
|
343
|
+
|
313
344
|
.ui.relaxed.grid > .column,
|
314
345
|
.ui.relaxed.grid > .row > .column {
|
315
346
|
padding-left: 2.5%;
|
316
347
|
padding-right: 2.5%;
|
317
348
|
}
|
318
349
|
|
319
|
-
|
320
350
|
/*----------------------
|
321
351
|
"Floated"
|
322
352
|
-----------------------*/
|
@@ -324,11 +354,11 @@ body > .ui.grid {
|
|
324
354
|
.ui.grid .left.floated.column {
|
325
355
|
float: left;
|
326
356
|
}
|
357
|
+
|
327
358
|
.ui.grid .right.floated.column {
|
328
359
|
float: right;
|
329
360
|
}
|
330
361
|
|
331
|
-
|
332
362
|
/*----------------------
|
333
363
|
Divided
|
334
364
|
-----------------------*/
|
@@ -340,56 +370,42 @@ body > .ui.grid {
|
|
340
370
|
margin-left: 0% !important;
|
341
371
|
margin-right: 0% !important;
|
342
372
|
}
|
373
|
+
|
343
374
|
.ui.divided.grid > .column:not(.row),
|
344
375
|
.ui.divided.grid > .row > .column {
|
345
376
|
display: table-cell;
|
346
|
-
-webkit-box-shadow:
|
347
|
-
-
|
348
|
-
|
349
|
-
|
350
|
-
-moz-box-shadow:
|
351
|
-
-1px 0px 0px 0px rgba(0, 0, 0, 0.1),
|
352
|
-
-2px 0px 0px 0px rgba(255, 255, 255, 0.8)
|
353
|
-
;
|
354
|
-
box-shadow:
|
355
|
-
-1px 0px 0px 0px rgba(0, 0, 0, 0.1),
|
356
|
-
-2px 0px 0px 0px rgba(255, 255, 255, 0.8)
|
357
|
-
;
|
377
|
+
-webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
|
378
|
+
-2px 0px 0px 0px rgba(255, 255, 255, 0.8);
|
379
|
+
box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
|
380
|
+
-2px 0px 0px 0px rgba(255, 255, 255, 0.8);
|
358
381
|
}
|
382
|
+
|
359
383
|
.ui.divided.grid > .column.row {
|
360
384
|
display: table;
|
361
385
|
}
|
386
|
+
|
362
387
|
.ui.divided.grid > .column:first-child,
|
363
388
|
.ui.divided.grid > .row > .column:first-child {
|
364
389
|
-webkit-box-shadow: none;
|
365
|
-
-moz-box-shadow: none;
|
366
390
|
box-shadow: none;
|
367
391
|
}
|
368
392
|
|
369
393
|
/* Vertically Divided */
|
394
|
+
|
370
395
|
.ui.vertically.divided.grid > .row {
|
371
|
-
-webkit-box-shadow:
|
372
|
-
0px -
|
373
|
-
|
374
|
-
|
375
|
-
-moz-box-shadow:
|
376
|
-
0px -1px 0px 0px rgba(0, 0, 0, 0.1),
|
377
|
-
0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important
|
378
|
-
;
|
379
|
-
box-shadow:
|
380
|
-
0px -1px 0px 0px rgba(0, 0, 0, 0.1),
|
381
|
-
0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important
|
382
|
-
;
|
396
|
+
-webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
|
397
|
+
0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
|
398
|
+
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1),
|
399
|
+
0px -2px 0px 0px rgba(255, 255, 255, 0.8) !important;
|
383
400
|
}
|
401
|
+
|
384
402
|
.ui.vertically.divided.grid > .row > .column,
|
385
403
|
.ui.vertically.divided.grid > .column:not(.row),
|
386
404
|
.ui.vertically.divided.grid > .row:first-child {
|
387
405
|
-webkit-box-shadow: none !important;
|
388
|
-
-moz-box-shadow: none !important;
|
389
406
|
box-shadow: none !important;
|
390
407
|
}
|
391
408
|
|
392
|
-
|
393
409
|
/*----------------------
|
394
410
|
Celled
|
395
411
|
-----------------------*/
|
@@ -400,9 +416,9 @@ body > .ui.grid {
|
|
400
416
|
margin-left: 0% !important;
|
401
417
|
margin-right: 0% !important;
|
402
418
|
-webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
|
403
|
-
-moz-box-shadow: 0px 0px 0px 1px #DFDFDF;
|
404
419
|
box-shadow: 0px 0px 0px 1px #DFDFDF;
|
405
420
|
}
|
421
|
+
|
406
422
|
.ui.celled.grid > .row,
|
407
423
|
.ui.celled.grid > .column.row,
|
408
424
|
.ui.celled.grid > .column.row:first-child {
|
@@ -411,27 +427,25 @@ body > .ui.grid {
|
|
411
427
|
margin-top: 0em;
|
412
428
|
padding-top: 0em;
|
413
429
|
-webkit-box-shadow: 0px -1px 0px 0px #DFDFDF;
|
414
|
-
-moz-box-shadow: 0px -1px 0px 0px #DFDFDF;
|
415
430
|
box-shadow: 0px -1px 0px 0px #DFDFDF;
|
416
431
|
}
|
432
|
+
|
417
433
|
.ui.celled.grid > .column:not(.row),
|
418
434
|
.ui.celled.grid > .row > .column {
|
419
435
|
display: table-cell;
|
420
436
|
padding: 0.75em;
|
421
437
|
-webkit-box-shadow: -1px 0px 0px 0px #DFDFDF;
|
422
|
-
-moz-box-shadow: -1px 0px 0px 0px #DFDFDF;
|
423
438
|
box-shadow: -1px 0px 0px 0px #DFDFDF;
|
424
439
|
}
|
440
|
+
|
425
441
|
.ui.celled.grid > .column:first-child,
|
426
442
|
.ui.celled.grid > .row > .column:first-child {
|
427
443
|
-webkit-box-shadow: none;
|
428
|
-
-moz-box-shadow: none;
|
429
444
|
box-shadow: none;
|
430
445
|
}
|
431
446
|
|
432
447
|
.ui.celled.page.grid {
|
433
448
|
-webkit-box-shadow: none;
|
434
|
-
-moz-box-shadow: none;
|
435
449
|
box-shadow: none;
|
436
450
|
}
|
437
451
|
|
@@ -440,6 +454,7 @@ body > .ui.grid {
|
|
440
454
|
-----------------------*/
|
441
455
|
|
442
456
|
/* Vertical Centered */
|
457
|
+
|
443
458
|
.ui.left.aligned.grid,
|
444
459
|
.ui.left.aligned.grid > .row > .column,
|
445
460
|
.ui.left.aligned.grid > .column,
|
@@ -447,6 +462,7 @@ body > .ui.grid {
|
|
447
462
|
.ui.grid > .left.aligned.row > .column {
|
448
463
|
text-align: left;
|
449
464
|
}
|
465
|
+
|
450
466
|
.ui.center.aligned.grid,
|
451
467
|
.ui.center.aligned.grid > .row > .column,
|
452
468
|
.ui.center.aligned.grid > .column,
|
@@ -454,6 +470,7 @@ body > .ui.grid {
|
|
454
470
|
.ui.grid > .center.aligned.row > .column {
|
455
471
|
text-align: center;
|
456
472
|
}
|
473
|
+
|
457
474
|
.ui.right.aligned.grid,
|
458
475
|
.ui.right.aligned.grid > .row > .column,
|
459
476
|
.ui.right.aligned.grid > .column,
|
@@ -462,12 +479,12 @@ body > .ui.grid {
|
|
462
479
|
text-align: right;
|
463
480
|
}
|
464
481
|
|
465
|
-
|
466
482
|
/*----------------------
|
467
483
|
Vertically Centered
|
468
484
|
-----------------------*/
|
469
485
|
|
470
486
|
/* Vertical Centered */
|
487
|
+
|
471
488
|
.ui.top.aligned.grid,
|
472
489
|
.ui.top.aligned.grid > .row > .column,
|
473
490
|
.ui.top.aligned.grid > .column,
|
@@ -475,6 +492,7 @@ body > .ui.grid {
|
|
475
492
|
.ui.grid > .top.aligned.row > .column {
|
476
493
|
vertical-align: top;
|
477
494
|
}
|
495
|
+
|
478
496
|
.ui.middle.aligned.grid,
|
479
497
|
.ui.middle.aligned.grid > .row > .column,
|
480
498
|
.ui.middle.aligned.grid > .column,
|
@@ -482,6 +500,7 @@ body > .ui.grid {
|
|
482
500
|
.ui.grid > .middle.aligned.row > .column {
|
483
501
|
vertical-align: middle;
|
484
502
|
}
|
503
|
+
|
485
504
|
.ui.bottom.aligned.grid,
|
486
505
|
.ui.bottom.aligned.grid > .row > .column,
|
487
506
|
.ui.bottom.aligned.grid > .column,
|
@@ -498,24 +517,27 @@ body > .ui.grid {
|
|
498
517
|
display: table;
|
499
518
|
width: 100%;
|
500
519
|
}
|
520
|
+
|
501
521
|
.ui.grid > .equal.height.row > .column {
|
502
522
|
display: table-cell;
|
503
523
|
}
|
504
524
|
|
505
|
-
|
506
525
|
/*----------------------
|
507
526
|
Only (Device)
|
508
527
|
-----------------------*/
|
509
528
|
|
510
529
|
/* Mobile Only */
|
530
|
+
|
511
531
|
@media only screen and (max-width : 768px) {
|
512
532
|
.ui.mobile.only.grid,
|
513
533
|
.ui.grid > .mobile.only.row {
|
514
534
|
display: block !important;
|
515
535
|
}
|
536
|
+
|
516
537
|
.ui.grid > .row > .mobile.only.column {
|
517
538
|
display: inline-block !important;
|
518
539
|
}
|
540
|
+
|
519
541
|
.ui.divided.mobile.only.grid,
|
520
542
|
.ui.celled.mobile.only.grid,
|
521
543
|
.ui.divided.mobile.only.grid .row,
|
@@ -523,9 +545,10 @@ body > .ui.grid {
|
|
523
545
|
.ui.divided.grid .mobile.only.row,
|
524
546
|
.ui.celled.grid .mobile.only.row,
|
525
547
|
.ui.grid .mobile.only.equal.height.row,
|
526
|
-
.ui.mobile.only.grid .equal.height.row
|
548
|
+
.ui.mobile.only.grid .equal.height.row {
|
527
549
|
display: table !important;
|
528
550
|
}
|
551
|
+
|
529
552
|
.ui.divided.grid > .row > .mobile.only.column,
|
530
553
|
.ui.celled.grid > .row > .mobile.only.column,
|
531
554
|
.ui.divided.mobile.only.grid > .row > .column,
|
@@ -535,6 +558,7 @@ body > .ui.grid {
|
|
535
558
|
display: table-cell !important;
|
536
559
|
}
|
537
560
|
}
|
561
|
+
|
538
562
|
@media only screen and (min-width : 768px) {
|
539
563
|
.ui.mobile.only.grid,
|
540
564
|
.ui.grid > .mobile.only.row,
|
@@ -542,15 +566,19 @@ body > .ui.grid {
|
|
542
566
|
display: none;
|
543
567
|
}
|
544
568
|
}
|
569
|
+
|
545
570
|
/* Tablet Only */
|
571
|
+
|
546
572
|
@media only screen and (min-width : 768px) and (max-width : 998px) {
|
547
573
|
.ui.tablet.only.grid,
|
548
574
|
.ui.grid > .tablet.only.row {
|
549
575
|
display: block !important;
|
550
576
|
}
|
577
|
+
|
551
578
|
.ui.grid > .row > .tablet.only.column {
|
552
579
|
display: inline-block !important;
|
553
580
|
}
|
581
|
+
|
554
582
|
.ui.divided.tablet.only.grid,
|
555
583
|
.ui.celled.tablet.only.grid,
|
556
584
|
.ui.divided.tablet.only.grid .row,
|
@@ -558,9 +586,10 @@ body > .ui.grid {
|
|
558
586
|
.ui.divided.grid .tablet.only.row,
|
559
587
|
.ui.celled.grid .tablet.only.row,
|
560
588
|
.ui.grid .tablet.only.equal.height.row,
|
561
|
-
.ui.tablet.only.grid .equal.height.row
|
589
|
+
.ui.tablet.only.grid .equal.height.row {
|
562
590
|
display: table !important;
|
563
591
|
}
|
592
|
+
|
564
593
|
.ui.divided.grid > .row > .tablet.only.column,
|
565
594
|
.ui.celled.grid > .row > .tablet.only.column,
|
566
595
|
.ui.divided.tablet.only.grid > .row > .column,
|
@@ -570,6 +599,7 @@ body > .ui.grid {
|
|
570
599
|
display: table-cell !important;
|
571
600
|
}
|
572
601
|
}
|
602
|
+
|
573
603
|
@media only screen and (max-width : 768px), (min-width: 998px) {
|
574
604
|
.ui.tablet.only.grid,
|
575
605
|
.ui.grid > .tablet.only.row,
|
@@ -577,15 +607,19 @@ body > .ui.grid {
|
|
577
607
|
display: none;
|
578
608
|
}
|
579
609
|
}
|
610
|
+
|
580
611
|
/* Computer Only */
|
612
|
+
|
581
613
|
@media only screen and (min-width : 998px) {
|
582
614
|
.ui.computer.only.grid,
|
583
615
|
.ui.grid > .computer.only.row {
|
584
616
|
display: block !important;
|
585
617
|
}
|
618
|
+
|
586
619
|
.ui.grid > .row > .computer.only.column {
|
587
620
|
display: inline-block !important;
|
588
621
|
}
|
622
|
+
|
589
623
|
.ui.divided.computer.only.grid,
|
590
624
|
.ui.celled.computer.only.grid,
|
591
625
|
.ui.divided.computer.only.grid .row,
|
@@ -593,9 +627,10 @@ body > .ui.grid {
|
|
593
627
|
.ui.divided.grid .computer.only.row,
|
594
628
|
.ui.celled.grid .computer.only.row,
|
595
629
|
.ui.grid .computer.only.equal.height.row,
|
596
|
-
.ui.computer.only.grid .equal.height.row
|
630
|
+
.ui.computer.only.grid .equal.height.row {
|
597
631
|
display: table !important;
|
598
632
|
}
|
633
|
+
|
599
634
|
.ui.divided.grid > .row > .computer.only.column,
|
600
635
|
.ui.celled.grid > .row > .computer.only.column,
|
601
636
|
.ui.divided.computer.only.grid > .row > .column,
|
@@ -605,6 +640,7 @@ body > .ui.grid {
|
|
605
640
|
display: table-cell !important;
|
606
641
|
}
|
607
642
|
}
|
643
|
+
|
608
644
|
@media only screen and (max-width : 998px) {
|
609
645
|
.ui.computer.only.grid,
|
610
646
|
.ui.grid > .computer.only.row,
|
@@ -613,7 +649,6 @@ body > .ui.grid {
|
|
613
649
|
}
|
614
650
|
}
|
615
651
|
|
616
|
-
|
617
652
|
/*-------------------
|
618
653
|
Stackable
|
619
654
|
--------------------*/
|
@@ -623,27 +658,28 @@ body > .ui.grid {
|
|
623
658
|
display: block !important;
|
624
659
|
padding: 0em;
|
625
660
|
}
|
661
|
+
|
626
662
|
.ui.stackable.grid > .row > .column,
|
627
663
|
.ui.stackable.grid > .column {
|
628
664
|
display: block !important;
|
629
665
|
width: auto !important;
|
630
|
-
|
631
666
|
margin: 1.5em 5% 0em !important;
|
632
667
|
padding: 1.5em 0em 0em !important;
|
633
|
-
|
634
668
|
-webkit-box-shadow: none !important;
|
635
|
-
-moz-box-shadow: none !important;
|
636
669
|
box-shadow: none !important;
|
637
670
|
}
|
671
|
+
|
638
672
|
.ui.stackable.divided.grid .column,
|
639
673
|
.ui.stackable.celled.grid .column {
|
640
674
|
border-top: 1px dotted rgba(0, 0, 0, 0.1);
|
641
675
|
}
|
676
|
+
|
642
677
|
.ui.stackable.grid > .row:first-child > .column:first-child,
|
643
678
|
.ui.stackable.grid > .column:first-child {
|
644
679
|
margin-top: 0em !important;
|
645
680
|
padding-top: 0em !important;
|
646
681
|
}
|
682
|
+
|
647
683
|
.ui.stackable.divided.grid > .row:first-child > .column:first-child,
|
648
684
|
.ui.stackable.celled.grid > .row:first-child > .column:first-child,
|
649
685
|
.ui.stackable.divided.grid > .column:first-child,
|
@@ -652,8 +688,8 @@ body > .ui.grid {
|
|
652
688
|
}
|
653
689
|
|
654
690
|
/* Remove pointers from vertical menus */
|
691
|
+
|
655
692
|
.ui.stackable.grid .vertical.pointing.menu .item:after {
|
656
693
|
display: none;
|
657
694
|
}
|
658
|
-
|
659
695
|
}
|