semantic-ui-sass 2.1.6.0 → 2.1.8.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 +4 -0
- data/README.md +2 -0
- data/app/assets/javascripts/semantic-ui/api.js +22 -16
- data/app/assets/javascripts/semantic-ui/checkbox.js +4 -4
- data/app/assets/javascripts/semantic-ui/popup.js +7 -3
- data/app/assets/javascripts/semantic-ui/search.js +36 -11
- data/app/assets/javascripts/semantic-ui/transition.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +42 -47
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +32 -32
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +75 -74
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +51 -51
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +61 -61
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +284 -284
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +10 -2
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +41 -41
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +55 -55
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +13 -13
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +115 -115
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +47 -47
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +19 -19
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +20 -20
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +14 -14
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +45 -45
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +47 -14
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +16 -18
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +5 -5
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +26 -26
- data/app/helpers/semantic_icon_helper.rb +2 -2
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/spec/helpers/semantic_icon_helper_spec.rb +16 -0
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.1.
|
2
|
+
* # Semantic UI 2.1.7 - Message
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -18,7 +18,7 @@
|
|
18
18
|
position: relative;
|
19
19
|
min-height: 1em;
|
20
20
|
margin: 1em 0em;
|
21
|
-
background: #
|
21
|
+
background: #f8f8f9;
|
22
22
|
padding: 1em 1.5em;
|
23
23
|
line-height: 1.4285em;
|
24
24
|
color: rgba(0, 0, 0, 0.87);
|
@@ -259,7 +259,7 @@
|
|
259
259
|
---------------*/
|
260
260
|
|
261
261
|
.ui.black.message {
|
262
|
-
background-color: #
|
262
|
+
background-color: #1b1c1d;
|
263
263
|
color: rgba(255, 255, 255, 0.9);
|
264
264
|
}
|
265
265
|
|
@@ -270,161 +270,161 @@
|
|
270
270
|
|
271
271
|
/* Positive */
|
272
272
|
.ui.positive.message {
|
273
|
-
background-color: #
|
274
|
-
color: #
|
273
|
+
background-color: #fcfff5;
|
274
|
+
color: #2c662d;
|
275
275
|
}
|
276
276
|
.ui.positive.message,
|
277
277
|
.ui.attached.positive.message {
|
278
|
-
box-shadow: 0px 0px 0px 1px #
|
278
|
+
box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
279
279
|
}
|
280
280
|
.ui.positive.message .header {
|
281
|
-
color: #
|
281
|
+
color: #1a531b;
|
282
282
|
}
|
283
283
|
|
284
284
|
/* Negative */
|
285
285
|
.ui.negative.message {
|
286
|
-
background-color: #
|
287
|
-
color: #
|
286
|
+
background-color: #fff6f6;
|
287
|
+
color: #9f3a38;
|
288
288
|
}
|
289
289
|
.ui.negative.message,
|
290
290
|
.ui.attached.negative.message {
|
291
|
-
box-shadow: 0px 0px 0px 1px #
|
291
|
+
box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
292
292
|
}
|
293
293
|
.ui.negative.message .header {
|
294
|
-
color: #
|
294
|
+
color: #912d2b;
|
295
295
|
}
|
296
296
|
|
297
297
|
/* Info */
|
298
298
|
.ui.info.message {
|
299
|
-
background-color: #
|
300
|
-
color: #
|
299
|
+
background-color: #f8ffff;
|
300
|
+
color: #276f86;
|
301
301
|
}
|
302
302
|
.ui.info.message,
|
303
303
|
.ui.attached.info.message {
|
304
|
-
box-shadow: 0px 0px 0px 1px #
|
304
|
+
box-shadow: 0px 0px 0px 1px #a9d5de inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
305
305
|
}
|
306
306
|
.ui.info.message .header {
|
307
|
-
color: #
|
307
|
+
color: #0e566c;
|
308
308
|
}
|
309
309
|
|
310
310
|
/* Warning */
|
311
311
|
.ui.warning.message {
|
312
|
-
background-color: #
|
313
|
-
color: #
|
312
|
+
background-color: #fffaf3;
|
313
|
+
color: #573a08;
|
314
314
|
}
|
315
315
|
.ui.warning.message,
|
316
316
|
.ui.attached.warning.message {
|
317
|
-
box-shadow: 0px 0px 0px 1px #
|
317
|
+
box-shadow: 0px 0px 0px 1px #c9ba9b inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
318
318
|
}
|
319
319
|
.ui.warning.message .header {
|
320
|
-
color: #
|
320
|
+
color: #794b02;
|
321
321
|
}
|
322
322
|
|
323
323
|
/* Error */
|
324
324
|
.ui.error.message {
|
325
|
-
background-color: #
|
326
|
-
color: #
|
325
|
+
background-color: #fff6f6;
|
326
|
+
color: #9f3a38;
|
327
327
|
}
|
328
328
|
.ui.error.message,
|
329
329
|
.ui.attached.error.message {
|
330
|
-
box-shadow: 0px 0px 0px 1px #
|
330
|
+
box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
331
331
|
}
|
332
332
|
.ui.error.message .header {
|
333
|
-
color: #
|
333
|
+
color: #912d2b;
|
334
334
|
}
|
335
335
|
|
336
336
|
/* Success */
|
337
337
|
.ui.success.message {
|
338
|
-
background-color: #
|
339
|
-
color: #
|
338
|
+
background-color: #fcfff5;
|
339
|
+
color: #2c662d;
|
340
340
|
}
|
341
341
|
.ui.success.message,
|
342
342
|
.ui.attached.success.message {
|
343
|
-
box-shadow: 0px 0px 0px 1px #
|
343
|
+
box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
|
344
344
|
}
|
345
345
|
.ui.success.message .header {
|
346
|
-
color: #
|
346
|
+
color: #1a531b;
|
347
347
|
}
|
348
348
|
|
349
349
|
/* Colors */
|
350
350
|
.ui.inverted.message,
|
351
351
|
.ui.black.message {
|
352
|
-
background-color: #
|
352
|
+
background-color: #1b1c1d;
|
353
353
|
color: rgba(255, 255, 255, 0.9);
|
354
354
|
}
|
355
355
|
.ui.red.message {
|
356
|
-
background-color: #
|
357
|
-
color: #
|
356
|
+
background-color: #ffe8e6;
|
357
|
+
color: #db2828;
|
358
358
|
}
|
359
359
|
.ui.red.message .header {
|
360
360
|
color: #c82121;
|
361
361
|
}
|
362
362
|
.ui.orange.message {
|
363
|
-
background-color: #
|
364
|
-
color: #
|
363
|
+
background-color: #ffedde;
|
364
|
+
color: #f2711c;
|
365
365
|
}
|
366
366
|
.ui.orange.message .header {
|
367
367
|
color: #e7640d;
|
368
368
|
}
|
369
369
|
.ui.yellow.message {
|
370
|
-
background-color: #
|
371
|
-
color: #
|
370
|
+
background-color: #fff8db;
|
371
|
+
color: #b58105;
|
372
372
|
}
|
373
373
|
.ui.yellow.message .header {
|
374
374
|
color: #9c6f04;
|
375
375
|
}
|
376
376
|
.ui.olive.message {
|
377
|
-
background-color: #
|
378
|
-
color: #
|
377
|
+
background-color: #fbfdef;
|
378
|
+
color: #8abc1e;
|
379
379
|
}
|
380
380
|
.ui.olive.message .header {
|
381
381
|
color: #7aa61a;
|
382
382
|
}
|
383
383
|
.ui.green.message {
|
384
|
-
background-color: #
|
385
|
-
color: #
|
384
|
+
background-color: #e5f9e7;
|
385
|
+
color: #1ebc30;
|
386
386
|
}
|
387
387
|
.ui.green.message .header {
|
388
388
|
color: #1aa62a;
|
389
389
|
}
|
390
390
|
.ui.teal.message {
|
391
|
-
background-color: #
|
392
|
-
color: #
|
391
|
+
background-color: #e1f7f7;
|
392
|
+
color: #10a3a3;
|
393
393
|
}
|
394
394
|
.ui.teal.message .header {
|
395
395
|
color: #0e8c8c;
|
396
396
|
}
|
397
397
|
.ui.blue.message {
|
398
|
-
background-color: #
|
399
|
-
color: #
|
398
|
+
background-color: #dff0ff;
|
399
|
+
color: #2185d0;
|
400
400
|
}
|
401
401
|
.ui.blue.message .header {
|
402
402
|
color: #1e77ba;
|
403
403
|
}
|
404
404
|
.ui.violet.message {
|
405
|
-
background-color: #
|
406
|
-
color: #
|
405
|
+
background-color: #eae7ff;
|
406
|
+
color: #6435c9;
|
407
407
|
}
|
408
408
|
.ui.violet.message .header {
|
409
409
|
color: #5a30b5;
|
410
410
|
}
|
411
411
|
.ui.purple.message {
|
412
|
-
background-color: #
|
413
|
-
color: #
|
412
|
+
background-color: #f6e7ff;
|
413
|
+
color: #a333c8;
|
414
414
|
}
|
415
415
|
.ui.purple.message .header {
|
416
416
|
color: #922eb4;
|
417
417
|
}
|
418
418
|
.ui.pink.message {
|
419
|
-
background-color: #
|
420
|
-
color: #
|
419
|
+
background-color: #ffe3fb;
|
420
|
+
color: #e03997;
|
421
421
|
}
|
422
422
|
.ui.pink.message .header {
|
423
423
|
color: #dd238b;
|
424
424
|
}
|
425
425
|
.ui.brown.message {
|
426
|
-
background-color: #
|
427
|
-
color: #
|
426
|
+
background-color: #f1e2d3;
|
427
|
+
color: #a5673f;
|
428
428
|
}
|
429
429
|
.ui.brown.message .header {
|
430
430
|
color: #935b38;
|
@@ -458,6 +458,6 @@
|
|
458
458
|
|
459
459
|
|
460
460
|
/*******************************
|
461
|
-
|
461
|
+
Site Overrides
|
462
462
|
*******************************/
|
463
463
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.1.
|
2
|
+
* # Semantic UI 2.1.7 - Table
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -18,7 +18,7 @@
|
|
18
18
|
/* Prototype */
|
19
19
|
.ui.table {
|
20
20
|
width: 100%;
|
21
|
-
background: #
|
21
|
+
background: #ffffff;
|
22
22
|
margin: 1em 0em;
|
23
23
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
24
24
|
box-shadow: none;
|
@@ -54,7 +54,7 @@
|
|
54
54
|
}
|
55
55
|
.ui.table thead th {
|
56
56
|
cursor: auto;
|
57
|
-
background: #
|
57
|
+
background: #f9fafb;
|
58
58
|
text-align: inherit;
|
59
59
|
color: rgba(0, 0, 0, 0.87);
|
60
60
|
padding: 0.92857143em 0.71428571em;
|
@@ -85,7 +85,7 @@
|
|
85
85
|
.ui.table tfoot th {
|
86
86
|
cursor: auto;
|
87
87
|
border-top: 1px solid rgba(34, 36, 38, 0.15);
|
88
|
-
background: #
|
88
|
+
background: #f9fafb;
|
89
89
|
text-align: inherit;
|
90
90
|
color: rgba(0, 0, 0, 0.87);
|
91
91
|
padding: 0.71428571em 0.71428571em;
|
@@ -238,22 +238,22 @@
|
|
238
238
|
background: transparent;
|
239
239
|
font-weight: normal;
|
240
240
|
color: rgba(0, 0, 0, 0.4);
|
241
|
-
box-shadow: -1px -1px 0px 1px #
|
241
|
+
box-shadow: -1px -1px 0px 1px #ffffff;
|
242
242
|
}
|
243
243
|
.ui.definition.table tfoot:not(.full-width) th:first-child {
|
244
244
|
pointer-events: none;
|
245
245
|
background: transparent;
|
246
246
|
font-weight: rgba(0, 0, 0, 0.4);
|
247
247
|
color: normal;
|
248
|
-
box-shadow: 1px 1px 0px 1px #
|
248
|
+
box-shadow: 1px 1px 0px 1px #ffffff;
|
249
249
|
}
|
250
250
|
|
251
251
|
/* Remove Border */
|
252
252
|
.ui.celled.definition.table thead:not(.full-width) th:first-child {
|
253
|
-
box-shadow: 0px -1px 0px 1px #
|
253
|
+
box-shadow: 0px -1px 0px 1px #ffffff;
|
254
254
|
}
|
255
255
|
.ui.celled.definition.table tfoot:not(.full-width) th:first-child {
|
256
|
-
box-shadow: 0px 1px 0px 1px #
|
256
|
+
box-shadow: 0px 1px 0px 1px #ffffff;
|
257
257
|
}
|
258
258
|
|
259
259
|
/* Highlight Defining Column */
|
@@ -286,12 +286,12 @@
|
|
286
286
|
|
287
287
|
.ui.table tr.positive,
|
288
288
|
.ui.table td.positive {
|
289
|
-
box-shadow: 0px 0px 0px #
|
289
|
+
box-shadow: 0px 0px 0px #a3c293 inset;
|
290
290
|
}
|
291
291
|
.ui.table tr.positive,
|
292
292
|
.ui.table td.positive {
|
293
|
-
background: #
|
294
|
-
color: #
|
293
|
+
background: #fcfff5 !important;
|
294
|
+
color: #2c662d !important;
|
295
295
|
}
|
296
296
|
|
297
297
|
/*--------------
|
@@ -300,12 +300,12 @@
|
|
300
300
|
|
301
301
|
.ui.table tr.negative,
|
302
302
|
.ui.table td.negative {
|
303
|
-
box-shadow: 0px 0px 0px #
|
303
|
+
box-shadow: 0px 0px 0px #e0b4b4 inset;
|
304
304
|
}
|
305
305
|
.ui.table tr.negative,
|
306
306
|
.ui.table td.negative {
|
307
|
-
background: #
|
308
|
-
color: #
|
307
|
+
background: #fff6f6 !important;
|
308
|
+
color: #9f3a38 !important;
|
309
309
|
}
|
310
310
|
|
311
311
|
/*--------------
|
@@ -314,12 +314,12 @@
|
|
314
314
|
|
315
315
|
.ui.table tr.error,
|
316
316
|
.ui.table td.error {
|
317
|
-
box-shadow: 0px 0px 0px #
|
317
|
+
box-shadow: 0px 0px 0px #e0b4b4 inset;
|
318
318
|
}
|
319
319
|
.ui.table tr.error,
|
320
320
|
.ui.table td.error {
|
321
|
-
background: #
|
322
|
-
color: #
|
321
|
+
background: #fff6f6 !important;
|
322
|
+
color: #9f3a38 !important;
|
323
323
|
}
|
324
324
|
|
325
325
|
/*--------------
|
@@ -328,12 +328,12 @@
|
|
328
328
|
|
329
329
|
.ui.table tr.warning,
|
330
330
|
.ui.table td.warning {
|
331
|
-
box-shadow: 0px 0px 0px #
|
331
|
+
box-shadow: 0px 0px 0px #c9ba9b inset;
|
332
332
|
}
|
333
333
|
.ui.table tr.warning,
|
334
334
|
.ui.table td.warning {
|
335
|
-
background: #
|
336
|
-
color: #
|
335
|
+
background: #fffaf3 !important;
|
336
|
+
color: #573a08 !important;
|
337
337
|
}
|
338
338
|
|
339
339
|
/*--------------
|
@@ -346,7 +346,7 @@
|
|
346
346
|
}
|
347
347
|
.ui.table tr.active,
|
348
348
|
.ui.table td.active {
|
349
|
-
background: #
|
349
|
+
background: #e0e0e0 !important;
|
350
350
|
color: rgba(0, 0, 0, 0.87) !important;
|
351
351
|
}
|
352
352
|
|
@@ -507,7 +507,7 @@
|
|
507
507
|
.ui.selectable.table tr.active:hover,
|
508
508
|
.ui.table tr td.selectable.active:hover,
|
509
509
|
.ui.selectable.table tr:hover td.active {
|
510
|
-
background: #
|
510
|
+
background: #e0e0e0 !important;
|
511
511
|
color: rgba(0, 0, 0, 0.87) !important;
|
512
512
|
}
|
513
513
|
.ui.selectable.table tr.positive:hover,
|
@@ -537,7 +537,7 @@
|
|
537
537
|
width: calc(100% + 2px );
|
538
538
|
max-width: calc(100% + 2px );
|
539
539
|
box-shadow: none;
|
540
|
-
border: 1px solid #
|
540
|
+
border: 1px solid #d4d4d5;
|
541
541
|
}
|
542
542
|
.ui.attached + .ui.attached.table:not(.top) {
|
543
543
|
border-top: none;
|
@@ -605,101 +605,101 @@
|
|
605
605
|
|
606
606
|
/* Red */
|
607
607
|
.ui.red.table {
|
608
|
-
border-top: 0.2em solid #
|
608
|
+
border-top: 0.2em solid #db2828;
|
609
609
|
}
|
610
610
|
.ui.inverted.red.table {
|
611
|
-
background-color: #
|
612
|
-
color: #
|
611
|
+
background-color: #db2828 !important;
|
612
|
+
color: #ffffff !important;
|
613
613
|
}
|
614
614
|
|
615
615
|
/* Orange */
|
616
616
|
.ui.orange.table {
|
617
|
-
border-top: 0.2em solid #
|
617
|
+
border-top: 0.2em solid #f2711c;
|
618
618
|
}
|
619
619
|
.ui.inverted.orange.table {
|
620
|
-
background-color: #
|
621
|
-
color: #
|
620
|
+
background-color: #f2711c !important;
|
621
|
+
color: #ffffff !important;
|
622
622
|
}
|
623
623
|
|
624
624
|
/* Yellow */
|
625
625
|
.ui.yellow.table {
|
626
|
-
border-top: 0.2em solid #
|
626
|
+
border-top: 0.2em solid #fbbd08;
|
627
627
|
}
|
628
628
|
.ui.inverted.yellow.table {
|
629
|
-
background-color: #
|
630
|
-
color: #
|
629
|
+
background-color: #fbbd08 !important;
|
630
|
+
color: #ffffff !important;
|
631
631
|
}
|
632
632
|
|
633
633
|
/* Olive */
|
634
634
|
.ui.olive.table {
|
635
|
-
border-top: 0.2em solid #
|
635
|
+
border-top: 0.2em solid #b5cc18;
|
636
636
|
}
|
637
637
|
.ui.inverted.olive.table {
|
638
|
-
background-color: #
|
639
|
-
color: #
|
638
|
+
background-color: #b5cc18 !important;
|
639
|
+
color: #ffffff !important;
|
640
640
|
}
|
641
641
|
|
642
642
|
/* Green */
|
643
643
|
.ui.green.table {
|
644
|
-
border-top: 0.2em solid #
|
644
|
+
border-top: 0.2em solid #21ba45;
|
645
645
|
}
|
646
646
|
.ui.inverted.green.table {
|
647
|
-
background-color: #
|
648
|
-
color: #
|
647
|
+
background-color: #21ba45 !important;
|
648
|
+
color: #ffffff !important;
|
649
649
|
}
|
650
650
|
|
651
651
|
/* Teal */
|
652
652
|
.ui.teal.table {
|
653
|
-
border-top: 0.2em solid #
|
653
|
+
border-top: 0.2em solid #00b5ad;
|
654
654
|
}
|
655
655
|
.ui.inverted.teal.table {
|
656
|
-
background-color: #
|
657
|
-
color: #
|
656
|
+
background-color: #00b5ad !important;
|
657
|
+
color: #ffffff !important;
|
658
658
|
}
|
659
659
|
|
660
660
|
/* Blue */
|
661
661
|
.ui.blue.table {
|
662
|
-
border-top: 0.2em solid #
|
662
|
+
border-top: 0.2em solid #2185d0;
|
663
663
|
}
|
664
664
|
.ui.inverted.blue.table {
|
665
|
-
background-color: #
|
666
|
-
color: #
|
665
|
+
background-color: #2185d0 !important;
|
666
|
+
color: #ffffff !important;
|
667
667
|
}
|
668
668
|
|
669
669
|
/* Violet */
|
670
670
|
.ui.violet.table {
|
671
|
-
border-top: 0.2em solid #
|
671
|
+
border-top: 0.2em solid #6435c9;
|
672
672
|
}
|
673
673
|
.ui.inverted.violet.table {
|
674
|
-
background-color: #
|
675
|
-
color: #
|
674
|
+
background-color: #6435c9 !important;
|
675
|
+
color: #ffffff !important;
|
676
676
|
}
|
677
677
|
|
678
678
|
/* Purple */
|
679
679
|
.ui.purple.table {
|
680
|
-
border-top: 0.2em solid #
|
680
|
+
border-top: 0.2em solid #a333c8;
|
681
681
|
}
|
682
682
|
.ui.inverted.purple.table {
|
683
|
-
background-color: #
|
684
|
-
color: #
|
683
|
+
background-color: #a333c8 !important;
|
684
|
+
color: #ffffff !important;
|
685
685
|
}
|
686
686
|
|
687
687
|
/* Pink */
|
688
688
|
.ui.pink.table {
|
689
|
-
border-top: 0.2em solid #
|
689
|
+
border-top: 0.2em solid #e03997;
|
690
690
|
}
|
691
691
|
.ui.inverted.pink.table {
|
692
|
-
background-color: #
|
693
|
-
color: #
|
692
|
+
background-color: #e03997 !important;
|
693
|
+
color: #ffffff !important;
|
694
694
|
}
|
695
695
|
|
696
696
|
/* Brown */
|
697
697
|
.ui.brown.table {
|
698
|
-
border-top: 0.2em solid #
|
698
|
+
border-top: 0.2em solid #a5673f;
|
699
699
|
}
|
700
700
|
.ui.inverted.brown.table {
|
701
|
-
background-color: #
|
702
|
-
color: #
|
701
|
+
background-color: #a5673f !important;
|
702
|
+
color: #ffffff !important;
|
703
703
|
}
|
704
704
|
|
705
705
|
/* Grey */
|
@@ -708,16 +708,16 @@
|
|
708
708
|
}
|
709
709
|
.ui.inverted.grey.table {
|
710
710
|
background-color: #767676 !important;
|
711
|
-
color: #
|
711
|
+
color: #ffffff !important;
|
712
712
|
}
|
713
713
|
|
714
714
|
/* Black */
|
715
715
|
.ui.black.table {
|
716
|
-
border-top: 0.2em solid #
|
716
|
+
border-top: 0.2em solid #1b1c1d;
|
717
717
|
}
|
718
718
|
.ui.inverted.black.table {
|
719
|
-
background-color: #
|
720
|
-
color: #
|
719
|
+
background-color: #1b1c1d !important;
|
720
|
+
color: #ffffff !important;
|
721
721
|
}
|
722
722
|
|
723
723
|
/*--------------
|
@@ -951,7 +951,7 @@
|
|
951
951
|
/* Definition */
|
952
952
|
.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
|
953
953
|
.ui.inverted.definition.table thead:not(.full-width) th:first-child {
|
954
|
-
background: #
|
954
|
+
background: #ffffff;
|
955
955
|
}
|
956
956
|
.ui.inverted.definition.table tr td:first-child {
|
957
957
|
background: rgba(255, 255, 255, 0.02);
|