fomantic-ui-sass 2.6.4 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +1 -0
  4. data/.rubocop_todo.yml +102 -0
  5. data/.travis.yml +9 -3
  6. data/README.md +4 -2
  7. data/Rakefile +25 -3
  8. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  9. data/app/assets/fonts/semantic-ui/brand-icons.svg +178 -11
  10. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  14. data/app/assets/fonts/semantic-ui/icons.svg +1138 -92
  15. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  19. data/app/assets/fonts/semantic-ui/outline-icons.svg +127 -26
  20. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  23. data/app/assets/javascripts/semantic-ui.js +1 -1
  24. data/app/assets/javascripts/semantic-ui/accordion.js +5 -1
  25. data/app/assets/javascripts/semantic-ui/api.js +9 -2
  26. data/app/assets/javascripts/semantic-ui/calendar.js +25 -12
  27. data/app/assets/javascripts/semantic-ui/checkbox.js +39 -2
  28. data/app/assets/javascripts/semantic-ui/dimmer.js +25 -5
  29. data/app/assets/javascripts/semantic-ui/dropdown.js +130 -47
  30. data/app/assets/javascripts/semantic-ui/embed.js +5 -1
  31. data/app/assets/javascripts/semantic-ui/form.js +24 -19
  32. data/app/assets/javascripts/semantic-ui/modal.js +33 -17
  33. data/app/assets/javascripts/semantic-ui/nag.js +5 -1
  34. data/app/assets/javascripts/semantic-ui/popup.js +10 -5
  35. data/app/assets/javascripts/semantic-ui/progress.js +5 -1
  36. data/app/assets/javascripts/semantic-ui/rating.js +21 -6
  37. data/app/assets/javascripts/semantic-ui/search.js +43 -27
  38. data/app/assets/javascripts/semantic-ui/shape.js +5 -1
  39. data/app/assets/javascripts/semantic-ui/sidebar.js +7 -3
  40. data/app/assets/javascripts/semantic-ui/site.js +6 -2
  41. data/app/assets/javascripts/semantic-ui/slider.js +1216 -0
  42. data/app/assets/javascripts/semantic-ui/state.js +5 -1
  43. data/app/assets/javascripts/semantic-ui/sticky.js +5 -1
  44. data/app/assets/javascripts/semantic-ui/tab.js +10 -3
  45. data/app/assets/javascripts/semantic-ui/toast.js +6 -2
  46. data/app/assets/javascripts/semantic-ui/transition.js +6 -2
  47. data/app/assets/javascripts/semantic-ui/visibility.js +6 -2
  48. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +7 -7
  49. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +59 -83
  50. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +110 -124
  51. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +262 -237
  52. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +155 -118
  53. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +332 -145
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2281 -2415
  55. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  56. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +10 -10
  57. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +81 -81
  58. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +178 -191
  59. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +71 -103
  60. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +8 -8
  61. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +61 -40
  62. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1087 -444
  63. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +69 -69
  64. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +510 -155
  65. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +20 -14
  66. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +26 -26
  67. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +8 -8
  68. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +180 -216
  69. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +34 -39
  70. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +114 -0
  71. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  72. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +11 -20
  73. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +16 -16
  74. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +1 -1
  75. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +23 -23
  77. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +32 -32
  78. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +128 -155
  79. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +13 -13
  80. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +50 -48
  81. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +15 -15
  82. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +50 -50
  83. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +30 -44
  84. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +137 -111
  85. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +24 -28
  86. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +6 -6
  87. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +29 -29
  88. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +768 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +3 -3
  90. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +10 -14
  91. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +27 -16
  92. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  93. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +6 -6
  94. data/app/assets/stylesheets/semantic-ui/views/_card.scss +103 -133
  95. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +26 -26
  96. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +27 -27
  97. data/app/assets/stylesheets/semantic-ui/views/_item.scss +54 -54
  98. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +138 -108
  99. data/app/helpers/semantic_breadcrumbs_helper.rb +1 -1
  100. data/app/helpers/semantic_flash_helper.rb +4 -2
  101. data/app/helpers/semantic_icon_helper.rb +1 -1
  102. data/fomantic-ui-sass.gemspec +20 -19
  103. data/gemfiles/rails_5.0.gemfile +5 -0
  104. data/gemfiles/rails_5.1.gemfile +5 -0
  105. data/gemfiles/rails_5.2.gemfile +5 -0
  106. data/lib/fomantic-ui-sass.rb +3 -4
  107. data/lib/fomantic/ui/sass/breadcrumbs.rb +2 -4
  108. data/lib/fomantic/ui/sass/engine.rb +3 -3
  109. data/lib/fomantic/ui/sass/version.rb +2 -2
  110. data/spec/dummy/Rakefile +1 -1
  111. data/spec/dummy/bin/bundle +1 -1
  112. data/spec/dummy/bin/rails +1 -1
  113. data/spec/dummy/bin/rake +0 -0
  114. data/spec/dummy/config.ru +1 -1
  115. data/spec/dummy/config/application.rb +5 -6
  116. data/spec/dummy/config/boot.rb +3 -3
  117. data/spec/dummy/config/environment.rb +1 -1
  118. data/spec/dummy/config/environments/test.rb +1 -1
  119. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +30 -32
  120. data/spec/helpers/semantic_flash_helper_spec.rb +15 -16
  121. data/spec/helpers/semantic_icon_helper_spec.rb +10 -10
  122. data/spec/spec_helper.rb +4 -6
  123. data/tasks/converter.rb +61 -73
  124. data/templates/project/manifest.rb +1 -2
  125. metadata +45 -23
  126. data/app/assets/javascripts/semantic-ui/range.js +0 -278
  127. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +0 -192
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Video
2
+ * # Semantic UI 2.7.0 - Video
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -16,7 +16,7 @@
16
16
  .ui.embed {
17
17
  position: relative;
18
18
  max-width: 100%;
19
- height: 0px;
19
+ height: 0;
20
20
  overflow: hidden;
21
21
  background: #DCDDDE;
22
22
  padding-bottom: 56.25%;
@@ -33,10 +33,10 @@
33
33
  border: none;
34
34
  width: 100%;
35
35
  height: 100%;
36
- top: 0px;
37
- left: 0px;
38
- margin: 0em;
39
- padding: 0em;
36
+ top: 0;
37
+ left: 0;
38
+ margin: 0;
39
+ padding: 0;
40
40
  }
41
41
 
42
42
  /*-----------------
@@ -54,8 +54,8 @@
54
54
  .ui.embed > .placeholder {
55
55
  position: absolute;
56
56
  cursor: pointer;
57
- top: 0px;
58
- left: 0px;
57
+ top: 0;
58
+ left: 0;
59
59
  display: block;
60
60
  width: 100%;
61
61
  height: 100%;
@@ -69,16 +69,16 @@
69
69
  .ui.embed > .icon {
70
70
  cursor: pointer;
71
71
  position: absolute;
72
- top: 0px;
73
- left: 0px;
72
+ top: 0;
73
+ left: 0;
74
74
  width: 100%;
75
75
  height: 100%;
76
76
  z-index: 2;
77
77
  }
78
78
  .ui.embed > .icon:after {
79
79
  position: absolute;
80
- top: 0%;
81
- left: 0%;
80
+ top: 0;
81
+ left: 0;
82
82
  width: 100%;
83
83
  height: 100%;
84
84
  z-index: 3;
@@ -97,7 +97,7 @@
97
97
  transform: translateX(-50%) translateY(-50%);
98
98
  color: #FFFFFF;
99
99
  font-size: 6rem;
100
- text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2);
100
+ text-shadow: 0 2px 10px rgba(34, 36, 38, 0.2);
101
101
  -webkit-transition: opacity 0.5s ease, color 0.5s ease;
102
102
  transition: opacity 0.5s ease, color 0.5s ease;
103
103
  z-index: 10;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Modal
2
+ * # Semantic UI 2.7.0 - Modal
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -20,8 +20,8 @@
20
20
  text-align: left;
21
21
  background: #FFFFFF;
22
22
  border: none;
23
- -webkit-box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
24
- box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
23
+ -webkit-box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
24
+ box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
25
25
  -webkit-transform-origin: 50% 25%;
26
26
  transform-origin: 50% 25%;
27
27
  -webkit-box-flex: 0;
@@ -34,8 +34,10 @@
34
34
  user-select: text;
35
35
  will-change: top, left, margin, transform, opacity;
36
36
  }
37
- .ui.modal > :first-child:not(.icon),
38
- .ui.modal > .icon:first-child + * {
37
+ .ui.modal > :first-child:not(.icon):not(.dimmer),
38
+ .ui.modal > .icon:first-child + *,
39
+ .ui.modal > .dimmer:first-child + *:not(.icon),
40
+ .ui.modal > .dimmer:first-child + .icon + * {
39
41
  border-top-left-radius: 0.28571429rem;
40
42
  border-top-right-radius: 0.28571429rem;
41
43
  }
@@ -65,7 +67,7 @@
65
67
  color: #FFFFFF;
66
68
  width: 2.25rem;
67
69
  height: 2.25rem;
68
- padding: 0.625rem 0rem 0rem 0rem;
70
+ padding: 0.625rem 0 0 0;
69
71
  }
70
72
  .ui.modal > .close:hover {
71
73
  opacity: 1;
@@ -79,7 +81,7 @@
79
81
  display: block;
80
82
  font-family: $font-family;
81
83
  background: #FFFFFF;
82
- margin: 0em;
84
+ margin: 0;
83
85
  padding: 1.25rem 1.5rem;
84
86
  -webkit-box-shadow: none;
85
87
  box-shadow: none;
@@ -123,17 +125,17 @@
123
125
  -ms-flex: 0 1 auto;
124
126
  flex: 0 1 auto;
125
127
  width: '';
126
- -ms-flex-item-align: top;
127
- align-self: top;
128
+ -ms-flex-item-align: start;
129
+ align-self: start;
128
130
  max-width: 100%;
129
131
  }
130
132
  .ui.modal > [class*="top aligned"] {
131
- -ms-flex-item-align: top;
132
- align-self: top;
133
+ -ms-flex-item-align: start;
134
+ align-self: start;
133
135
  }
134
136
  .ui.modal > [class*="middle aligned"] {
135
- -ms-flex-item-align: middle;
136
- align-self: middle;
137
+ -ms-flex-item-align: center;
138
+ align-self: center;
137
139
  }
138
140
  .ui.modal > [class*="stretched"] {
139
141
  -ms-flex-item-align: stretch;
@@ -146,9 +148,9 @@
146
148
  -webkit-box-flex: 1;
147
149
  -ms-flex: 1 0 auto;
148
150
  flex: 1 0 auto;
149
- min-width: 0px;
150
- -ms-flex-item-align: top;
151
- align-self: top;
151
+ min-width: 0;
152
+ -ms-flex-item-align: start;
153
+ align-self: start;
152
154
  }
153
155
  .ui.modal > .content > .icon + .description,
154
156
  .ui.modal > .content > .image + .description {
@@ -161,7 +163,7 @@
161
163
  }
162
164
  /*rtl:ignore*/
163
165
  .ui.modal > .content > .image > i.icon {
164
- margin: 0em;
166
+ margin: 0;
165
167
  opacity: 1;
166
168
  width: auto;
167
169
  line-height: 1;
@@ -194,31 +196,31 @@
194
196
  @media only screen and (max-width: 767px) {
195
197
  .ui.modal {
196
198
  width: 95%;
197
- margin: 0em 0em 0em 0em;
199
+ margin: 0 0 0 0;
198
200
  }
199
201
  }
200
202
  @media only screen and (min-width: 768px) {
201
203
  .ui.modal {
202
204
  width: 88%;
203
- margin: 0em 0em 0em 0em;
205
+ margin: 0 0 0 0;
204
206
  }
205
207
  }
206
208
  @media only screen and (min-width: 992px) {
207
209
  .ui.modal {
208
210
  width: 850px;
209
- margin: 0em 0em 0em 0em;
211
+ margin: 0 0 0 0;
210
212
  }
211
213
  }
212
214
  @media only screen and (min-width: 1200px) {
213
215
  .ui.modal {
214
216
  width: 900px;
215
- margin: 0em 0em 0em 0em;
217
+ margin: 0 0 0 0;
216
218
  }
217
219
  }
218
220
  @media only screen and (min-width: 1920px) {
219
221
  .ui.modal {
220
222
  width: 950px;
221
- margin: 0em 0em 0em 0em;
223
+ margin: 0 0 0 0;
222
224
  }
223
225
  }
224
226
 
@@ -258,9 +260,9 @@
258
260
  .ui.modal .content > .image {
259
261
  display: block;
260
262
  max-width: 100%;
261
- margin: 0em auto !important;
263
+ margin: 0 auto !important;
262
264
  text-align: center;
263
- padding: 0rem 0rem 1rem !important;
265
+ padding: 0 0 1rem !important;
264
266
  }
265
267
  .ui.modal > .content > .image > i.icon {
266
268
  font-size: 5rem;
@@ -270,8 +272,8 @@
270
272
  .ui.modal .content > .description {
271
273
  display: block;
272
274
  width: 100% !important;
273
- margin: 0em !important;
274
- padding: 1rem 0rem !important;
275
+ margin: 0 !important;
276
+ padding: 1rem 0 !important;
275
277
  -webkit-box-shadow: none;
276
278
  box-shadow: none;
277
279
  }
@@ -303,7 +305,7 @@
303
305
  .ui.basic.modal {
304
306
  background-color: transparent;
305
307
  border: none;
306
- border-radius: 0em;
308
+ border-radius: 0;
307
309
  -webkit-box-shadow: none !important;
308
310
  box-shadow: none !important;
309
311
  color: #FFFFFF;
@@ -425,7 +427,7 @@
425
427
 
426
428
  /* Scrolling Content */
427
429
  .ui.modal .scrolling.content {
428
- max-height: calc(70vh);
430
+ max-height: calc(80vh - 10em);
429
431
  overflow: auto;
430
432
  }
431
433
 
@@ -467,31 +469,31 @@
467
469
  @media only screen and (max-width: 767px) {
468
470
  .ui.mini.modal {
469
471
  width: 95%;
470
- margin: 0em 0em 0em 0em;
472
+ margin: 0 0 0 0;
471
473
  }
472
474
  }
473
475
  @media only screen and (min-width: 768px) {
474
476
  .ui.mini.modal {
475
477
  width: 35.2%;
476
- margin: 0em 0em 0em 0em;
478
+ margin: 0 0 0 0;
477
479
  }
478
480
  }
479
481
  @media only screen and (min-width: 992px) {
480
482
  .ui.mini.modal {
481
483
  width: 340px;
482
- margin: 0em 0em 0em 0em;
484
+ margin: 0 0 0 0;
483
485
  }
484
486
  }
485
487
  @media only screen and (min-width: 1200px) {
486
488
  .ui.mini.modal {
487
489
  width: 360px;
488
- margin: 0em 0em 0em 0em;
490
+ margin: 0 0 0 0;
489
491
  }
490
492
  }
491
493
  @media only screen and (min-width: 1920px) {
492
494
  .ui.mini.modal {
493
495
  width: 380px;
494
- margin: 0em 0em 0em 0em;
496
+ margin: 0 0 0 0;
495
497
  }
496
498
  }
497
499
 
@@ -504,31 +506,31 @@
504
506
  @media only screen and (max-width: 767px) {
505
507
  .ui.tiny.modal {
506
508
  width: 95%;
507
- margin: 0em 0em 0em 0em;
509
+ margin: 0 0 0 0;
508
510
  }
509
511
  }
510
512
  @media only screen and (min-width: 768px) {
511
513
  .ui.tiny.modal {
512
514
  width: 52.8%;
513
- margin: 0em 0em 0em 0em;
515
+ margin: 0 0 0 0;
514
516
  }
515
517
  }
516
518
  @media only screen and (min-width: 992px) {
517
519
  .ui.tiny.modal {
518
520
  width: 510px;
519
- margin: 0em 0em 0em 0em;
521
+ margin: 0 0 0 0;
520
522
  }
521
523
  }
522
524
  @media only screen and (min-width: 1200px) {
523
525
  .ui.tiny.modal {
524
526
  width: 540px;
525
- margin: 0em 0em 0em 0em;
527
+ margin: 0 0 0 0;
526
528
  }
527
529
  }
528
530
  @media only screen and (min-width: 1920px) {
529
531
  .ui.tiny.modal {
530
532
  width: 570px;
531
- margin: 0em 0em 0em 0em;
533
+ margin: 0 0 0 0;
532
534
  }
533
535
  }
534
536
 
@@ -541,31 +543,31 @@
541
543
  @media only screen and (max-width: 767px) {
542
544
  .ui.small.modal {
543
545
  width: 95%;
544
- margin: 0em 0em 0em 0em;
546
+ margin: 0 0 0 0;
545
547
  }
546
548
  }
547
549
  @media only screen and (min-width: 768px) {
548
550
  .ui.small.modal {
549
551
  width: 70.4%;
550
- margin: 0em 0em 0em 0em;
552
+ margin: 0 0 0 0;
551
553
  }
552
554
  }
553
555
  @media only screen and (min-width: 992px) {
554
556
  .ui.small.modal {
555
557
  width: 680px;
556
- margin: 0em 0em 0em 0em;
558
+ margin: 0 0 0 0;
557
559
  }
558
560
  }
559
561
  @media only screen and (min-width: 1200px) {
560
562
  .ui.small.modal {
561
563
  width: 720px;
562
- margin: 0em 0em 0em 0em;
564
+ margin: 0 0 0 0;
563
565
  }
564
566
  }
565
567
  @media only screen and (min-width: 1920px) {
566
568
  .ui.small.modal {
567
569
  width: 760px;
568
- margin: 0em 0em 0em 0em;
570
+ margin: 0 0 0 0;
569
571
  }
570
572
  }
571
573
 
@@ -576,31 +578,31 @@
576
578
  @media only screen and (max-width: 767px) {
577
579
  .ui.large.modal {
578
580
  width: 95%;
579
- margin: 0em 0em 0em 0em;
581
+ margin: 0 0 0 0;
580
582
  }
581
583
  }
582
584
  @media only screen and (min-width: 768px) {
583
585
  .ui.large.modal {
584
586
  width: 88%;
585
- margin: 0em 0em 0em 0em;
587
+ margin: 0 0 0 0;
586
588
  }
587
589
  }
588
590
  @media only screen and (min-width: 992px) {
589
591
  .ui.large.modal {
590
592
  width: 1020px;
591
- margin: 0em 0em 0em 0em;
593
+ margin: 0 0 0 0;
592
594
  }
593
595
  }
594
596
  @media only screen and (min-width: 1200px) {
595
597
  .ui.large.modal {
596
598
  width: 1080px;
597
- margin: 0em 0em 0em 0em;
599
+ margin: 0 0 0 0;
598
600
  }
599
601
  }
600
602
  @media only screen and (min-width: 1920px) {
601
603
  .ui.large.modal {
602
604
  width: 1140px;
603
- margin: 0em 0em 0em 0em;
605
+ margin: 0 0 0 0;
604
606
  }
605
607
  }
606
608
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Nag
2
+ * # Semantic UI 2.7.0 - Nag
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -17,20 +17,20 @@
17
17
  display: none;
18
18
  opacity: 0.95;
19
19
  position: relative;
20
- top: 0em;
21
- left: 0px;
20
+ top: 0;
21
+ left: 0;
22
22
  z-index: 999;
23
- min-height: 0em;
23
+ min-height: 0;
24
24
  width: 100%;
25
- margin: 0em;
25
+ margin: 0;
26
26
  padding: 0.75em 1em;
27
27
  background: #555555;
28
- -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
29
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
28
+ -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
29
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
30
30
  font-size: 1rem;
31
31
  text-align: center;
32
32
  color: rgba(0, 0, 0, 0.87);
33
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
33
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
34
34
  -webkit-transition: 0.2s background ease;
35
35
  transition: 0.2s background ease;
36
36
  }
@@ -39,7 +39,7 @@ a.ui.nag {
39
39
  }
40
40
  .ui.nag > .title {
41
41
  display: inline-block;
42
- margin: 0em 0.5em;
42
+ margin: 0 0.5em;
43
43
  color: #FFFFFF;
44
44
  }
45
45
  .ui.nag > .close.icon {
@@ -49,7 +49,7 @@ a.ui.nag {
49
49
  top: 50%;
50
50
  right: 1em;
51
51
  font-size: 1em;
52
- margin: -0.5em 0em 0em;
52
+ margin: -0.5em 0 0;
53
53
  color: #FFFFFF;
54
54
  -webkit-transition: opacity 0.2s ease;
55
55
  transition: opacity 0.2s ease;
@@ -99,9 +99,9 @@ a.ui.nag {
99
99
 
100
100
  .ui.bottom.nags,
101
101
  .ui.bottom.nag {
102
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
102
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
103
103
  top: auto;
104
- bottom: 0em;
104
+ bottom: 0;
105
105
  }
106
106
 
107
107
  /*--------------
@@ -126,13 +126,13 @@ a.ui.nag {
126
126
  *******************************/
127
127
 
128
128
  .ui.nags .nag {
129
- border-radius: 0em !important;
129
+ border-radius: 0 !important;
130
130
  }
131
131
  .ui.nags .nag:last-child {
132
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
132
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
133
133
  }
134
134
  .ui.bottom.nags .nag:last-child {
135
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
135
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
136
136
  }
137
137
 
138
138