semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,7 +1,7 @@
1
- /*
2
- * # Semantic - Header
3
- * http://github.com/jlukic/semantic-ui/
4
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
5
  *
6
6
  * Copyright 2014 Contributors
7
7
  * Released under the MIT license
@@ -9,124 +9,136 @@
9
9
  *
10
10
  */
11
11
 
12
+
13
+
12
14
  /*******************************
13
15
  Header
14
16
  *******************************/
15
17
 
16
- /* Standard */
17
18
 
19
+ /* Standard */
18
20
  .ui.header {
19
21
  border: none;
20
- margin: 1em 0em 1rem;
21
- padding: 0em;
22
- font-size: 1.33em;
22
+ margin: -webkit-calc(2rem - 0.165em ) 0em 1rem;
23
+ margin: calc(2rem - 0.165em ) 0em 1rem;
24
+ padding: 0em 0em;
25
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
23
26
  font-weight: bold;
24
- line-height: 1.33;
27
+ line-height: 1.33em;
28
+ text-transform: none;
29
+ color: rgba(0, 0, 0, 0.8);
25
30
  }
26
-
27
31
  .ui.header .sub.header {
28
- font-size: 1rem;
32
+ font-size: 1.0714rem;
29
33
  font-weight: normal;
30
34
  margin: 0em;
31
35
  padding: 0em;
32
- line-height: 1.2;
36
+ line-height: 1.2em;
33
37
  color: rgba(0, 0, 0, 0.5);
34
38
  }
39
+ .ui.header:first-child {
40
+ margin-top: -0.165em;
41
+ }
42
+ .ui.header:last-child {
43
+ margin-bottom: 0em;
44
+ }
35
45
 
36
- .ui.header .icon {
46
+ /*--------------
47
+ Icon
48
+ ---------------*/
49
+
50
+ .ui.header > .icon {
37
51
  display: table-cell;
52
+ opacity: 1;
53
+ font-size: 1.5em;
54
+ padding-top: 0.165em;
38
55
  vertical-align: middle;
39
- padding-right: 0.5em;
56
+ padding-right: 0.5rem;
40
57
  }
41
58
 
59
+ /* Only One */
42
60
  .ui.header .icon:only-child {
43
61
  display: inline-block;
62
+ padding: 0em;
63
+ margin-right: 0.5rem;
44
64
  vertical-align: baseline;
45
65
  }
46
66
 
67
+ /*--------------
68
+ Content
69
+ ---------------*/
70
+
47
71
  .ui.header .content {
48
72
  display: inline-block;
49
73
  vertical-align: top;
50
74
  }
51
-
52
- .ui.header .icon + .content {
53
- padding-left: 0.5em;
75
+ .ui.header > .icon + .content {
76
+ padding-left: 0.5rem;
54
77
  display: table-cell;
78
+ vertical-align: middle;
55
79
  }
56
80
 
57
- /* Positioning */
81
+ /*--------------
82
+ Content Heading
83
+ ---------------*/
58
84
 
59
- .ui.header:first-child {
60
- margin-top: 0em;
85
+ .ui.tiny.header {
86
+ font-size: 1em;
87
+ }
88
+ .ui.small.header {
89
+ font-size: 1.071em;
90
+ }
91
+ .ui.medium.header {
92
+ font-size: 1.285em;
93
+ }
94
+ .ui.large.header {
95
+ font-size: 1.714em;
96
+ }
97
+ .ui.huge.header {
98
+ min-height: 1em;
99
+ font-size: 2em;
61
100
  }
62
101
 
63
- .ui.header:last-child {
64
- margin-bottom: 0em;
102
+ /*--------------
103
+ Loose Coupling
104
+ ---------------*/
105
+
106
+ .ui.header .ui.label {
107
+ margin: 0em 0em 0em 0.5rem;
108
+ vertical-align: middle;
65
109
  }
66
110
 
111
+ /* Positioning */
67
112
  .ui.header + p {
68
113
  margin-top: 0em;
69
114
  }
70
115
 
116
+
117
+ /*******************************
118
+ Types
119
+ *******************************/
120
+
121
+
71
122
  /*--------------
72
- Page Heading
123
+ Page
73
124
  ---------------*/
74
125
 
75
126
  h1.ui.header {
76
- min-height: 1rem;
77
- line-height: 1.33;
78
127
  font-size: 2rem;
79
128
  }
80
-
81
129
  h2.ui.header {
82
- line-height: 1.33;
83
- font-size: 1.75rem;
130
+ font-size: 1.714rem;
84
131
  }
85
-
86
132
  h3.ui.header {
87
- line-height: 1.33;
88
- font-size: 1.33rem;
133
+ font-size: 1.28rem;
89
134
  }
90
-
91
135
  h4.ui.header {
92
- line-height: 1.33;
93
- font-size: 1.1rem;
136
+ font-size: 1.071rem;
94
137
  }
95
-
96
138
  h5.ui.header {
97
- line-height: 1.2;
98
139
  font-size: 1rem;
99
140
  }
100
141
 
101
- /*--------------
102
- Content Heading
103
- ---------------*/
104
-
105
- .ui.huge.header {
106
- min-height: 1em;
107
- font-size: 2em;
108
- }
109
-
110
- .ui.large.header {
111
- font-size: 1.75em;
112
- }
113
-
114
- .ui.medium.header {
115
- font-size: 1.33em;
116
- }
117
-
118
- .ui.small.header {
119
- font-size: 1.1em;
120
- }
121
-
122
- .ui.tiny.header {
123
- font-size: 1em;
124
- }
125
-
126
- /*******************************
127
- Types
128
- *******************************/
129
-
130
142
  /*-------------------
131
143
  Icon
132
144
  --------------------*/
@@ -134,97 +146,145 @@ h5.ui.header {
134
146
  .ui.icon.header {
135
147
  display: inline-block;
136
148
  text-align: center;
149
+ margin: 2rem 0em 1rem;
150
+ }
151
+ .ui.icon.header:after {
152
+ content: '';
153
+ display: block;
154
+ height: 0px;
155
+ clear: both;
156
+ visibility: hidden;
157
+ }
158
+ .ui.icon.header:first-child {
159
+ margin-top: 0em;
137
160
  }
138
-
139
161
  .ui.icon.header .icon {
140
162
  float: none;
141
163
  display: block;
142
- font-size: 3em;
143
- margin: 0em auto 0.2em;
164
+ width: auto;
165
+ height: auto;
144
166
  padding: 0em;
167
+ font-size: 3em;
168
+ margin: 0em auto 0.25rem;
169
+ opacity: 1;
145
170
  }
146
-
147
171
  .ui.icon.header .content {
148
172
  display: block;
149
173
  }
150
-
151
- .ui.icon.header .circular.icon,
174
+ .ui.icon.header .circular.icon {
175
+ font-size: 2em;
176
+ }
152
177
  .ui.icon.header .square.icon {
153
178
  font-size: 2em;
154
179
  }
155
-
156
180
  .ui.block.icon.header .icon {
157
181
  margin-bottom: 0em;
158
182
  }
159
-
160
183
  .ui.icon.header.aligned {
161
184
  margin-left: auto;
162
185
  margin-right: auto;
163
186
  display: block;
164
187
  }
165
188
 
189
+
166
190
  /*******************************
167
191
  States
168
192
  *******************************/
169
193
 
170
194
  .ui.disabled.header {
171
- opacity: 0.5;
195
+ opacity: 0.3;
172
196
  }
173
197
 
198
+
174
199
  /*******************************
175
200
  Variations
176
201
  *******************************/
177
202
 
203
+
178
204
  /*-------------------
179
205
  Colors
180
206
  --------------------*/
181
207
 
208
+ .ui.black.header {
209
+ color: #1b1c1d !important;
210
+ }
211
+ a.ui.black.header:hover {
212
+ color: #1b1c1d !important;
213
+ }
182
214
  .ui.blue.header {
183
- color: #6ECFF5 !important;
215
+ color: #3b83c0 !important;
184
216
  }
185
-
186
- .ui.black.header {
187
- color: #5C6166 !important;
217
+ a.ui.blue.header:hover {
218
+ color: #458ac6 !important;
188
219
  }
189
-
190
220
  .ui.green.header {
191
- color: #A1CF64 !important;
221
+ color: #5bbd72 !important;
192
222
  }
193
-
194
- .ui.red.header {
195
- color: #D95C5C !important;
223
+ a.ui.green.header:hover {
224
+ color: #66c17b !important;
225
+ }
226
+ .ui.orange.header {
227
+ color: #e07b53 !important;
228
+ }
229
+ a.ui.orange.header:hover {
230
+ color: #e28560 !important;
231
+ }
232
+ .ui.pink.header {
233
+ color: #d9499a !important;
234
+ }
235
+ a.ui.pink.header:hover {
236
+ color: #dc56a1 !important;
196
237
  }
197
-
198
238
  .ui.purple.header {
199
- color: #564F8A !important;
239
+ color: #564f8a !important;
240
+ }
241
+ a.ui.purple.header:hover {
242
+ color: #5c5594 !important;
243
+ }
244
+ .ui.red.header {
245
+ color: #d95c5c !important;
246
+ }
247
+ a.ui.red.header:hover {
248
+ color: #dc6868 !important;
200
249
  }
201
-
202
250
  .ui.teal.header {
203
- color: #00B5AD !important;
251
+ color: #00b5ad !important;
204
252
  }
205
-
206
- .ui.blue.dividing.header {
207
- border-bottom: 3px solid #6ECFF5;
253
+ a.ui.teal.header:hover {
254
+ color: #00c4bc !important;
255
+ }
256
+ .ui.yellow.header {
257
+ color: #f2c61f !important;
258
+ }
259
+ a.ui.yellow.header:hover {
260
+ color: #f3ca2d !important;
208
261
  }
209
-
210
262
  .ui.black.dividing.header {
211
- border-bottom: 3px solid #5C6166;
263
+ border-bottom: 2px solid #1b1c1d;
264
+ }
265
+ .ui.blue.dividing.header {
266
+ border-bottom: 2px solid #3b83c0;
212
267
  }
213
-
214
268
  .ui.green.dividing.header {
215
- border-bottom: 3px solid #A1CF64;
269
+ border-bottom: 2px solid #5bbd72;
216
270
  }
217
-
218
- .ui.red.dividing.header {
219
- border-bottom: 3px solid #D95C5C;
271
+ .ui.orange.dividing.header {
272
+ border-bottom: 2px solid #e07b53;
273
+ }
274
+ .ui.pink.dividing.header {
275
+ border-bottom: 2px solid #d9499a;
220
276
  }
221
-
222
277
  .ui.purple.dividing.header {
223
- border-bottom: 3px solid #564F8A;
278
+ border-bottom: 2px solid #564f8a;
279
+ }
280
+ .ui.red.dividing.header {
281
+ border-bottom: 2px solid #d95c5c;
224
282
  }
225
-
226
283
  .ui.teal.dividing.header {
227
- border-bottom: 3px solid #00B5AD;
284
+ border-bottom: 2px solid #00b5ad;
285
+ }
286
+ .ui.yellow.dividing.header {
287
+ border-bottom: 2px solid #f2c61f;
228
288
  }
229
289
 
230
290
  /*-------------------
@@ -232,47 +292,80 @@ h5.ui.header {
232
292
  --------------------*/
233
293
 
234
294
  .ui.inverted.header {
235
- color: #FFFFFF;
295
+ color: #ffffff;
236
296
  }
237
-
238
297
  .ui.inverted.header .sub.header {
239
298
  color: rgba(255, 255, 255, 0.85);
240
299
  }
300
+ .ui.inverted.attached.header {
301
+ background: #333333 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
302
+ background: #333333 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
303
+ box-shadow: none;
304
+ }
305
+ .ui.inverted.block.header {
306
+ background: #333333 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
307
+ background: #333333 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
308
+ box-shadow: none;
309
+ }
241
310
 
242
311
  /*-------------------
243
312
  Inverted Colors
244
313
  --------------------*/
245
314
 
246
315
  .ui.inverted.black.header {
247
- background-color: #5C6166 !important;
248
- color: #FFFFFF !important;
316
+ color: #aaaaaa !important;
317
+ }
318
+ a.ui.inverted.black.header:hover {
319
+ color: #b2b2b2 !important;
249
320
  }
250
-
251
321
  .ui.inverted.blue.header {
252
- background-color: #6ECFF5 !important;
253
- color: #FFFFFF !important;
322
+ color: #54c8ff !important;
323
+ }
324
+ a.ui.inverted.blue.header:hover {
325
+ color: #63cdff !important;
254
326
  }
255
-
256
327
  .ui.inverted.green.header {
257
- background-color: #A1CF64 !important;
258
- color: #FFFFFF !important;
328
+ color: #2ecc40 !important;
259
329
  }
260
-
261
- .ui.inverted.red.header {
262
- background-color: #D95C5C !important;
263
- color: #FFFFFF !important;
330
+ a.ui.inverted.green.header:hover {
331
+ color: #37d249 !important;
332
+ }
333
+ .ui.inverted.orange.header {
334
+ color: #ff851b !important;
335
+ }
336
+ a.ui.inverted.orange.header:hover {
337
+ color: #ff8d2a !important;
338
+ }
339
+ .ui.inverted.pink.header {
340
+ color: #ff8edf !important;
341
+ }
342
+ a.ui.inverted.pink.header:hover {
343
+ color: #ff9de3 !important;
264
344
  }
265
-
266
345
  .ui.inverted.purple.header {
267
- background-color: #564F8A !important;
268
- color: #FFFFFF !important;
346
+ color: #cdc6ff !important;
347
+ }
348
+ a.ui.inverted.purple.header:hover {
349
+ color: #dad5ff !important;
350
+ }
351
+ .ui.inverted.red.header {
352
+ color: #ff695e !important;
353
+ }
354
+ a.ui.inverted.red.header:hover {
355
+ color: #ff776d !important;
269
356
  }
270
-
271
357
  .ui.inverted.teal.header {
272
- background-color: #00B5AD !important;
273
- color: #FFFFFF !important;
358
+ color: #6dffff !important;
359
+ }
360
+ a.ui.inverted.teal.header:hover {
361
+ color: #7cffff !important;
362
+ }
363
+ .ui.inverted.yellow.header {
364
+ color: #ffe21f !important;
365
+ }
366
+ a.ui.inverted.yellow.header:hover {
367
+ color: #ffe42e !important;
274
368
  }
275
-
276
369
  .ui.inverted.block.header {
277
370
  border-bottom: none;
278
371
  }
@@ -284,19 +377,16 @@ h5.ui.header {
284
377
  .ui.left.aligned.header {
285
378
  text-align: left;
286
379
  }
287
-
288
380
  .ui.right.aligned.header {
289
381
  text-align: right;
290
382
  }
291
-
383
+ .ui.centered.header,
292
384
  .ui.center.aligned.header {
293
385
  text-align: center;
294
386
  }
295
-
296
387
  .ui.justified.header {
297
388
  text-align: justify;
298
389
  }
299
-
300
390
  .ui.justified.header:after {
301
391
  display: inline-block;
302
392
  content: '';
@@ -308,13 +398,12 @@ h5.ui.header {
308
398
  --------------------*/
309
399
 
310
400
  .ui.floated.header,
311
- .ui.left.floated.header {
401
+ .ui[class*="left floated"].header {
312
402
  float: left;
313
403
  margin-top: 0em;
314
404
  margin-right: 0.5em;
315
405
  }
316
-
317
- .ui.right.floated.header {
406
+ .ui[class*="right floated"].header {
318
407
  float: right;
319
408
  margin-top: 0em;
320
409
  margin-left: 0.5em;
@@ -333,16 +422,17 @@ h5.ui.header {
333
422
  --------------------*/
334
423
 
335
424
  .ui.dividing.header {
336
- padding-bottom: 0.2rem;
425
+ padding-bottom: 0.25rem;
337
426
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
338
427
  }
339
-
340
428
  .ui.dividing.header .sub.header {
341
- padding-bottom: 0.5em;
429
+ padding-bottom: 0.25rem;
342
430
  }
343
-
344
431
  .ui.dividing.header .icon {
345
- margin-bottom: 0.2em;
432
+ margin-bottom: 0em;
433
+ }
434
+ .ui.inverted.dividing.header {
435
+ border-bottom-color: rgba(255, 255, 255, 0.2);
346
436
  }
347
437
 
348
438
  /*-------------------
@@ -350,8 +440,26 @@ h5.ui.header {
350
440
  --------------------*/
351
441
 
352
442
  .ui.block.header {
353
- background-color: rgba(0, 0, 0, 0.05);
354
- padding: 0.5em 1em;
443
+ background: #f0f0f0;
444
+ padding: 0.75rem 1rem;
445
+ box-shadow: none;
446
+ border: 1px solid #d4d4d5;
447
+ border-radius: 0.3125rem;
448
+ }
449
+ .ui.tiny.block.header {
450
+ font-size: 1em;
451
+ }
452
+ .ui.small.block.header {
453
+ font-size: 1.071em;
454
+ }
455
+ .ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
456
+ font-size: 1.285em;
457
+ }
458
+ .ui.large.block.header {
459
+ font-size: 1.714em;
460
+ }
461
+ .ui.huge.block.header {
462
+ font-size: 2em;
355
463
  }
356
464
 
357
465
  /*-------------------
@@ -359,18 +467,67 @@ h5.ui.header {
359
467
  --------------------*/
360
468
 
361
469
  .ui.attached.header {
362
- background-color: #E0E0E0;
363
- padding: 0.5em 1rem;
364
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
365
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
470
+ background: #ffffff;
471
+ padding: 0.75rem 1rem;
472
+ margin-left: -1px;
473
+ margin-right: -1px;
474
+ box-shadow: none;
475
+ border: 1px solid #d4d4d5;
476
+ }
477
+ .ui.attached.block.header {
478
+ background: #f0f0f0;
479
+ }
480
+ .ui.attached:not(.top):not(.bottom).header {
481
+ margin-top: 0em;
482
+ margin-bottom: 0em;
483
+ border-top: none;
484
+ border-bottom: none;
485
+ border-radius: 0em;
366
486
  }
367
-
368
487
  .ui.top.attached.header {
369
488
  margin-bottom: 0em;
370
- border-radius: 0.3125em 0.3125em 0em 0em;
489
+ border-bottom: none;
490
+ border-radius: 0.3125rem 0.3125rem 0em 0em;
371
491
  }
372
-
373
492
  .ui.bottom.attached.header {
374
493
  margin-top: 0em;
375
- border-radius: 0em 0em 0.3125em 0.3125em;
376
- }
494
+ border-top: none;
495
+ border-radius: 0em 0em 0.3125rem 0.3125rem;
496
+ }
497
+
498
+ /* Attached Sizes */
499
+ .ui.tiny.attached.header {
500
+ font-size: 0.8571em;
501
+ }
502
+ .ui.small.attached.header {
503
+ font-size: 0.9285em;
504
+ }
505
+ .ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
506
+ font-size: 1em;
507
+ }
508
+ .ui.large.attached.header {
509
+ font-size: 1.0714em;
510
+ }
511
+ .ui.huge.attached.header {
512
+ font-size: 1.1428em;
513
+ }
514
+
515
+ /*-------------------
516
+ Sizing
517
+ --------------------*/
518
+
519
+ .ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
520
+ font-size: 1.285em;
521
+ }
522
+
523
+
524
+ /*******************************
525
+ Theme Overrides
526
+ *******************************/
527
+
528
+
529
+
530
+ /*******************************
531
+ Site Overrides
532
+ *******************************/
533
+