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.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/semantic-ui/accordion.js +17 -13
  3. data/app/assets/javascripts/semantic-ui/api.js +25 -7
  4. data/app/assets/javascripts/semantic-ui/checkbox.js +124 -48
  5. data/app/assets/javascripts/semantic-ui/dropdown.js +193 -108
  6. data/app/assets/javascripts/semantic-ui/embed.js +1 -4
  7. data/app/assets/javascripts/semantic-ui/form.js +125 -12
  8. data/app/assets/javascripts/semantic-ui/modal.js +13 -13
  9. data/app/assets/javascripts/semantic-ui/nag.js +11 -1
  10. data/app/assets/javascripts/semantic-ui/popup.js +23 -10
  11. data/app/assets/javascripts/semantic-ui/search.js +83 -54
  12. data/app/assets/javascripts/semantic-ui/sticky.js +34 -32
  13. data/app/assets/javascripts/semantic-ui/tab.js +8 -7
  14. data/app/assets/javascripts/semantic-ui/transition.js +5 -5
  15. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +2 -2
  16. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +102 -31
  17. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +159 -10
  18. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +151 -60
  19. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +18 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +187 -97
  22. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +29 -5
  23. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +6 -3
  24. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  25. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -3
  26. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +23 -38
  27. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +69 -39
  29. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +423 -222
  30. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +16 -1
  31. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +5 -13
  34. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
  35. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +9 -6
  36. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
  38. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +7 -7
  40. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +26 -9
  42. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  45. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
  46. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
  48. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  49. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  53. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  54. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  55. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
  56. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  57. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
  58. data/app/assets/stylesheets/semantic-ui/views/_item.scss +7 -7
  59. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +1 -1
  60. data/lib/semantic/ui/sass/version.rb +2 -2
  61. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - List
2
+ * # Semantic UI 2.1.3 - List
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -207,6 +207,12 @@ ol.ui.list ol li,
207
207
  }
208
208
 
209
209
  /* Floated Content */
210
+ .ui[class*="left floated"].list {
211
+ float: left;
212
+ }
213
+ .ui[class*="right floated"].list {
214
+ float: right;
215
+ }
210
216
  .ui.list .list > .item [class*="left floated"],
211
217
  .ui.list > .item [class*="left floated"] {
212
218
  float: left;
@@ -627,6 +633,15 @@ ol.ui.inverted.list li:before,
627
633
  color: rgba(255, 255, 255, 0.7);
628
634
  }
629
635
 
636
+ /* Value */
637
+ .ui.ordered.list > .list > .item[data-value],
638
+ .ui.ordered.list > .item[data-value] {
639
+ content: attr(data-value);
640
+ }
641
+ ol.ui.list li[value]:before {
642
+ content: attr(value);
643
+ }
644
+
630
645
  /* Child Lists */
631
646
  ol.ui.list ol,
632
647
  .ui.ordered.list .list {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Loader
2
+ * # Semantic UI 2.1.3 - Loader
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Rail
2
+ * # Semantic UI 2.1.3 - Rail
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Reveal
2
+ * # Semantic UI 2.1.3 - Reveal
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -15,7 +15,7 @@
15
15
  *******************************/
16
16
 
17
17
  .ui.reveal {
18
- display: inline-block;
18
+ display: inherit;
19
19
  position: relative !important;
20
20
  font-size: 0em !important;
21
21
  }
@@ -55,6 +55,7 @@
55
55
  }
56
56
  .ui.slide.reveal > .content {
57
57
  display: block;
58
+ width: 100%;
58
59
  float: left;
59
60
  margin: 0em;
60
61
  -webkit-transition: -webkit-transform 0.5s ease 0.1s;
@@ -243,15 +244,7 @@
243
244
  States
244
245
  *******************************/
245
246
 
246
- .ui.disabled.reveal {
247
- opacity: 1 !important;
248
- }
249
- .ui.disabled.reveal > .content {
250
- -webkit-transition: none !important;
251
- transition: none !important;
252
- }
253
- .ui.disabled.active.reveal > .visible.content,
254
- .ui.disabled.reveal:hover > .visible.content {
247
+ .ui.disabled.reveal:hover > .visible.visible.content {
255
248
  position: static !important;
256
249
  display: block !important;
257
250
  opacity: 1 !important;
@@ -263,8 +256,7 @@
263
256
  -ms-transform: none !important;
264
257
  transform: none !important;
265
258
  }
266
- .ui.disabled.active.reveal > .hidden.content,
267
- .ui.disabled.reveal:hover > .hidden.content {
259
+ .ui.disabled.reveal:hover > .hidden.hidden.content {
268
260
  display: none !important;
269
261
  }
270
262
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Segment
2
+ * # Semantic UI 2.1.3 - Segment
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Step
2
+ * # Semantic UI 2.1.3 - Step
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -118,11 +118,6 @@
118
118
  border-radius: 0.28571429rem 0em 0em 0.28571429rem;
119
119
  }
120
120
 
121
- /* Only Step */
122
- .ui.steps .step:only-child {
123
- border-radius: 0.28571429rem;
124
- }
125
-
126
121
  /* Last Step */
127
122
  .ui.steps .step:last-child {
128
123
  border-radius: 0em 0.28571429rem 0.28571429rem 0em;
@@ -132,6 +127,11 @@
132
127
  margin-right: 0em;
133
128
  }
134
129
 
130
+ /* Only Step */
131
+ .ui.steps .step:only-child {
132
+ border-radius: 0.28571429rem;
133
+ }
134
+
135
135
 
136
136
  /*******************************
137
137
  Content
@@ -264,6 +264,9 @@
264
264
  border-bottom: none;
265
265
  border-radius: 0em 0em 0.28571429rem 0.28571429rem;
266
266
  }
267
+ .ui.vertical.steps .step:only-child {
268
+ border-radius: 0.28571429rem;
269
+ }
267
270
 
268
271
  /* Arrow */
269
272
  .ui.vertical.steps .step:after {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Reset
2
+ * # Semantic UI 2.1.3 - Reset
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Site
2
+ * # Semantic UI 2.1.3 - Site
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Accordion
2
+ * # Semantic UI 2.1.3 - Accordion
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Checkbox
2
+ * # Semantic UI 2.1.3 - Checkbox
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -155,8 +155,8 @@
155
155
 
156
156
  .ui.checkbox input:focus ~ .box:before,
157
157
  .ui.checkbox input:focus ~ label:before {
158
- background: #f9fafb;
159
- border-color: rgba(34, 36, 38, 0.35);
158
+ background: #ffffff;
159
+ border-color: #96c8da;
160
160
  }
161
161
  .ui.checkbox input:focus ~ .box:after,
162
162
  .ui.checkbox input:focus ~ label:after {
@@ -204,8 +204,8 @@
204
204
  .ui.checkbox input:indeterminate:focus ~ label:before,
205
205
  .ui.checkbox input:checked:focus ~ .box:before,
206
206
  .ui.checkbox input:checked:focus ~ label:before {
207
- background: #f9fafb;
208
- border-color: rgba(34, 36, 38, 0.5);
207
+ background: #ffffff;
208
+ border-color: #96c8da;
209
209
  }
210
210
  .ui.checkbox input:indeterminate:focus ~ .box:after,
211
211
  .ui.checkbox input:indeterminate:focus ~ label:after,
@@ -315,7 +315,7 @@
315
315
  /* Focus */
316
316
  .ui.radio.checkbox input:focus ~ .box:before,
317
317
  .ui.radio.checkbox input:focus ~ label:before {
318
- background-color: #f9fafb;
318
+ background-color: #ffffff;
319
319
  }
320
320
  .ui.radio.checkbox input:focus ~ .box:after,
321
321
  .ui.radio.checkbox input:focus ~ label:after {
@@ -341,7 +341,7 @@
341
341
  /* Active Focus */
342
342
  .ui.radio.checkbox input:focus:checked ~ .box:before,
343
343
  .ui.radio.checkbox input:focus:checked ~ label:before {
344
- background-color: #f9fafb;
344
+ background-color: #ffffff;
345
345
  }
346
346
  .ui.radio.checkbox input:focus:checked ~ .box:after,
347
347
  .ui.radio.checkbox input:focus:checked ~ label:after {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Dimmer
2
+ * # Semantic UI 2.1.3 - Dimmer
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Dropdown
2
+ * # Semantic UI 2.1.3 - Dropdown
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -78,6 +78,7 @@
78
78
  .ui.dropdown > .dropdown.icon {
79
79
  position: relative;
80
80
  width: auto;
81
+ font-size: 0.85714286em;
81
82
  margin: 0em 0em 0em 1em;
82
83
  }
83
84
  .ui.dropdown .menu > .item .dropdown.icon {
@@ -459,21 +460,21 @@ select.ui.dropdown {
459
460
 
460
461
  /* Active */
461
462
  .ui.selection.active.dropdown {
462
- border-color: rgba(34, 36, 38, 0.35);
463
+ border-color: #96c8da;
463
464
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
464
465
  }
465
466
  .ui.selection.active.dropdown .menu {
466
- border-color: rgba(34, 36, 38, 0.35);
467
+ border-color: #96c8da;
467
468
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
468
469
  }
469
470
 
470
471
  /* Focus */
471
472
  .ui.selection.dropdown:focus {
472
- border-color: rgba(34, 36, 38, 0.35);
473
+ border-color: #96c8da;
473
474
  box-shadow: none;
474
475
  }
475
476
  .ui.selection.dropdown:focus .menu {
476
- border-color: rgba(34, 36, 38, 0.35);
477
+ border-color: #96c8da;
477
478
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
478
479
  }
479
480
 
@@ -485,11 +486,11 @@ select.ui.dropdown {
485
486
 
486
487
  /* Visible Hover */
487
488
  .ui.selection.active.dropdown:hover {
488
- border-color: rgba(34, 36, 38, 0.35);
489
+ border-color: #96c8da;
489
490
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
490
491
  }
491
492
  .ui.selection.active.dropdown:hover .menu {
492
- border-color: rgba(34, 36, 38, 0.35);
493
+ border-color: #96c8da;
493
494
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
494
495
  }
495
496
 
@@ -621,7 +622,7 @@ select.ui.dropdown {
621
622
  -ms-user-select: none;
622
623
  user-select: none;
623
624
  display: inline-block;
624
- vertical-align: baseline;
625
+ vertical-align: top;
625
626
  white-space: normal;
626
627
  font-size: 1em;
627
628
  padding: 0.35714286em 0.71428571em;
@@ -1193,7 +1194,7 @@ select.ui.dropdown {
1193
1194
  transform: rotate(45deg);
1194
1195
  width: 0.5em;
1195
1196
  height: 0.5em;
1196
- box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.1);
1197
+ box-shadow: -1px -1px 0px 1px rgba(34, 36, 38, 0.15);
1197
1198
  background: #ffffff;
1198
1199
  z-index: 2;
1199
1200
  }
@@ -1323,6 +1324,22 @@ select.ui.dropdown {
1323
1324
  right: 1em;
1324
1325
  }
1325
1326
 
1327
+ /* Upward pointing */
1328
+ .ui.upward.pointing.dropdown > .menu,
1329
+ .ui.upward.top.pointing.dropdown > .menu {
1330
+ top: auto;
1331
+ bottom: 100%;
1332
+ margin: 0em 0em 0.71428571rem;
1333
+ border-radius: 0.28571429rem;
1334
+ }
1335
+ .ui.upward.pointing.dropdown > .menu:after,
1336
+ .ui.upward.top.pointing.dropdown > .menu:after {
1337
+ top: 100%;
1338
+ bottom: auto;
1339
+ box-shadow: 1px 1px 0px 1px rgba(34, 36, 38, 0.15);
1340
+ margin: -0.25em 0em 0em;
1341
+ }
1342
+
1326
1343
 
1327
1344
  /*******************************
1328
1345
  Theme Overrides
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Video
2
+ * # Semantic UI 2.1.3 - Video
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Modal
2
+ * # Semantic UI 2.1.3 - Modal
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Nag
2
+ * # Semantic UI 2.1.3 - Nag
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Popup
2
+ * # Semantic UI 2.1.3 - Popup
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Progress Bar
2
+ * # Semantic UI 2.1.3 - Progress Bar
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Rating
2
+ * # Semantic UI 2.1.3 - Rating
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Search
2
+ * # Semantic UI 2.1.3 - Search
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Shape
2
+ * # Semantic UI 2.1.3 - Shape
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Sidebar
2
+ * # Semantic UI 2.1.3 - Sidebar
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Sticky
2
+ * # Semantic UI 2.1.3 - Sticky
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Tab
2
+ * # Semantic UI 2.1.3 - Tab
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Transition
2
+ * # Semantic UI 2.1.3 - Transition
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Ad
2
+ * # Semantic UI 2.1.3 - Ad
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Item
2
+ * # Semantic UI 2.1.3 - Item
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Comment
2
+ * # Semantic UI 2.1.3 - Comment
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *