semantic-ui-sass 2.0.7.0 → 2.1.3.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/app/assets/javascripts/semantic-ui/accordion.js +17 -13
- data/app/assets/javascripts/semantic-ui/api.js +25 -7
- data/app/assets/javascripts/semantic-ui/checkbox.js +124 -48
- data/app/assets/javascripts/semantic-ui/dropdown.js +193 -108
- data/app/assets/javascripts/semantic-ui/embed.js +1 -4
- data/app/assets/javascripts/semantic-ui/form.js +125 -12
- data/app/assets/javascripts/semantic-ui/modal.js +13 -13
- data/app/assets/javascripts/semantic-ui/nag.js +11 -1
- data/app/assets/javascripts/semantic-ui/popup.js +23 -10
- data/app/assets/javascripts/semantic-ui/search.js +83 -54
- data/app/assets/javascripts/semantic-ui/sticky.js +34 -32
- data/app/assets/javascripts/semantic-ui/tab.js +8 -7
- data/app/assets/javascripts/semantic-ui/transition.js +5 -5
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +102 -31
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +159 -10
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +151 -60
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +18 -1
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +187 -97
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +29 -5
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +6 -3
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +23 -38
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +69 -39
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +423 -222
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +16 -1
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +5 -13
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +9 -6
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +7 -7
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +26 -9
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
- 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 +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +7 -7
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +1 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.1.3 - Table
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -453,6 +453,19 @@
|
|
453
453
|
white-space: nowrap;
|
454
454
|
}
|
455
455
|
|
456
|
+
/*--------------
|
457
|
+
Fixed
|
458
|
+
---------------*/
|
459
|
+
|
460
|
+
.ui.fixed.table {
|
461
|
+
table-layout: fixed;
|
462
|
+
}
|
463
|
+
.ui.fixed.table th,
|
464
|
+
.ui.fixed.table td {
|
465
|
+
overflow: hidden;
|
466
|
+
text-overflow: ellipsis;
|
467
|
+
}
|
468
|
+
|
456
469
|
/*--------------
|
457
470
|
Hoverable
|
458
471
|
---------------*/
|
@@ -559,6 +572,10 @@
|
|
559
572
|
Single Line
|
560
573
|
---------------*/
|
561
574
|
|
575
|
+
.ui.table[class*="single line"],
|
576
|
+
.ui.table [class*="single line"] {
|
577
|
+
white-space: nowrap;
|
578
|
+
}
|
562
579
|
.ui.table[class*="single line"],
|
563
580
|
.ui.table [class*="single line"] {
|
564
581
|
white-space: nowrap;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.1.3 - Button
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -361,17 +361,92 @@
|
|
361
361
|
}
|
362
362
|
|
363
363
|
/* States */
|
364
|
+
|
365
|
+
/* Hover */
|
364
366
|
.ui.inverted.button:hover {
|
365
367
|
background: #ffffff;
|
366
368
|
box-shadow: 0px 0px 0px 2px #ffffff inset !important;
|
367
369
|
color: rgba(0, 0, 0, 0.8);
|
368
370
|
}
|
369
|
-
|
371
|
+
|
372
|
+
/* Active / Focus */
|
373
|
+
.ui.inverted.button:focus,
|
374
|
+
.ui.inverted.button.active {
|
370
375
|
background: #ffffff;
|
371
376
|
box-shadow: 0px 0px 0px 2px #ffffff inset !important;
|
372
377
|
color: rgba(0, 0, 0, 0.8);
|
373
378
|
}
|
374
379
|
|
380
|
+
/* Active Focus */
|
381
|
+
.ui.inverted.button.active:focus {
|
382
|
+
background: #dcddde;
|
383
|
+
box-shadow: 0px 0px 0px 2px #dcddde inset !important;
|
384
|
+
color: rgba(0, 0, 0, 0.8);
|
385
|
+
}
|
386
|
+
|
387
|
+
/*-------------------
|
388
|
+
Labeled Button
|
389
|
+
--------------------*/
|
390
|
+
|
391
|
+
.ui.labeled.button:not(.icon) {
|
392
|
+
display: -webkit-inline-box;
|
393
|
+
display: -webkit-inline-flex;
|
394
|
+
display: -ms-inline-flexbox;
|
395
|
+
display: inline-flex;
|
396
|
+
-webkit-box-orient: horizontal;
|
397
|
+
-webkit-box-direction: normal;
|
398
|
+
-webkit-flex-direction: row;
|
399
|
+
-ms-flex-direction: row;
|
400
|
+
flex-direction: row;
|
401
|
+
background: none !important;
|
402
|
+
padding: 0px !important;
|
403
|
+
border: none !important;
|
404
|
+
box-shadow: none !important;
|
405
|
+
}
|
406
|
+
.ui.labeled.button > .button {
|
407
|
+
margin: 0px;
|
408
|
+
}
|
409
|
+
.ui.labeled.button > .label {
|
410
|
+
display: -webkit-box;
|
411
|
+
display: -webkit-flex;
|
412
|
+
display: -ms-flexbox;
|
413
|
+
display: flex;
|
414
|
+
-webkit-box-align: center;
|
415
|
+
-webkit-align-items: center;
|
416
|
+
-ms-flex-align: center;
|
417
|
+
align-items: center;
|
418
|
+
margin: 0px 0px 0px -1px !important;
|
419
|
+
padding: '';
|
420
|
+
font-size: 1em;
|
421
|
+
border-color: rgba(34, 36, 38, 0.15);
|
422
|
+
}
|
423
|
+
|
424
|
+
/* Tag */
|
425
|
+
.ui.labeled.button > .tag.label:before {
|
426
|
+
width: 1.85em;
|
427
|
+
height: 1.85em;
|
428
|
+
}
|
429
|
+
|
430
|
+
/* Right */
|
431
|
+
.ui.labeled.button:not([class*="left labeled"]) > .button {
|
432
|
+
border-top-right-radius: 0px;
|
433
|
+
border-bottom-right-radius: 0px;
|
434
|
+
}
|
435
|
+
.ui.labeled.button:not([class*="left labeled"]) > .label {
|
436
|
+
border-top-left-radius: 0px;
|
437
|
+
border-bottom-left-radius: 0px;
|
438
|
+
}
|
439
|
+
|
440
|
+
/* Left Side */
|
441
|
+
.ui[class*="left labeled"].button > .button {
|
442
|
+
border-top-left-radius: 0px;
|
443
|
+
border-bottom-left-radius: 0px;
|
444
|
+
}
|
445
|
+
.ui[class*="left labeled"].button > .label {
|
446
|
+
border-top-right-radius: 0px;
|
447
|
+
border-bottom-right-radius: 0px;
|
448
|
+
}
|
449
|
+
|
375
450
|
/*-------------------
|
376
451
|
Social
|
377
452
|
--------------------*/
|
@@ -528,8 +603,8 @@
|
|
528
603
|
Icon
|
529
604
|
---------------*/
|
530
605
|
|
531
|
-
.ui.button > .icon {
|
532
|
-
height: 0.
|
606
|
+
.ui.button > .icon:not(.button) {
|
607
|
+
height: 0.85714286em;
|
533
608
|
opacity: 0.8;
|
534
609
|
margin: 0em 0.42857143em 0em -0.21428571em;
|
535
610
|
-webkit-transition: opacity 0.1s ease;
|
@@ -537,7 +612,7 @@
|
|
537
612
|
vertical-align: '';
|
538
613
|
color: '';
|
539
614
|
}
|
540
|
-
.ui.button > .right.icon {
|
615
|
+
.ui.button > .right.icon:not(.button) {
|
541
616
|
margin: 0em -0.21428571em 0em 0.42857143em;
|
542
617
|
}
|
543
618
|
|
@@ -812,7 +887,9 @@
|
|
812
887
|
width: 100%;
|
813
888
|
top: 50%;
|
814
889
|
text-align: center;
|
815
|
-
|
890
|
+
-webkit-transform: translateY(-50%);
|
891
|
+
-ms-transform: translateY(-50%);
|
892
|
+
transform: translateY(-50%);
|
816
893
|
}
|
817
894
|
.ui.labeled.icon.buttons .button > .icon {
|
818
895
|
border-radius: 0em;
|
@@ -1200,33 +1277,34 @@
|
|
1200
1277
|
/* Basic */
|
1201
1278
|
.ui.basic.black.buttons .button,
|
1202
1279
|
.ui.basic.black.button {
|
1203
|
-
box-shadow: 0px 0px 0px 1px
|
1204
|
-
color:
|
1280
|
+
box-shadow: 0px 0px 0px 1px #1b1c1d inset !important;
|
1281
|
+
color: #1b1c1d !important;
|
1205
1282
|
}
|
1206
1283
|
.ui.basic.black.buttons .button:hover,
|
1207
1284
|
.ui.basic.black.button:hover {
|
1208
1285
|
background: transparent !important;
|
1209
|
-
box-shadow: 0px 0px 0px
|
1286
|
+
box-shadow: 0px 0px 0px 1px #27292a inset !important;
|
1210
1287
|
color: #27292a !important;
|
1211
1288
|
}
|
1212
1289
|
.ui.basic.black.buttons .button:focus,
|
1213
1290
|
.ui.basic.black.button:focus {
|
1214
1291
|
background: transparent !important;
|
1215
|
-
box-shadow: 0px 0px 0px
|
1292
|
+
box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
|
1293
|
+
color: #27292a !important;
|
1216
1294
|
}
|
1217
1295
|
.ui.basic.black.buttons .active.button,
|
1218
1296
|
.ui.basic.black.active.button {
|
1219
1297
|
background: transparent !important;
|
1220
|
-
box-shadow: 0px 0px 0px
|
1298
|
+
box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
|
1221
1299
|
color: #343637 !important;
|
1222
1300
|
}
|
1223
1301
|
.ui.basic.black.buttons .button:active,
|
1224
1302
|
.ui.basic.black.button:active {
|
1225
|
-
box-shadow: 0px 0px 0px
|
1303
|
+
box-shadow: 0px 0px 0px 1px #343637 inset !important;
|
1226
1304
|
color: #343637 !important;
|
1227
1305
|
}
|
1228
1306
|
.ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
|
1229
|
-
margin-left: -
|
1307
|
+
margin-left: -1px;
|
1230
1308
|
}
|
1231
1309
|
|
1232
1310
|
/* Inverted */
|
@@ -1339,33 +1417,34 @@
|
|
1339
1417
|
/* Basic */
|
1340
1418
|
.ui.basic.grey.buttons .button,
|
1341
1419
|
.ui.basic.grey.button {
|
1342
|
-
box-shadow: 0px 0px 0px 1px
|
1343
|
-
color:
|
1420
|
+
box-shadow: 0px 0px 0px 1px #767676 inset !important;
|
1421
|
+
color: #767676 !important;
|
1344
1422
|
}
|
1345
1423
|
.ui.basic.grey.buttons .button:hover,
|
1346
1424
|
.ui.basic.grey.button:hover {
|
1347
1425
|
background: transparent !important;
|
1348
|
-
box-shadow: 0px 0px 0px
|
1426
|
+
box-shadow: 0px 0px 0px 1px #838383 inset !important;
|
1349
1427
|
color: #838383 !important;
|
1350
1428
|
}
|
1351
1429
|
.ui.basic.grey.buttons .button:focus,
|
1352
1430
|
.ui.basic.grey.button:focus {
|
1353
1431
|
background: transparent !important;
|
1354
|
-
box-shadow: 0px 0px 0px
|
1432
|
+
box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
|
1433
|
+
color: #838383 !important;
|
1355
1434
|
}
|
1356
1435
|
.ui.basic.grey.buttons .active.button,
|
1357
1436
|
.ui.basic.grey.active.button {
|
1358
1437
|
background: transparent !important;
|
1359
|
-
box-shadow: 0px 0px 0px
|
1438
|
+
box-shadow: 0px 0px 0px 1px #696969 inset !important;
|
1360
1439
|
color: #909090 !important;
|
1361
1440
|
}
|
1362
1441
|
.ui.basic.grey.buttons .button:active,
|
1363
1442
|
.ui.basic.grey.button:active {
|
1364
|
-
box-shadow: 0px 0px 0px
|
1443
|
+
box-shadow: 0px 0px 0px 1px #909090 inset !important;
|
1365
1444
|
color: #909090 !important;
|
1366
1445
|
}
|
1367
1446
|
.ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
|
1368
|
-
margin-left: -
|
1447
|
+
margin-left: -1px;
|
1369
1448
|
}
|
1370
1449
|
|
1371
1450
|
/* Inverted */
|
@@ -1478,33 +1557,34 @@
|
|
1478
1557
|
/* Basic */
|
1479
1558
|
.ui.basic.brown.buttons .button,
|
1480
1559
|
.ui.basic.brown.button {
|
1481
|
-
box-shadow: 0px 0px 0px 1px
|
1482
|
-
color:
|
1560
|
+
box-shadow: 0px 0px 0px 1px #a5673f inset !important;
|
1561
|
+
color: #a5673f !important;
|
1483
1562
|
}
|
1484
1563
|
.ui.basic.brown.buttons .button:hover,
|
1485
1564
|
.ui.basic.brown.button:hover {
|
1486
1565
|
background: transparent !important;
|
1487
|
-
box-shadow: 0px 0px 0px
|
1566
|
+
box-shadow: 0px 0px 0px 1px #975b33 inset !important;
|
1488
1567
|
color: #975b33 !important;
|
1489
1568
|
}
|
1490
1569
|
.ui.basic.brown.buttons .button:focus,
|
1491
1570
|
.ui.basic.brown.button:focus {
|
1492
1571
|
background: transparent !important;
|
1493
|
-
box-shadow: 0px 0px 0px
|
1572
|
+
box-shadow: 0px 0px 0px 1px #90532b inset !important;
|
1573
|
+
color: #975b33 !important;
|
1494
1574
|
}
|
1495
1575
|
.ui.basic.brown.buttons .active.button,
|
1496
1576
|
.ui.basic.brown.active.button {
|
1497
1577
|
background: transparent !important;
|
1498
|
-
box-shadow: 0px 0px 0px
|
1578
|
+
box-shadow: 0px 0px 0px 1px #995a31 inset !important;
|
1499
1579
|
color: #805031 !important;
|
1500
1580
|
}
|
1501
1581
|
.ui.basic.brown.buttons .button:active,
|
1502
1582
|
.ui.basic.brown.button:active {
|
1503
|
-
box-shadow: 0px 0px 0px
|
1583
|
+
box-shadow: 0px 0px 0px 1px #805031 inset !important;
|
1504
1584
|
color: #805031 !important;
|
1505
1585
|
}
|
1506
1586
|
.ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
|
1507
|
-
margin-left: -
|
1587
|
+
margin-left: -1px;
|
1508
1588
|
}
|
1509
1589
|
|
1510
1590
|
/* Inverted */
|
@@ -1617,33 +1697,34 @@
|
|
1617
1697
|
/* Basic */
|
1618
1698
|
.ui.basic.blue.buttons .button,
|
1619
1699
|
.ui.basic.blue.button {
|
1620
|
-
box-shadow: 0px 0px 0px 1px
|
1621
|
-
color:
|
1700
|
+
box-shadow: 0px 0px 0px 1px #2185d0 inset !important;
|
1701
|
+
color: #2185d0 !important;
|
1622
1702
|
}
|
1623
1703
|
.ui.basic.blue.buttons .button:hover,
|
1624
1704
|
.ui.basic.blue.button:hover {
|
1625
1705
|
background: transparent !important;
|
1626
|
-
box-shadow: 0px 0px 0px
|
1706
|
+
box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
|
1627
1707
|
color: #1678c2 !important;
|
1628
1708
|
}
|
1629
1709
|
.ui.basic.blue.buttons .button:focus,
|
1630
1710
|
.ui.basic.blue.button:focus {
|
1631
1711
|
background: transparent !important;
|
1632
|
-
box-shadow: 0px 0px 0px
|
1712
|
+
box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
|
1713
|
+
color: #1678c2 !important;
|
1633
1714
|
}
|
1634
1715
|
.ui.basic.blue.buttons .active.button,
|
1635
1716
|
.ui.basic.blue.active.button {
|
1636
1717
|
background: transparent !important;
|
1637
|
-
box-shadow: 0px 0px 0px
|
1718
|
+
box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
|
1638
1719
|
color: #1a69a4 !important;
|
1639
1720
|
}
|
1640
1721
|
.ui.basic.blue.buttons .button:active,
|
1641
1722
|
.ui.basic.blue.button:active {
|
1642
|
-
box-shadow: 0px 0px 0px
|
1723
|
+
box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
|
1643
1724
|
color: #1a69a4 !important;
|
1644
1725
|
}
|
1645
1726
|
.ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
|
1646
|
-
margin-left: -
|
1727
|
+
margin-left: -1px;
|
1647
1728
|
}
|
1648
1729
|
|
1649
1730
|
/* Inverted */
|
@@ -1756,33 +1837,34 @@
|
|
1756
1837
|
/* Basic */
|
1757
1838
|
.ui.basic.green.buttons .button,
|
1758
1839
|
.ui.basic.green.button {
|
1759
|
-
box-shadow: 0px 0px 0px 1px
|
1760
|
-
color:
|
1840
|
+
box-shadow: 0px 0px 0px 1px #21ba45 inset !important;
|
1841
|
+
color: #21ba45 !important;
|
1761
1842
|
}
|
1762
1843
|
.ui.basic.green.buttons .button:hover,
|
1763
1844
|
.ui.basic.green.button:hover {
|
1764
1845
|
background: transparent !important;
|
1765
|
-
box-shadow: 0px 0px 0px
|
1846
|
+
box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
|
1766
1847
|
color: #16ab39 !important;
|
1767
1848
|
}
|
1768
1849
|
.ui.basic.green.buttons .button:focus,
|
1769
1850
|
.ui.basic.green.button:focus {
|
1770
1851
|
background: transparent !important;
|
1771
|
-
box-shadow: 0px 0px 0px
|
1852
|
+
box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
|
1853
|
+
color: #16ab39 !important;
|
1772
1854
|
}
|
1773
1855
|
.ui.basic.green.buttons .active.button,
|
1774
1856
|
.ui.basic.green.active.button {
|
1775
1857
|
background: transparent !important;
|
1776
|
-
box-shadow: 0px 0px 0px
|
1858
|
+
box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
|
1777
1859
|
color: #198f35 !important;
|
1778
1860
|
}
|
1779
1861
|
.ui.basic.green.buttons .button:active,
|
1780
1862
|
.ui.basic.green.button:active {
|
1781
|
-
box-shadow: 0px 0px 0px
|
1863
|
+
box-shadow: 0px 0px 0px 1px #198f35 inset !important;
|
1782
1864
|
color: #198f35 !important;
|
1783
1865
|
}
|
1784
1866
|
.ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
|
1785
|
-
margin-left: -
|
1867
|
+
margin-left: -1px;
|
1786
1868
|
}
|
1787
1869
|
|
1788
1870
|
/* Inverted */
|
@@ -1895,33 +1977,34 @@
|
|
1895
1977
|
/* Basic */
|
1896
1978
|
.ui.basic.orange.buttons .button,
|
1897
1979
|
.ui.basic.orange.button {
|
1898
|
-
box-shadow: 0px 0px 0px 1px
|
1899
|
-
color:
|
1980
|
+
box-shadow: 0px 0px 0px 1px #f2711c inset !important;
|
1981
|
+
color: #f2711c !important;
|
1900
1982
|
}
|
1901
1983
|
.ui.basic.orange.buttons .button:hover,
|
1902
1984
|
.ui.basic.orange.button:hover {
|
1903
1985
|
background: transparent !important;
|
1904
|
-
box-shadow: 0px 0px 0px
|
1986
|
+
box-shadow: 0px 0px 0px 1px #f26202 inset !important;
|
1905
1987
|
color: #f26202 !important;
|
1906
1988
|
}
|
1907
1989
|
.ui.basic.orange.buttons .button:focus,
|
1908
1990
|
.ui.basic.orange.button:focus {
|
1909
1991
|
background: transparent !important;
|
1910
|
-
box-shadow: 0px 0px 0px
|
1992
|
+
box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
|
1993
|
+
color: #f26202 !important;
|
1911
1994
|
}
|
1912
1995
|
.ui.basic.orange.buttons .active.button,
|
1913
1996
|
.ui.basic.orange.active.button {
|
1914
1997
|
background: transparent !important;
|
1915
|
-
box-shadow: 0px 0px 0px
|
1998
|
+
box-shadow: 0px 0px 0px 1px #f56100 inset !important;
|
1916
1999
|
color: #cf590c !important;
|
1917
2000
|
}
|
1918
2001
|
.ui.basic.orange.buttons .button:active,
|
1919
2002
|
.ui.basic.orange.button:active {
|
1920
|
-
box-shadow: 0px 0px 0px
|
2003
|
+
box-shadow: 0px 0px 0px 1px #cf590c inset !important;
|
1921
2004
|
color: #cf590c !important;
|
1922
2005
|
}
|
1923
2006
|
.ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
|
1924
|
-
margin-left: -
|
2007
|
+
margin-left: -1px;
|
1925
2008
|
}
|
1926
2009
|
|
1927
2010
|
/* Inverted */
|
@@ -2034,33 +2117,34 @@
|
|
2034
2117
|
/* Basic */
|
2035
2118
|
.ui.basic.pink.buttons .button,
|
2036
2119
|
.ui.basic.pink.button {
|
2037
|
-
box-shadow: 0px 0px 0px 1px
|
2038
|
-
color:
|
2120
|
+
box-shadow: 0px 0px 0px 1px #e03997 inset !important;
|
2121
|
+
color: #e03997 !important;
|
2039
2122
|
}
|
2040
2123
|
.ui.basic.pink.buttons .button:hover,
|
2041
2124
|
.ui.basic.pink.button:hover {
|
2042
2125
|
background: transparent !important;
|
2043
|
-
box-shadow: 0px 0px 0px
|
2126
|
+
box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
|
2044
2127
|
color: #e61a8d !important;
|
2045
2128
|
}
|
2046
2129
|
.ui.basic.pink.buttons .button:focus,
|
2047
2130
|
.ui.basic.pink.button:focus {
|
2048
2131
|
background: transparent !important;
|
2049
|
-
box-shadow: 0px 0px 0px
|
2132
|
+
box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
|
2133
|
+
color: #e61a8d !important;
|
2050
2134
|
}
|
2051
2135
|
.ui.basic.pink.buttons .active.button,
|
2052
2136
|
.ui.basic.pink.active.button {
|
2053
2137
|
background: transparent !important;
|
2054
|
-
box-shadow: 0px 0px 0px
|
2138
|
+
box-shadow: 0px 0px 0px 1px #ea158d inset !important;
|
2055
2139
|
color: #c71f7e !important;
|
2056
2140
|
}
|
2057
2141
|
.ui.basic.pink.buttons .button:active,
|
2058
2142
|
.ui.basic.pink.button:active {
|
2059
|
-
box-shadow: 0px 0px 0px
|
2143
|
+
box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
|
2060
2144
|
color: #c71f7e !important;
|
2061
2145
|
}
|
2062
2146
|
.ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
|
2063
|
-
margin-left: -
|
2147
|
+
margin-left: -1px;
|
2064
2148
|
}
|
2065
2149
|
|
2066
2150
|
/* Inverted */
|
@@ -2173,33 +2257,34 @@
|
|
2173
2257
|
/* Basic */
|
2174
2258
|
.ui.basic.violet.buttons .button,
|
2175
2259
|
.ui.basic.violet.button {
|
2176
|
-
box-shadow: 0px 0px 0px 1px
|
2177
|
-
color:
|
2260
|
+
box-shadow: 0px 0px 0px 1px #6435c9 inset !important;
|
2261
|
+
color: #6435c9 !important;
|
2178
2262
|
}
|
2179
2263
|
.ui.basic.violet.buttons .button:hover,
|
2180
2264
|
.ui.basic.violet.button:hover {
|
2181
2265
|
background: transparent !important;
|
2182
|
-
box-shadow: 0px 0px 0px
|
2266
|
+
box-shadow: 0px 0px 0px 1px #5829bb inset !important;
|
2183
2267
|
color: #5829bb !important;
|
2184
2268
|
}
|
2185
2269
|
.ui.basic.violet.buttons .button:focus,
|
2186
2270
|
.ui.basic.violet.button:focus {
|
2187
2271
|
background: transparent !important;
|
2188
|
-
box-shadow: 0px 0px 0px
|
2272
|
+
box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
|
2273
|
+
color: #5829bb !important;
|
2189
2274
|
}
|
2190
2275
|
.ui.basic.violet.buttons .active.button,
|
2191
2276
|
.ui.basic.violet.active.button {
|
2192
2277
|
background: transparent !important;
|
2193
|
-
box-shadow: 0px 0px 0px
|
2278
|
+
box-shadow: 0px 0px 0px 1px #5626bf inset !important;
|
2194
2279
|
color: #502aa1 !important;
|
2195
2280
|
}
|
2196
2281
|
.ui.basic.violet.buttons .button:active,
|
2197
2282
|
.ui.basic.violet.button:active {
|
2198
|
-
box-shadow: 0px 0px 0px
|
2283
|
+
box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
|
2199
2284
|
color: #502aa1 !important;
|
2200
2285
|
}
|
2201
2286
|
.ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
|
2202
|
-
margin-left: -
|
2287
|
+
margin-left: -1px;
|
2203
2288
|
}
|
2204
2289
|
|
2205
2290
|
/* Inverted */
|
@@ -2312,33 +2397,34 @@
|
|
2312
2397
|
/* Basic */
|
2313
2398
|
.ui.basic.purple.buttons .button,
|
2314
2399
|
.ui.basic.purple.button {
|
2315
|
-
box-shadow: 0px 0px 0px 1px
|
2316
|
-
color:
|
2400
|
+
box-shadow: 0px 0px 0px 1px #a333c8 inset !important;
|
2401
|
+
color: #a333c8 !important;
|
2317
2402
|
}
|
2318
2403
|
.ui.basic.purple.buttons .button:hover,
|
2319
2404
|
.ui.basic.purple.button:hover {
|
2320
2405
|
background: transparent !important;
|
2321
|
-
box-shadow: 0px 0px 0px
|
2406
|
+
box-shadow: 0px 0px 0px 1px #9627ba inset !important;
|
2322
2407
|
color: #9627ba !important;
|
2323
2408
|
}
|
2324
2409
|
.ui.basic.purple.buttons .button:focus,
|
2325
2410
|
.ui.basic.purple.button:focus {
|
2326
2411
|
background: transparent !important;
|
2327
|
-
box-shadow: 0px 0px 0px
|
2412
|
+
box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
|
2413
|
+
color: #9627ba !important;
|
2328
2414
|
}
|
2329
2415
|
.ui.basic.purple.buttons .active.button,
|
2330
2416
|
.ui.basic.purple.active.button {
|
2331
2417
|
background: transparent !important;
|
2332
|
-
box-shadow: 0px 0px 0px
|
2418
|
+
box-shadow: 0px 0px 0px 1px #9724be inset !important;
|
2333
2419
|
color: #82299f !important;
|
2334
2420
|
}
|
2335
2421
|
.ui.basic.purple.buttons .button:active,
|
2336
2422
|
.ui.basic.purple.button:active {
|
2337
|
-
box-shadow: 0px 0px 0px
|
2423
|
+
box-shadow: 0px 0px 0px 1px #82299f inset !important;
|
2338
2424
|
color: #82299f !important;
|
2339
2425
|
}
|
2340
2426
|
.ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
|
2341
|
-
margin-left: -
|
2427
|
+
margin-left: -1px;
|
2342
2428
|
}
|
2343
2429
|
|
2344
2430
|
/* Inverted */
|
@@ -2451,33 +2537,34 @@
|
|
2451
2537
|
/* Basic */
|
2452
2538
|
.ui.basic.red.buttons .button,
|
2453
2539
|
.ui.basic.red.button {
|
2454
|
-
box-shadow: 0px 0px 0px 1px
|
2455
|
-
color:
|
2540
|
+
box-shadow: 0px 0px 0px 1px #db2828 inset !important;
|
2541
|
+
color: #db2828 !important;
|
2456
2542
|
}
|
2457
2543
|
.ui.basic.red.buttons .button:hover,
|
2458
2544
|
.ui.basic.red.button:hover {
|
2459
2545
|
background: transparent !important;
|
2460
|
-
box-shadow: 0px 0px 0px
|
2546
|
+
box-shadow: 0px 0px 0px 1px #d01919 inset !important;
|
2461
2547
|
color: #d01919 !important;
|
2462
2548
|
}
|
2463
2549
|
.ui.basic.red.buttons .button:focus,
|
2464
2550
|
.ui.basic.red.button:focus {
|
2465
2551
|
background: transparent !important;
|
2466
|
-
box-shadow: 0px 0px 0px
|
2552
|
+
box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
|
2553
|
+
color: #d01919 !important;
|
2467
2554
|
}
|
2468
2555
|
.ui.basic.red.buttons .active.button,
|
2469
2556
|
.ui.basic.red.active.button {
|
2470
2557
|
background: transparent !important;
|
2471
|
-
box-shadow: 0px 0px 0px
|
2558
|
+
box-shadow: 0px 0px 0px 1px #d41515 inset !important;
|
2472
2559
|
color: #b21e1e !important;
|
2473
2560
|
}
|
2474
2561
|
.ui.basic.red.buttons .button:active,
|
2475
2562
|
.ui.basic.red.button:active {
|
2476
|
-
box-shadow: 0px 0px 0px
|
2563
|
+
box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
|
2477
2564
|
color: #b21e1e !important;
|
2478
2565
|
}
|
2479
2566
|
.ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
|
2480
|
-
margin-left: -
|
2567
|
+
margin-left: -1px;
|
2481
2568
|
}
|
2482
2569
|
|
2483
2570
|
/* Inverted */
|
@@ -2590,33 +2677,34 @@
|
|
2590
2677
|
/* Basic */
|
2591
2678
|
.ui.basic.teal.buttons .button,
|
2592
2679
|
.ui.basic.teal.button {
|
2593
|
-
box-shadow: 0px 0px 0px 1px
|
2594
|
-
color:
|
2680
|
+
box-shadow: 0px 0px 0px 1px #00b5ad inset !important;
|
2681
|
+
color: #00b5ad !important;
|
2595
2682
|
}
|
2596
2683
|
.ui.basic.teal.buttons .button:hover,
|
2597
2684
|
.ui.basic.teal.button:hover {
|
2598
2685
|
background: transparent !important;
|
2599
|
-
box-shadow: 0px 0px 0px
|
2686
|
+
box-shadow: 0px 0px 0px 1px #009c95 inset !important;
|
2600
2687
|
color: #009c95 !important;
|
2601
2688
|
}
|
2602
2689
|
.ui.basic.teal.buttons .button:focus,
|
2603
2690
|
.ui.basic.teal.button:focus {
|
2604
2691
|
background: transparent !important;
|
2605
|
-
box-shadow: 0px 0px 0px
|
2692
|
+
box-shadow: 0px 0px 0px 1px #008c86 inset !important;
|
2693
|
+
color: #009c95 !important;
|
2606
2694
|
}
|
2607
2695
|
.ui.basic.teal.buttons .active.button,
|
2608
2696
|
.ui.basic.teal.active.button {
|
2609
2697
|
background: transparent !important;
|
2610
|
-
box-shadow: 0px 0px 0px
|
2698
|
+
box-shadow: 0px 0px 0px 1px #009c95 inset !important;
|
2611
2699
|
color: #00827c !important;
|
2612
2700
|
}
|
2613
2701
|
.ui.basic.teal.buttons .button:active,
|
2614
2702
|
.ui.basic.teal.button:active {
|
2615
|
-
box-shadow: 0px 0px 0px
|
2703
|
+
box-shadow: 0px 0px 0px 1px #00827c inset !important;
|
2616
2704
|
color: #00827c !important;
|
2617
2705
|
}
|
2618
2706
|
.ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
|
2619
|
-
margin-left: -
|
2707
|
+
margin-left: -1px;
|
2620
2708
|
}
|
2621
2709
|
|
2622
2710
|
/* Inverted */
|
@@ -2729,33 +2817,34 @@
|
|
2729
2817
|
/* Basic */
|
2730
2818
|
.ui.basic.olive.buttons .button,
|
2731
2819
|
.ui.basic.olive.button {
|
2732
|
-
box-shadow: 0px 0px 0px 1px
|
2733
|
-
color:
|
2820
|
+
box-shadow: 0px 0px 0px 1px #b5cc18 inset !important;
|
2821
|
+
color: #b5cc18 !important;
|
2734
2822
|
}
|
2735
2823
|
.ui.basic.olive.buttons .button:hover,
|
2736
2824
|
.ui.basic.olive.button:hover {
|
2737
2825
|
background: transparent !important;
|
2738
|
-
box-shadow: 0px 0px 0px
|
2826
|
+
box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
|
2739
2827
|
color: #a7bd0d !important;
|
2740
2828
|
}
|
2741
2829
|
.ui.basic.olive.buttons .button:focus,
|
2742
2830
|
.ui.basic.olive.button:focus {
|
2743
2831
|
background: transparent !important;
|
2744
|
-
box-shadow: 0px 0px 0px
|
2832
|
+
box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
|
2833
|
+
color: #a7bd0d !important;
|
2745
2834
|
}
|
2746
2835
|
.ui.basic.olive.buttons .active.button,
|
2747
2836
|
.ui.basic.olive.active.button {
|
2748
2837
|
background: transparent !important;
|
2749
|
-
box-shadow: 0px 0px 0px
|
2838
|
+
box-shadow: 0px 0px 0px 1px #aac109 inset !important;
|
2750
2839
|
color: #8d9e13 !important;
|
2751
2840
|
}
|
2752
2841
|
.ui.basic.olive.buttons .button:active,
|
2753
2842
|
.ui.basic.olive.button:active {
|
2754
|
-
box-shadow: 0px 0px 0px
|
2843
|
+
box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
|
2755
2844
|
color: #8d9e13 !important;
|
2756
2845
|
}
|
2757
2846
|
.ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
|
2758
|
-
margin-left: -
|
2847
|
+
margin-left: -1px;
|
2759
2848
|
}
|
2760
2849
|
|
2761
2850
|
/* Inverted */
|
@@ -2868,33 +2957,34 @@
|
|
2868
2957
|
/* Basic */
|
2869
2958
|
.ui.basic.yellow.buttons .button,
|
2870
2959
|
.ui.basic.yellow.button {
|
2871
|
-
box-shadow: 0px 0px 0px 1px
|
2872
|
-
color:
|
2960
|
+
box-shadow: 0px 0px 0px 1px #fbbd08 inset !important;
|
2961
|
+
color: #fbbd08 !important;
|
2873
2962
|
}
|
2874
2963
|
.ui.basic.yellow.buttons .button:hover,
|
2875
2964
|
.ui.basic.yellow.button:hover {
|
2876
2965
|
background: transparent !important;
|
2877
|
-
box-shadow: 0px 0px 0px
|
2966
|
+
box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
|
2878
2967
|
color: #eaae00 !important;
|
2879
2968
|
}
|
2880
2969
|
.ui.basic.yellow.buttons .button:focus,
|
2881
2970
|
.ui.basic.yellow.button:focus {
|
2882
2971
|
background: transparent !important;
|
2883
|
-
box-shadow: 0px 0px 0px
|
2972
|
+
box-shadow: 0px 0px 0px 1px #daa300 inset !important;
|
2973
|
+
color: #eaae00 !important;
|
2884
2974
|
}
|
2885
2975
|
.ui.basic.yellow.buttons .active.button,
|
2886
2976
|
.ui.basic.yellow.active.button {
|
2887
2977
|
background: transparent !important;
|
2888
|
-
box-shadow: 0px 0px 0px
|
2978
|
+
box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
|
2889
2979
|
color: #cd9903 !important;
|
2890
2980
|
}
|
2891
2981
|
.ui.basic.yellow.buttons .button:active,
|
2892
2982
|
.ui.basic.yellow.button:active {
|
2893
|
-
box-shadow: 0px 0px 0px
|
2983
|
+
box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
|
2894
2984
|
color: #cd9903 !important;
|
2895
2985
|
}
|
2896
2986
|
.ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
|
2897
|
-
margin-left: -
|
2987
|
+
margin-left: -1px;
|
2898
2988
|
}
|
2899
2989
|
|
2900
2990
|
/* Inverted */
|