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 - Table
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,195 +9,291 @@
9
9
  *
10
10
  */
11
11
 
12
+
13
+
12
14
  /*******************************
13
15
  Table
14
16
  *******************************/
15
17
 
16
- /* Prototype */
17
18
 
19
+ /* Prototype */
18
20
  .ui.table {
19
21
  width: 100%;
20
- border-collapse: collapse;
22
+ background: #ffffff;
23
+ margin: 1em 0em;
24
+ border: 1px solid #d0d0d0;
25
+ box-shadow: none;
26
+ border-radius: 0.25rem;
27
+ color: rgba(0, 0, 0, 0.8);
28
+ border-collapse: separate;
29
+ border-spacing: 0px;
30
+ }
31
+ .ui.table:first-child {
32
+ margin-top: 0em;
33
+ }
34
+ .ui.table:last-child {
35
+ margin-bottom: 0em;
21
36
  }
22
37
 
23
- /* Table Content */
24
38
 
39
+ /*******************************
40
+ Parts
41
+ *******************************/
42
+
43
+
44
+ /* Table Content */
25
45
  .ui.table th,
26
- .ui.table tr,
27
46
  .ui.table td {
28
- border-collapse: collapse;
29
- -webkit-box-sizing: border-box;
30
- -moz-box-sizing: border-box;
31
- -ms-box-sizing: border-box;
32
- box-sizing: border-box;
33
- -webkit-transition: all 0.1s ease-out;
34
- transition: all 0.1s ease-out;
47
+ -webkit-transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
48
+ transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
35
49
  }
36
50
 
37
51
  /* Headers */
38
-
39
52
  .ui.table thead {
40
- border-bottom: 1px solid rgba(0, 0, 0, 0.03);
53
+ box-shadow: none;
41
54
  }
42
-
43
- .ui.table tfoot th {
44
- background-color: rgba(0, 0, 0, 0.03);
45
- }
46
-
47
- .ui.table th {
55
+ .ui.table thead th {
48
56
  cursor: auto;
49
- background-color: rgba(0, 0, 0, 0.05);
57
+ background: #f0f0f0;
50
58
  text-align: left;
51
59
  color: rgba(0, 0, 0, 0.8);
52
- padding: 0.5em 0.7em;
60
+ padding: 0.7em 0.8em;
53
61
  vertical-align: middle;
62
+ font-style: none;
63
+ font-weight: bold;
64
+ text-transform: none;
65
+ border-bottom: 1px solid #d4d4d5;
66
+ border-left: none;
54
67
  }
55
-
56
- .ui.table thead th:first-child {
57
- border-radius: 5px 0px 0px 0px;
58
- }
59
-
60
- .ui.table thead th:last-child {
61
- border-radius: 0px 5px 0px 0px;
68
+ .ui.table thead tr > th:first-child {
69
+ border-left: none;
62
70
  }
63
-
64
- .ui.table tfoot th:first-child {
65
- border-radius: 0px 0px 0px 5px;
71
+ .ui.table thead tr:first-child > th:first-child {
72
+ border-radius: 0.25rem 0em 0em 0em;
66
73
  }
67
-
68
- .ui.table tfoot th:last-child {
69
- border-radius: 0px 0px 5px 0px;
74
+ .ui.table thead tr:first-child > th:last-child {
75
+ border-radius: 0em 0.25rem 0em 0em;
70
76
  }
71
-
72
- .ui.table tfoot th:only-child {
73
- border-radius: 0px 0px 5px 5px;
74
- }
75
-
76
- /* Table Cells */
77
-
78
- .ui.table td {
79
- padding: 0.40em 0.7em;
80
- vertical-align: middle;
77
+ .ui.table thead tr:first-child > th:only-child {
78
+ border-radius: 0.25rem 0.25rem 0em 0em;
81
79
  }
82
80
 
83
81
  /* Footer */
84
-
85
82
  .ui.table tfoot {
86
- border-top: 1px solid rgba(0, 0, 0, 0.03);
83
+ box-shadow: none;
87
84
  }
88
-
89
85
  .ui.table tfoot th {
86
+ cursor: auto;
87
+ border-top: 1px solid #d4d4d5;
88
+ background: #ffffff;
89
+ text-align: left;
90
+ color: rgba(0, 0, 0, 0.8);
91
+ padding: 0.7em 0.8em;
92
+ vertical-align: middle;
93
+ font-style: normal;
90
94
  font-weight: normal;
91
- font-style: italic;
95
+ text-transform: none;
96
+ }
97
+ .ui.table tfoot tr > th:first-child {
98
+ border-left: none;
99
+ }
100
+ .ui.table tfoot tr:first-child > th:first-child {
101
+ border-radius: 0em 0em 0em 0.25rem;
102
+ }
103
+ .ui.table tfoot tr:first-child > th:last-child {
104
+ border-radius: 0em 0em 0.25rem 0em;
105
+ }
106
+ .ui.table tfoot tr:first-child > th:only-child {
107
+ border-radius: 0em 0em 0.25rem 0.25rem;
92
108
  }
93
109
 
94
- /* Table Striping */
110
+ /* Table Row */
111
+ .ui.table tr td {
112
+ border-top: 1px solid #d4d4d5;
113
+ }
114
+ .ui.table tr:first-child td {
115
+ border-top: none;
116
+ }
95
117
 
96
- .ui.table tbody tr:nth-child(2n) {
97
- background-color: rgba(0, 0, 50, 0.02);
118
+ /* Table Cells */
119
+ .ui.table td {
120
+ padding: 0.7em 0.8em;
121
+ text-align: left;
122
+ vertical-align: middle;
98
123
  }
99
124
 
100
125
  /* Icons */
101
-
102
126
  .ui.table > .icon {
103
127
  vertical-align: baseline;
104
128
  }
105
-
106
129
  .ui.table > .icon:only-child {
107
130
  margin: 0em;
108
131
  }
109
132
 
110
133
  /* Table Segment */
111
-
134
+ .ui.table.segment {
135
+ padding: 0em;
136
+ }
112
137
  .ui.table.segment:after {
113
138
  display: none;
114
139
  }
115
-
116
140
  .ui.table.segment.stacked:after {
117
141
  display: block;
118
142
  }
119
143
 
120
144
  /* Responsive */
121
-
122
- @media only screen and (max-width : 768px) {
123
- .ui.table {
124
- display: block;
125
- padding: 0em;
145
+ @media only screen and (max-width: 767px) {
146
+ .ui.table:not(.unstackable),
147
+ .ui.table:not(.unstackable) tbody,
148
+ .ui.table:not(.unstackable) tr,
149
+ .ui.table:not(.unstackable) tr > th,
150
+ .ui.table:not(.unstackable) tr > td {
151
+ width: 100% !important;
152
+ display: block !important;
126
153
  }
127
-
128
- .ui.table thead,
129
- .ui.table tfoot {
130
- display: none;
154
+ .ui.table:not(.unstackable) {
155
+ padding: 0em;
131
156
  }
132
-
133
- .ui.table tbody {
157
+ .ui.table:not(.unstackable) thead {
134
158
  display: block;
135
159
  }
136
-
137
- .ui.table tr {
160
+ .ui.table:not(.unstackable) tfoot {
138
161
  display: block;
139
162
  }
140
-
141
- .ui.table tr > td {
142
- width: 100% !important;
143
- display: block;
163
+ .ui.table:not(.unstackable) tr > th,
164
+ .ui.table:not(.unstackable) tr > td {
165
+ background: none;
144
166
  border: none !important;
145
167
  padding: 0.25em 0.75em;
146
- -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) !important;
147
- box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.05) !important;
168
+ box-shadow: none;
148
169
  }
149
-
150
- .ui.table td:first-child {
170
+ .ui.table:not(.unstackable) th:first-child,
171
+ .ui.table:not(.unstackable) td:first-child {
151
172
  font-weight: bold;
152
173
  padding-top: 1em;
153
174
  }
154
-
155
- .ui.table td:last-child {
156
- -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
157
- box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
175
+ .ui.table:not(.unstackable) th:last-child,
176
+ .ui.table:not(.unstackable) td:last-child {
177
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
158
178
  padding-bottom: 1em;
159
179
  }
160
-
161
- /* Clear BG Colors */
162
-
163
- .ui.table tr > td.warning,
164
- .ui.table tr > td.error,
165
- .ui.table tr > td.active,
166
- .ui.table tr > td.positive,
167
- .ui.table tr > td.negative {
180
+
181
+ /* Clear BG Colors */
182
+ .ui.table:not(.unstackable) tr > td.warning,
183
+ .ui.table:not(.unstackable) tr > td.error,
184
+ .ui.table:not(.unstackable) tr > td.active,
185
+ .ui.table:not(.unstackable) tr > td.positive,
186
+ .ui.table:not(.unstackable) tr > td.negative {
168
187
  background-color: transparent !important;
169
188
  }
189
+
190
+ /* Definition Table */
191
+ .ui.definition.table:not(.unstackable) thead th:first-child {
192
+ box-shadow: none !important;
193
+ }
194
+ .ui.definition.table:not(.unstackable) tr td:first-child {
195
+ padding-bottom: 1em;
196
+ }
197
+ .ui.definition.table:not(.unstackable) tr td:nth-child(n+2) {
198
+ padding-top: 1em;
199
+ }
170
200
  }
171
201
 
202
+
172
203
  /*******************************
173
- States
204
+ Coupling
174
205
  *******************************/
175
206
 
207
+
208
+ /* UI Image */
209
+ .ui.table th .image,
210
+ .ui.table th .image img,
211
+ .ui.table td .image,
212
+ .ui.table td .image img {
213
+ max-width: none;
214
+ }
215
+
216
+
217
+ /*******************************
218
+ Types
219
+ *******************************/
220
+
221
+
222
+ /*--------------
223
+ Complex
224
+ ---------------*/
225
+
226
+ .ui.structured.table {
227
+ border-collapse: collapse;
228
+ }
229
+ .ui.structured.table thead th {
230
+ border-left: none;
231
+ border-right: none;
232
+ }
233
+ .ui.structured.sortable.table thead th {
234
+ border-left: 1px solid #d0d0d0;
235
+ border-right: 1px solid #d0d0d0;
236
+ }
237
+ .ui.structured.basic.table th {
238
+ border-left: none;
239
+ border-right: none;
240
+ }
241
+ .ui.structured.celled.table tr th,
242
+ .ui.structured.celled.table tr td {
243
+ border-left: 1px solid #d4d4d5;
244
+ border-right: 1px solid #d4d4d5;
245
+ }
246
+
176
247
  /*--------------
177
- Hover
248
+ Definition
178
249
  ---------------*/
179
250
 
180
- /* Sortable */
251
+ .ui.definition.table thead:not(.full-width) th:first-child {
252
+ pointer-events: none;
253
+ background: transparent;
254
+ font-weight: normal;
255
+ color: rgba(0, 0, 0, 0.4);
256
+ box-shadow: -1px -1px 0px 1px #ffffff;
257
+ }
258
+ .ui.definition.table tfoot:not(.full-width) th:first-child {
259
+ pointer-events: none;
260
+ background: transparent;
261
+ font-weight: rgba(0, 0, 0, 0.4);
262
+ color: normal;
263
+ box-shadow: 1px 1px 0px 1px #ffffff;
264
+ }
181
265
 
182
- .ui.sortable.table th.disabled:hover {
183
- cursor: auto;
184
- text-align: left;
266
+ /* Remove Border */
267
+ .ui.celled.definition.table thead:not(.full-width) th:first-child {
268
+ box-shadow: 0px -1px 0px 1px #ffffff;
269
+ }
270
+ .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
271
+ box-shadow: 0px 1px 0px 1px #ffffff;
272
+ }
273
+
274
+ /* Highlight Defining Column */
275
+ .ui.definition.table tr td:first-child {
276
+ background: rgba(0, 0, 0, 0.03);
185
277
  font-weight: bold;
186
- color: #333333;
187
278
  color: rgba(0, 0, 0, 0.8);
188
279
  }
189
280
 
190
- .ui.sortable.table thead th:hover {
191
- background-color: rgba(0, 0, 0, 0.13);
192
- color: rgba(0, 0, 0, 0.8);
281
+ /* Fix 2nd Column */
282
+ .ui.definition.table thead:not(.full-width) th:nth-child(2) {
283
+ border-left: 1px solid #d0d0d0;
284
+ }
285
+ .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
286
+ border-left: 1px solid #d0d0d0;
287
+ }
288
+ .ui.definition.table td:nth-child(2) {
289
+ border-left: 1px solid #d0d0d0;
193
290
  }
194
291
 
195
- /* Inverted Sortable */
196
292
 
197
- .ui.inverted.sortable.table thead th:hover {
198
- background-color: rgba(255, 255, 255, 0.13);
199
- color: rgba(255, 255, 255, 1);
200
- }
293
+ /*******************************
294
+ States
295
+ *******************************/
296
+
201
297
 
202
298
  /*--------------
203
299
  Positive
@@ -205,23 +301,17 @@
205
301
 
206
302
  .ui.table tr.positive,
207
303
  .ui.table td.positive {
208
- -webkit-box-shadow: 2px 0px 0px #119000 inset;
209
- box-shadow: 2px 0px 0px #119000 inset;
304
+ box-shadow: 0px 0px 0px #b7caa7 inset;
210
305
  }
211
-
212
306
  .ui.table tr.positive td,
213
307
  .ui.table td.positive {
214
- background-color: #F2F8F0 !important;
215
- color: #119000 !important;
308
+ background: #eeffe7 !important;
309
+ color: #3c763d !important;
216
310
  }
217
-
218
311
  .ui.celled.table tr.positive:hover td,
219
- .ui.celled.table tr:hover td.positive,
220
- .ui.table tr.positive:hover td,
221
- .ui.table td:hover.positive,
222
- .ui.table th:hover.positive {
223
- background-color: #ECF5E9 !important;
224
- color: #119000 !important;
312
+ .ui.celled.table tr:hover td.positive {
313
+ background: #e3ffd8 !important;
314
+ color: #376c38 !important;
225
315
  }
226
316
 
227
317
  /*--------------
@@ -230,23 +320,17 @@
230
320
 
231
321
  .ui.table tr.negative,
232
322
  .ui.table td.negative {
233
- -webkit-box-shadow: 2px 0px 0px #CD2929 inset;
234
- box-shadow: 2px 0px 0px #CD2929 inset;
323
+ box-shadow: 0px 0px 0px #dbb1b1 inset;
235
324
  }
236
-
237
325
  .ui.table tr.negative td,
238
326
  .ui.table td.negative {
239
- background-color: #F9F4F4;
240
- color: #CD2929 !important;
327
+ background: #fff0f0 !important;
328
+ color: #cd2929 !important;
241
329
  }
242
-
243
330
  .ui.celled.table tr.negative:hover td,
244
- .ui.celled.table tr:hover td.negative,
245
- .ui.table tr.negative:hover td,
246
- .ui.table td:hover.negative,
247
- .ui.table th:hover.negative {
248
- background-color: #F2E8E8;
249
- color: #CD2929;
331
+ .ui.celled.table tr:hover td.negative {
332
+ background: #ffe1e1 !important;
333
+ color: #c02626 !important;
250
334
  }
251
335
 
252
336
  /*--------------
@@ -255,24 +339,17 @@
255
339
 
256
340
  .ui.table tr.error,
257
341
  .ui.table td.error {
258
- -webkit-box-shadow: 2px 0px 0px #CD2929 inset;
259
- box-shadow: 2px 0px 0px #CD2929 inset;
342
+ box-shadow: 0px 0px 0px #dbb1b1 inset;
260
343
  }
261
-
262
344
  .ui.table tr.error td,
263
- .ui.table td.error,
264
- .ui.table th.error {
265
- background-color: #F9F4F4;
266
- color: #CD2929;
345
+ .ui.table td.error {
346
+ background: #fff0f0 !important;
347
+ color: #cd2929 !important;
267
348
  }
268
-
269
349
  .ui.celled.table tr.error:hover td,
270
- .ui.celled.table tr:hover td.error,
271
- .ui.table tr.error:hover td,
272
- .ui.table td:hover.error,
273
- .ui.table th:hover.error {
274
- background-color: #F2E8E8;
275
- color: #CD2929;
350
+ .ui.celled.table tr:hover td.error {
351
+ background: #ffe1e1 !important;
352
+ color: #c02626 !important;
276
353
  }
277
354
 
278
355
  /*--------------
@@ -281,24 +358,17 @@
281
358
 
282
359
  .ui.table tr.warning,
283
360
  .ui.table td.warning {
284
- -webkit-box-shadow: 2px 0px 0px #7D6C00 inset;
285
- box-shadow: 2px 0px 0px #7D6C00 inset;
361
+ box-shadow: 0px 0px 0px #d9caab inset;
286
362
  }
287
-
288
363
  .ui.table tr.warning td,
289
- .ui.table td.warning,
290
- .ui.table th.warning {
291
- background-color: #FBF6E9;
292
- color: #7D6C00;
364
+ .ui.table td.warning {
365
+ background: #fffbe6 !important;
366
+ color: #7d6c00 !important;
293
367
  }
294
-
295
368
  .ui.celled.table tr.warning:hover td,
296
- .ui.celled.table tr:hover td.warning,
297
- .ui.table tr.warning:hover td,
298
- .ui.table td:hover.warning,
299
- .ui.table th:hover.warning {
300
- background-color: #F3EDDC;
301
- color: #7D6C00;
369
+ .ui.celled.table tr:hover td.warning {
370
+ background: #fff9d7 !important;
371
+ color: #6e5f00 !important;
302
372
  }
303
373
 
304
374
  /*--------------
@@ -307,15 +377,17 @@
307
377
 
308
378
  .ui.table tr.active,
309
379
  .ui.table td.active {
310
- -webkit-box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
311
- box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
380
+ box-shadow: 0px 0px 0px rgba(50, 50, 50, 0.9) inset;
312
381
  }
313
-
314
382
  .ui.table tr.active td,
315
- .ui.table tr td.active {
316
- background-color: #E0E0E0;
317
- color: rgba(50, 50, 50, 0.9);
318
- /* border-color: rgba(0, 0, 0, 0.15) !important; */
383
+ .ui.table td.active {
384
+ background: #e0e0e0 !important;
385
+ color: rgba(50, 50, 50, 0.9) !important;
386
+ }
387
+ .ui.celled.table tr.active:hover td,
388
+ .ui.celled.table tr:hover td.active {
389
+ background: #e0e0e0 !important;
390
+ color: rgba(50, 50, 50, 0.9) !important;
319
391
  }
320
392
 
321
393
  /*--------------
@@ -326,193 +398,349 @@
326
398
  .ui.table tr td.disabled,
327
399
  .ui.table tr.disabled:hover td,
328
400
  .ui.table tr:hover td.disabled {
329
- color: rgba(150, 150, 150, 0.3);
401
+ pointer-events: none;
402
+ color: rgba(40, 40, 40, 0.3);
330
403
  }
331
404
 
405
+
332
406
  /*******************************
333
407
  Variations
334
408
  *******************************/
335
409
 
410
+
336
411
  /*--------------
337
- Column Count
412
+ Stackable
413
+ ---------------*/
414
+
415
+ @media only screen and (max-width: 991px) {
416
+ .ui[class*="tablet stackable"].table,
417
+ .ui[class*="tablet stackable"].table tbody,
418
+ .ui[class*="tablet stackable"].table tr,
419
+ .ui[class*="tablet stackable"].table tr > th,
420
+ .ui[class*="tablet stackable"].table tr > td {
421
+ width: 100% !important;
422
+ display: block !important;
423
+ }
424
+ .ui[class*="tablet stackable"].table {
425
+ padding: 0em;
426
+ }
427
+ .ui[class*="tablet stackable"].table thead {
428
+ display: block;
429
+ }
430
+ .ui[class*="tablet stackable"].table tfoot {
431
+ display: block;
432
+ }
433
+ .ui[class*="tablet stackable"].table tr > th,
434
+ .ui[class*="tablet stackable"].table tr > td {
435
+ background: none;
436
+ border: none !important;
437
+ padding: 0.25em 0.75em;
438
+ box-shadow: none;
439
+ }
440
+ .ui[class*="tablet stackable"].table th:first-child,
441
+ .ui[class*="tablet stackable"].table td:first-child {
442
+ font-weight: bold;
443
+ padding-top: 1em;
444
+ }
445
+ .ui[class*="tablet stackable"].table th:last-child,
446
+ .ui[class*="tablet stackable"].table td:last-child {
447
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
448
+ padding-bottom: 1em;
449
+ }
450
+
451
+ /* Clear BG Colors */
452
+ .ui[class*="tablet stackable"].table tr > td.warning,
453
+ .ui[class*="tablet stackable"].table tr > td.error,
454
+ .ui[class*="tablet stackable"].table tr > td.active,
455
+ .ui[class*="tablet stackable"].table tr > td.positive,
456
+ .ui[class*="tablet stackable"].table tr > td.negative {
457
+ background-color: transparent !important;
458
+ }
459
+
460
+ /* Definition Table */
461
+ .ui.definition[class*="tablet stackable"].table thead th:first-child {
462
+ box-shadow: none !important;
463
+ }
464
+ .ui.definition[class*="tablet stackable"].table tr td:first-child {
465
+ padding-bottom: 1em;
466
+ }
467
+ .ui.definition[class*="tablet stackable"].table tr td:nth-child(n+2) {
468
+ padding-top: 1em;
469
+ }
470
+ }
471
+
472
+ /*--------------
473
+ Aligned
338
474
  ---------------*/
339
475
 
340
- .ui.column.table {
341
- table-layout: fixed;
476
+ .ui.table[class*="left aligned"],
477
+ .ui.table [class*="left aligned"] {
478
+ text-align: left;
479
+ }
480
+ .ui.table[class*="center aligned"],
481
+ .ui.table [class*="center aligned"] {
482
+ text-align: center;
483
+ }
484
+ .ui.table[class*="right aligned"],
485
+ .ui.table [class*="right aligned"] {
486
+ text-align: right;
487
+ }
488
+
489
+ /*--------------
490
+ Collapsing
491
+ ---------------*/
492
+
493
+ .ui.table th.collapsing,
494
+ .ui.table td.collapsing {
495
+ width: 1px;
496
+ white-space: nowrap;
497
+ }
498
+
499
+ /*--------------
500
+ Attached
501
+ ---------------*/
502
+
503
+
504
+ /* All */
505
+ .ui.attached.table {
506
+ width: -webkit-calc(100% + 2px );
507
+ width: calc(100% + 2px );
508
+ margin: 0em -1px;
509
+ border-radius: 0px;
510
+ box-shadow: none;
342
511
  }
343
512
 
513
+ /* Top */
514
+ .ui[class*="top attached"].table {
515
+ margin-top: 1em 0em;
516
+ border-radius: 0.25rem 0.25rem 0em 0em;
517
+ }
518
+ .ui.table[class*="top attached"]:first-child {
519
+ margin-top: 0em;
520
+ }
521
+
522
+ /* Bottom */
523
+ .ui.table[class*="bottom attached"] {
524
+ margin-top: 0em;
525
+ margin-bottom: 1em 0em;
526
+ border-radius: 0em 0em 0.25rem 0.25rem;
527
+ }
528
+ .ui.table[class*="bottom attached"]:last-child {
529
+ margin-bottom: 0em;
530
+ }
531
+
532
+ /*--------------
533
+ Striped
534
+ ---------------*/
535
+
536
+
537
+ /* Table Striping */
538
+ .ui.striped.table > tr:nth-child(2n),
539
+ .ui.striped.table tbody tr:nth-child(2n) {
540
+ background-color: rgba(0, 0, 50, 0.03);
541
+ }
542
+
543
+ /* Stripes */
544
+ .ui.inverted.striped.table > tr:nth-child(2n),
545
+ .ui.inverted.striped.table tbody tr:nth-child(2n) {
546
+ background-color: rgba(255, 255, 255, 0.06);
547
+ }
548
+
549
+ /*-------------------
550
+ Colors
551
+ --------------------*/
552
+
553
+ .ui.black.table {
554
+ border-top: 0.2em solid #1b1c1d;
555
+ }
556
+ .ui.blue.table {
557
+ border-top: 0.2em solid #3b83c0;
558
+ }
559
+ .ui.green.table {
560
+ border-top: 0.2em solid #5bbd72;
561
+ }
562
+ .ui.orange.table {
563
+ border-top: 0.2em solid #e07b53;
564
+ }
565
+ .ui.pink.table {
566
+ border-top: 0.2em solid #d9499a;
567
+ }
568
+ .ui.purple.table {
569
+ border-top: 0.2em solid #564f8a;
570
+ }
571
+ .ui.red.table {
572
+ border-top: 0.2em solid #d95c5c;
573
+ }
574
+ .ui.teal.table {
575
+ border-top: 0.2em solid #00b5ad;
576
+ }
577
+ .ui.yellow.table {
578
+ border-top: 0.2em solid #f2c61f;
579
+ }
580
+
581
+ /*-------------------
582
+ Inverted Colors
583
+ --------------------*/
584
+
585
+ .ui.inverted.table,
586
+ .ui.inverted.black.table {
587
+ background-color: #1b1c1d !important;
588
+ color: #ffffff !important;
589
+ }
590
+ .ui.inverted.blue.table {
591
+ background-color: #3b83c0 !important;
592
+ color: #ffffff !important;
593
+ }
594
+ .ui.inverted.green.table {
595
+ background-color: #5bbd72 !important;
596
+ color: #ffffff !important;
597
+ }
598
+ .ui.inverted.orange.table {
599
+ background-color: #e07b53 !important;
600
+ color: #ffffff !important;
601
+ }
602
+ .ui.inverted.pink.table {
603
+ background-color: #d9499a !important;
604
+ color: #ffffff !important;
605
+ }
606
+ .ui.inverted.purple.table {
607
+ background-color: #564f8a !important;
608
+ color: #ffffff !important;
609
+ }
610
+ .ui.inverted.red.table {
611
+ background-color: #d95c5c !important;
612
+ color: #ffffff !important;
613
+ }
614
+ .ui.inverted.teal.table {
615
+ background-color: #00b5ad !important;
616
+ color: #ffffff !important;
617
+ }
618
+ .ui.inverted.yellow.table {
619
+ background-color: #f2c61f !important;
620
+ color: #ffffff !important;
621
+ }
622
+
623
+ /*--------------
624
+ Column Count
625
+ ---------------*/
626
+
627
+
628
+ /* Grid Based */
629
+ .ui.one.column.table td {
630
+ width: 100%;
631
+ }
344
632
  .ui.two.column.table td {
345
633
  width: 50%;
346
634
  }
347
-
348
635
  .ui.three.column.table td {
349
- width: 33.3333%;
636
+ width: 33.33333333%;
350
637
  }
351
-
352
638
  .ui.four.column.table td {
353
639
  width: 25%;
354
640
  }
355
-
356
641
  .ui.five.column.table td {
357
642
  width: 20%;
358
643
  }
359
-
360
644
  .ui.six.column.table td {
361
- width: 16.66667%;
645
+ width: 16.66666667%;
362
646
  }
363
-
364
647
  .ui.seven.column.table td {
365
- width: 14.2857%;
648
+ width: 14.28571429%;
366
649
  }
367
-
368
650
  .ui.eight.column.table td {
369
651
  width: 12.5%;
370
652
  }
371
-
372
653
  .ui.nine.column.table td {
373
- width: 11.1111%;
654
+ width: 11.11111111%;
374
655
  }
375
-
376
656
  .ui.ten.column.table td {
377
657
  width: 10%;
378
658
  }
379
-
380
659
  .ui.eleven.column.table td {
381
- width: 9.0909%;
660
+ width: 9.09090909%;
382
661
  }
383
-
384
662
  .ui.twelve.column.table td {
385
- width: 8.3333%;
663
+ width: 8.33333333%;
386
664
  }
387
-
388
665
  .ui.thirteen.column.table td {
389
- width: 7.6923%;
666
+ width: 7.69230769%;
390
667
  }
391
-
392
668
  .ui.fourteen.column.table td {
393
- width: 7.1428%;
669
+ width: 7.14285714%;
394
670
  }
395
-
396
671
  .ui.fifteen.column.table td {
397
- width: 6.6666%;
672
+ width: 6.66666667%;
398
673
  }
399
-
400
674
  .ui.sixteen.column.table td {
401
675
  width: 6.25%;
402
676
  }
403
677
 
404
678
  /* Column Width */
405
-
406
679
  .ui.table th.one.wide,
407
680
  .ui.table td.one.wide {
408
681
  width: 6.25%;
409
682
  }
410
-
411
683
  .ui.table th.two.wide,
412
684
  .ui.table td.two.wide {
413
685
  width: 12.5%;
414
686
  }
415
-
416
687
  .ui.table th.three.wide,
417
688
  .ui.table td.three.wide {
418
689
  width: 18.75%;
419
690
  }
420
-
421
691
  .ui.table th.four.wide,
422
692
  .ui.table td.four.wide {
423
693
  width: 25%;
424
694
  }
425
-
426
695
  .ui.table th.five.wide,
427
696
  .ui.table td.five.wide {
428
697
  width: 31.25%;
429
698
  }
430
-
431
699
  .ui.table th.six.wide,
432
700
  .ui.table td.six.wide {
433
701
  width: 37.5%;
434
702
  }
435
-
436
703
  .ui.table th.seven.wide,
437
704
  .ui.table td.seven.wide {
438
705
  width: 43.75%;
439
706
  }
440
-
441
707
  .ui.table th.eight.wide,
442
708
  .ui.table td.eight.wide {
443
709
  width: 50%;
444
710
  }
445
-
446
711
  .ui.table th.nine.wide,
447
712
  .ui.table td.nine.wide {
448
713
  width: 56.25%;
449
714
  }
450
-
451
715
  .ui.table th.ten.wide,
452
716
  .ui.table td.ten.wide {
453
717
  width: 62.5%;
454
718
  }
455
-
456
719
  .ui.table th.eleven.wide,
457
720
  .ui.table td.eleven.wide {
458
721
  width: 68.75%;
459
722
  }
460
-
461
723
  .ui.table th.twelve.wide,
462
724
  .ui.table td.twelve.wide {
463
725
  width: 75%;
464
726
  }
465
-
466
727
  .ui.table th.thirteen.wide,
467
728
  .ui.table td.thirteen.wide {
468
729
  width: 81.25%;
469
730
  }
470
-
471
731
  .ui.table th.fourteen.wide,
472
732
  .ui.table td.fourteen.wide {
473
733
  width: 87.5%;
474
734
  }
475
-
476
735
  .ui.table th.fifteen.wide,
477
736
  .ui.table td.fifteen.wide {
478
737
  width: 93.75%;
479
738
  }
480
-
481
739
  .ui.table th.sixteen.wide,
482
740
  .ui.table td.sixteen.wide {
483
741
  width: 100%;
484
742
  }
485
743
 
486
- /*--------------
487
- Celled
488
- ---------------*/
489
-
490
- .ui.celled.table {
491
- color: rgba(0, 0, 0, 0.8);
492
- }
493
-
494
- .ui.celled.table tbody tr,
495
- .ui.celled.table tfoot tr {
496
- border: none;
497
- }
498
-
499
- .ui.celled.table th,
500
- .ui.celled.table td {
501
- border: 1px solid rgba(0, 0, 0, 0.1);
502
- }
503
-
504
- /* Coupling with segment */
505
-
506
- .ui.celled.table.segment th:first-child,
507
- .ui.celled.table.segment td:first-child {
508
- border-left: none;
509
- }
510
-
511
- .ui.celled.table.segment th:last-child,
512
- .ui.celled.table.segment td:last-child {
513
- border-right: none;
514
- }
515
-
516
744
  /*--------------
517
745
  Sortable
518
746
  ---------------*/
@@ -520,20 +748,24 @@
520
748
  .ui.sortable.table thead th {
521
749
  cursor: pointer;
522
750
  white-space: nowrap;
751
+ border-left: 1px solid #d0d0d0;
752
+ color: rgba(0, 0, 0, 0.8);
753
+ }
754
+ .ui.sortable.table thead th:first-child {
755
+ border-left: none;
523
756
  }
524
-
525
757
  .ui.sortable.table thead th.sorted,
526
758
  .ui.sortable.table thead th.sorted:hover {
527
759
  -webkit-user-select: none;
528
- -moz-user-select: none;
529
- -ms-user-select: none;
530
- user-select: none;
760
+ -moz-user-select: none;
761
+ -ms-user-select: none;
762
+ user-select: none;
531
763
  }
532
-
533
764
  .ui.sortable.table thead th:after {
534
765
  display: inline-block;
535
766
  content: '';
536
767
  width: 1em;
768
+ height: 1em;
537
769
  opacity: 0.8;
538
770
  margin: 0em 0em 0em 0.5em;
539
771
  font-family: 'Icons';
@@ -541,42 +773,86 @@
541
773
  font-weight: normal;
542
774
  text-decoration: inherit;
543
775
  }
544
-
545
776
  .ui.sortable.table thead th.ascending:after {
546
- content: '\25b4';
777
+ content: '\f0d7';
547
778
  }
548
-
549
779
  .ui.sortable.table thead th.descending:after {
550
- content: '\25be';
780
+ content: '\f0d8';
781
+ }
782
+
783
+ /* Hover */
784
+ .ui.sortable.table th.disabled:hover {
785
+ cursor: auto;
786
+ color: rgba(40, 40, 40, 0.3);
787
+ }
788
+ .ui.sortable.table thead th:hover {
789
+ background: rgba(0, 0, 0, 0.05);
790
+ color: rgba(0, 0, 0, 0.8);
791
+ }
792
+
793
+ /* Sorted */
794
+ .ui.sortable.table thead th.sorted {
795
+ background: rgba(0, 0, 0, 0.05);
796
+ color: rgba(0, 0, 0, 0.8);
797
+ }
798
+
799
+ /* Sorted Hover */
800
+ .ui.sortable.table thead th.sorted:hover {
801
+ background: rgba(0, 0, 0, 0.05);
802
+ color: rgba(0, 0, 0, 0.8);
803
+ }
804
+
805
+ /* Inverted */
806
+ .ui.inverted.sortable.table thead th.sorted {
807
+ background: rgba(255, 255, 255, 0.07) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
808
+ background: rgba(255, 255, 255, 0.07) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
809
+ color: #ffffff;
810
+ }
811
+ .ui.inverted.sortable.table thead th:hover {
812
+ background: rgba(255, 255, 255, 0.05) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
813
+ background: rgba(255, 255, 255, 0.05) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
814
+ color: #ffffff;
815
+ }
816
+ .ui.inverted.sortable.table thead th {
817
+ border-left-color: transparent;
818
+ border-right-color: transparent;
551
819
  }
552
820
 
553
821
  /*--------------
554
822
  Inverted
555
823
  ---------------*/
556
824
 
557
- /* Text Color */
558
825
 
559
- .ui.inverted.table td {
560
- color: rgba(255, 255, 255, 0.9);
826
+ /* Text Color */
827
+ .ui.inverted.table {
828
+ background: #333333;
829
+ color: #ffffff;
830
+ border: none;
561
831
  }
562
-
563
832
  .ui.inverted.table th {
564
833
  background-color: rgba(0, 0, 0, 0.15);
834
+ border-color: rgba(0, 0, 0, 0.2) !important;
565
835
  color: rgba(255, 255, 255, 0.9);
566
836
  }
567
-
568
- /* Stripes */
569
-
570
- .ui.inverted.table tbody tr:nth-child(2n) {
571
- background-color: rgba(255, 255, 255, 0.06);
837
+ .ui.inverted.table tr td {
838
+ border-color: rgba(0, 0, 0, 0.2) !important;
839
+ }
840
+ .ui.inverted.table tr.disabled td,
841
+ .ui.inverted.table tr td.disabled,
842
+ .ui.inverted.table tr.disabled:hover td,
843
+ .ui.inverted.table tr:hover td.disabled {
844
+ pointer-events: none;
845
+ color: rgba(225, 225, 225, 0.3);
572
846
  }
573
847
 
574
- /*--------------
575
- Definition
576
- ---------------*/
577
-
578
- .ui.definition.table td:first-child {
579
- font-weight: bold;
848
+ /* Definition */
849
+ .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
850
+ .ui.inverted.definition.table thead:not(.full-width) th:first-child {
851
+ background: #ffffff;
852
+ }
853
+ .ui.inverted.definition.table tr td:first-child {
854
+ background: rgba(255, 255, 255, 0.02);
855
+ color: #ffffff;
580
856
  }
581
857
 
582
858
  /*--------------
@@ -591,58 +867,133 @@
591
867
  Basic
592
868
  ---------------*/
593
869
 
870
+ .ui.basic.table {
871
+ background: transparent;
872
+ border: 1px solid #d0d0d0;
873
+ box-shadow: none;
874
+ }
875
+ .ui.basic.table thead,
876
+ .ui.basic.table tfoot {
877
+ box-shadow: none;
878
+ }
594
879
  .ui.basic.table th {
595
- background-color: transparent;
596
- padding: 0.5em;
880
+ background: transparent;
881
+ border-left: none;
597
882
  }
598
-
599
883
  .ui.basic.table tbody tr {
600
- border-bottom: 1px solid rgba(0, 0, 0, 0.03);
884
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
601
885
  }
602
-
603
886
  .ui.basic.table td {
604
- padding: 0.8em 0.5em;
887
+ background: transparent;
888
+ }
889
+ .ui.basic.striped.table tbody tr:nth-child(2n) {
890
+ background-color: rgba(0, 0, 0, 0.05) !important;
605
891
  }
606
892
 
607
- .ui.basic.table tbody tr:nth-child(2n) {
608
- background-color: transparent !important;
893
+ /* Very Basic */
894
+ .ui[class*="very basic"].table {
895
+ border: none;
896
+ }
897
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
898
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
899
+ padding: 0.7em 0.8em;
900
+ }
901
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,
902
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child {
903
+ padding-left: 0em;
904
+ }
905
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,
906
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child {
907
+ padding-right: 0em;
908
+ }
909
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
910
+ padding-top: 0em;
911
+ }
912
+
913
+ /*--------------
914
+ Celled
915
+ ---------------*/
916
+
917
+ .ui.celled.table tr th,
918
+ .ui.celled.table tr td {
919
+ border-left: 1px solid #d4d4d5;
920
+ }
921
+ .ui.celled.table tr th:first-child,
922
+ .ui.celled.table tr td:first-child {
923
+ border-left: none;
609
924
  }
610
925
 
611
926
  /*--------------
612
927
  Padded
613
928
  ---------------*/
614
929
 
930
+ .ui.padded.table th {
931
+ padding-left: 1em;
932
+ padding-right: 1em;
933
+ }
615
934
  .ui.padded.table th,
616
935
  .ui.padded.table td {
617
- padding: 0.8em 1em;
936
+ padding: 1em 1em;
618
937
  }
619
938
 
620
- .ui.compact.table th {
621
- padding: 0.3em 0.5em;
939
+ /* Very */
940
+ .ui[class*="very padded"].table th {
941
+ padding-left: 1.5em;
942
+ padding-right: 1.5em;
943
+ }
944
+ .ui[class*="very padded"].table td {
945
+ padding: 1.5em 1.5em;
622
946
  }
623
947
 
948
+ /*--------------
949
+ Compact
950
+ ---------------*/
951
+
952
+ .ui.compact.table th {
953
+ padding-left: 0.7em;
954
+ padding-right: 0.7em;
955
+ }
624
956
  .ui.compact.table td {
625
- padding: 0.2em 0.5em;
957
+ padding: 0.5em 0.7em;
958
+ }
959
+
960
+ /* Very */
961
+ .ui[class*="very compact"].table th {
962
+ padding-left: 0.6em;
963
+ padding-right: 0.6em;
964
+ }
965
+ .ui[class*="very compact"].table td {
966
+ padding: 0.4em 0.6em;
626
967
  }
627
968
 
628
969
  /*--------------
629
970
  Sizes
630
971
  ---------------*/
631
972
 
632
- /* Small */
633
973
 
974
+ /* Small */
634
975
  .ui.small.table {
635
- font-size: 0.875em;
976
+ font-size: 0.9em;
636
977
  }
637
978
 
638
979
  /* Standard */
639
-
640
980
  .ui.table {
641
981
  font-size: 1em;
642
982
  }
643
983
 
644
984
  /* Large */
645
-
646
985
  .ui.large.table {
647
986
  font-size: 1.1em;
648
- }
987
+ }
988
+
989
+
990
+ /*******************************
991
+ Theme Overrides
992
+ *******************************/
993
+
994
+
995
+
996
+ /*******************************
997
+ Site Overrides
998
+ *******************************/
999
+