fomantic-ui-sass 2.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/CHANGELOG.md +370 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +177 -0
  9. data/Rakefile +8 -0
  10. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  13. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  14. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
  18. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  19. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  20. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
  23. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  24. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  25. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  26. data/app/assets/images/semantic-ui/flags.png +0 -0
  27. data/app/assets/javascripts/semantic-ui.js +27 -0
  28. data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
  29. data/app/assets/javascripts/semantic-ui/api.js +1167 -0
  30. data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
  32. data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
  33. data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
  34. data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
  35. data/app/assets/javascripts/semantic-ui/embed.js +706 -0
  36. data/app/assets/javascripts/semantic-ui/form.js +1707 -0
  37. data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
  38. data/app/assets/javascripts/semantic-ui/nag.js +507 -0
  39. data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
  40. data/app/assets/javascripts/semantic-ui/progress.js +923 -0
  41. data/app/assets/javascripts/semantic-ui/range.js +278 -0
  42. data/app/assets/javascripts/semantic-ui/rating.js +511 -0
  43. data/app/assets/javascripts/semantic-ui/search.js +1515 -0
  44. data/app/assets/javascripts/semantic-ui/shape.js +921 -0
  45. data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
  46. data/app/assets/javascripts/semantic-ui/site.js +490 -0
  47. data/app/assets/javascripts/semantic-ui/state.js +708 -0
  48. data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
  49. data/app/assets/javascripts/semantic-ui/tab.js +952 -0
  50. data/app/assets/javascripts/semantic-ui/toast.js +592 -0
  51. data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
  52. data/app/assets/javascripts/semantic-ui/video.js +532 -0
  53. data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
  54. data/app/assets/javascripts/semantic-ui/visit.js +525 -0
  55. data/app/assets/stylesheets/semantic-ui.scss +5 -0
  56. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  57. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  58. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
  59. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
  60. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
  61. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
  62. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
  65. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
  66. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
  67. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
  68. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
  69. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
  70. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
  71. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
  72. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
  73. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
  74. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
  75. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
  76. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  77. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
  78. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
  79. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
  80. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  81. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
  82. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
  83. data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
  84. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
  85. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
  86. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
  87. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
  88. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
  90. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
  91. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
  92. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
  93. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
  94. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
  95. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
  96. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
  97. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
  98. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
  99. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
  100. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  101. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
  102. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
  103. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
  104. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  105. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
  106. data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  107. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
  108. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
  109. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
  110. data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
  111. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  112. data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
  113. data/app/helpers/semantic_flash_helper.rb +22 -0
  114. data/app/helpers/semantic_icon_helper.rb +8 -0
  115. data/app/views/semantic/_breadcrumbs.html.erb +12 -0
  116. data/fomantic-ui-sass.gemspec +31 -0
  117. data/lib/fomantic-ui-sass.rb +62 -0
  118. data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
  119. data/lib/fomantic/ui/sass/engine.rb +23 -0
  120. data/lib/fomantic/ui/sass/version.rb +8 -0
  121. data/spec/dummy/README.rdoc +28 -0
  122. data/spec/dummy/Rakefile +6 -0
  123. data/spec/dummy/app/assets/images/.keep +0 -0
  124. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  125. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  126. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  127. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  128. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  129. data/spec/dummy/app/mailers/.keep +0 -0
  130. data/spec/dummy/app/models/.keep +0 -0
  131. data/spec/dummy/app/models/concerns/.keep +0 -0
  132. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  133. data/spec/dummy/bin/bundle +3 -0
  134. data/spec/dummy/bin/rails +4 -0
  135. data/spec/dummy/bin/rake +4 -0
  136. data/spec/dummy/config.ru +4 -0
  137. data/spec/dummy/config/application.rb +28 -0
  138. data/spec/dummy/config/boot.rb +5 -0
  139. data/spec/dummy/config/environment.rb +5 -0
  140. data/spec/dummy/config/environments/development.rb +29 -0
  141. data/spec/dummy/config/environments/production.rb +80 -0
  142. data/spec/dummy/config/environments/test.rb +36 -0
  143. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  144. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/spec/dummy/config/initializers/inflections.rb +16 -0
  146. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  147. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  148. data/spec/dummy/config/initializers/session_store.rb +3 -0
  149. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  150. data/spec/dummy/config/locales/en.yml +23 -0
  151. data/spec/dummy/config/routes.rb +2 -0
  152. data/spec/dummy/lib/assets/.keep +0 -0
  153. data/spec/dummy/log/.keep +0 -0
  154. data/spec/dummy/public/404.html +58 -0
  155. data/spec/dummy/public/422.html +58 -0
  156. data/spec/dummy/public/500.html +57 -0
  157. data/spec/dummy/public/favicon.ico +0 -0
  158. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
  159. data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
  160. data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
  161. data/spec/spec_helper.rb +17 -0
  162. data/tasks/converter.rb +216 -0
  163. data/templates/project/manifest.rb +29 -0
  164. data/templates/project/styles.scss +1 -0
  165. metadata +390 -0
@@ -0,0 +1,1117 @@
1
+ /*!
2
+ * # Semantic UI 2.6.4 - Table
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Table
14
+ *******************************/
15
+
16
+
17
+ /* Prototype */
18
+ .ui.table {
19
+ width: 100%;
20
+ background: #FFFFFF;
21
+ margin: 1em 0em;
22
+ border: 1px solid rgba(34, 36, 38, 0.15);
23
+ -webkit-box-shadow: none;
24
+ box-shadow: none;
25
+ border-radius: 0.28571429rem;
26
+ text-align: left;
27
+ color: rgba(0, 0, 0, 0.87);
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;
36
+ }
37
+
38
+
39
+ /*******************************
40
+ Parts
41
+ *******************************/
42
+
43
+
44
+ /* Table Content */
45
+ .ui.table th,
46
+ .ui.table td {
47
+ -webkit-transition: background 0.1s ease, color 0.1s ease;
48
+ transition: background 0.1s ease, color 0.1s ease;
49
+ }
50
+
51
+ /* Headers */
52
+ .ui.table thead {
53
+ -webkit-box-shadow: none;
54
+ box-shadow: none;
55
+ }
56
+ .ui.table thead th {
57
+ cursor: auto;
58
+ background: #F9FAFB;
59
+ text-align: inherit;
60
+ color: rgba(0, 0, 0, 0.87);
61
+ padding: 0.92857143em 0.78571429em;
62
+ vertical-align: inherit;
63
+ font-style: none;
64
+ font-weight: bold;
65
+ text-transform: none;
66
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
67
+ border-left: none;
68
+ }
69
+ .ui.table thead tr > th:first-child {
70
+ border-left: none;
71
+ }
72
+ .ui.table thead tr:first-child > th:first-child {
73
+ border-radius: 0.28571429rem 0em 0em 0em;
74
+ }
75
+ .ui.table thead tr:first-child > th:last-child {
76
+ border-radius: 0em 0.28571429rem 0em 0em;
77
+ }
78
+ .ui.table thead tr:first-child > th:only-child {
79
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
80
+ }
81
+
82
+ /* Footer */
83
+ .ui.table tfoot {
84
+ -webkit-box-shadow: none;
85
+ box-shadow: none;
86
+ }
87
+ .ui.table tfoot th {
88
+ cursor: auto;
89
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
90
+ background: #F9FAFB;
91
+ text-align: inherit;
92
+ color: rgba(0, 0, 0, 0.87);
93
+ padding: 0.78571429em 0.78571429em;
94
+ vertical-align: middle;
95
+ font-style: normal;
96
+ font-weight: normal;
97
+ text-transform: none;
98
+ }
99
+ .ui.table tfoot tr > th:first-child {
100
+ border-left: none;
101
+ }
102
+ .ui.table tfoot tr:first-child > th:first-child {
103
+ border-radius: 0em 0em 0em 0.28571429rem;
104
+ }
105
+ .ui.table tfoot tr:first-child > th:last-child {
106
+ border-radius: 0em 0em 0.28571429rem 0em;
107
+ }
108
+ .ui.table tfoot tr:first-child > th:only-child {
109
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
110
+ }
111
+
112
+ /* Table Row */
113
+ .ui.table tr td {
114
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
115
+ }
116
+ .ui.table tr:first-child td {
117
+ border-top: none;
118
+ }
119
+
120
+ /* Repeated tbody */
121
+ .ui.table tbody + tbody tr:first-child td {
122
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
123
+ }
124
+
125
+ /* Table Cells */
126
+ .ui.table td {
127
+ padding: 0.78571429em 0.78571429em;
128
+ text-align: inherit;
129
+ }
130
+
131
+ /* Icons */
132
+ .ui.table > .icon {
133
+ vertical-align: baseline;
134
+ }
135
+ .ui.table > .icon:only-child {
136
+ margin: 0em;
137
+ }
138
+
139
+ /* Table Segment */
140
+ .ui.table.segment {
141
+ padding: 0em;
142
+ }
143
+ .ui.table.segment:after {
144
+ display: none;
145
+ }
146
+ .ui.table.segment.stacked:after {
147
+ display: block;
148
+ }
149
+
150
+ /* Responsive */
151
+ @media only screen and (max-width: 767px) {
152
+ .ui.table:not(.unstackable) {
153
+ width: 100%;
154
+ padding: 0em;
155
+ }
156
+ .ui.table:not(.unstackable) tbody,
157
+ .ui.table:not(.unstackable) tr,
158
+ .ui.table:not(.unstackable) tr > th,
159
+ .ui.table:not(.unstackable) tr > td {
160
+ display: block !important;
161
+ width: auto !important;
162
+ }
163
+ .ui.table:not(.unstackable) thead {
164
+ display: block;
165
+ }
166
+ .ui.table:not(.unstackable) tfoot {
167
+ display: block;
168
+ }
169
+ .ui.table:not(.unstackable) tr {
170
+ padding-top: 1em;
171
+ padding-bottom: 1em;
172
+ -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
173
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
174
+ }
175
+ .ui.table:not(.unstackable) tr > th,
176
+ .ui.table:not(.unstackable) tr > td {
177
+ background: none;
178
+ border: none !important;
179
+ padding: 0.25em 0.75em !important;
180
+ -webkit-box-shadow: none !important;
181
+ box-shadow: none !important;
182
+ }
183
+ .ui.table:not(.unstackable) th:first-child,
184
+ .ui.table:not(.unstackable) td:first-child {
185
+ font-weight: bold;
186
+ }
187
+
188
+ /* Definition Table */
189
+ .ui.definition.table:not(.unstackable) thead th:first-child {
190
+ -webkit-box-shadow: none !important;
191
+ box-shadow: none !important;
192
+ }
193
+ }
194
+
195
+
196
+ /*******************************
197
+ Coupling
198
+ *******************************/
199
+
200
+
201
+ /* UI Image */
202
+ .ui.table th .image,
203
+ .ui.table th .image img,
204
+ .ui.table td .image,
205
+ .ui.table td .image img {
206
+ max-width: none;
207
+ }
208
+
209
+
210
+ /*******************************
211
+ Types
212
+ *******************************/
213
+
214
+
215
+ /*--------------
216
+ Complex
217
+ ---------------*/
218
+
219
+ .ui.structured.table {
220
+ border-collapse: collapse;
221
+ }
222
+ .ui.structured.table thead th {
223
+ border-left: none;
224
+ border-right: none;
225
+ }
226
+ .ui.structured.sortable.table thead th {
227
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
228
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
229
+ }
230
+ .ui.structured.basic.table th {
231
+ border-left: none;
232
+ border-right: none;
233
+ }
234
+ .ui.structured.celled.table tr th,
235
+ .ui.structured.celled.table tr td {
236
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
237
+ border-right: 1px solid rgba(34, 36, 38, 0.1);
238
+ }
239
+
240
+ /*--------------
241
+ Definition
242
+ ---------------*/
243
+
244
+ .ui.definition.table thead:not(.full-width) th:first-child {
245
+ pointer-events: none;
246
+ background: transparent;
247
+ font-weight: normal;
248
+ color: rgba(0, 0, 0, 0.4);
249
+ -webkit-box-shadow: -1px -1px 0px 1px #FFFFFF;
250
+ box-shadow: -1px -1px 0px 1px #FFFFFF;
251
+ }
252
+ .ui.definition.table tfoot:not(.full-width) th:first-child {
253
+ pointer-events: none;
254
+ background: transparent;
255
+ font-weight: rgba(0, 0, 0, 0.4);
256
+ color: normal;
257
+ -webkit-box-shadow: 1px 1px 0px 1px #FFFFFF;
258
+ box-shadow: 1px 1px 0px 1px #FFFFFF;
259
+ }
260
+
261
+ /* Remove Border */
262
+ .ui.celled.definition.table thead:not(.full-width) th:first-child {
263
+ -webkit-box-shadow: 0px -1px 0px 1px #FFFFFF;
264
+ box-shadow: 0px -1px 0px 1px #FFFFFF;
265
+ }
266
+ .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
267
+ -webkit-box-shadow: 0px 1px 0px 1px #FFFFFF;
268
+ box-shadow: 0px 1px 0px 1px #FFFFFF;
269
+ }
270
+
271
+ /* Highlight Defining Column */
272
+ .ui.definition.table tr td:first-child:not(.ignored),
273
+ .ui.definition.table tr td.definition {
274
+ background: rgba(0, 0, 0, 0.03);
275
+ font-weight: bold;
276
+ color: rgba(0, 0, 0, 0.95);
277
+ text-transform: '';
278
+ -webkit-box-shadow: '';
279
+ box-shadow: '';
280
+ text-align: '';
281
+ font-size: 1em;
282
+ padding-left: '';
283
+ padding-right: '';
284
+ }
285
+
286
+ /* Fix 2nd Column */
287
+ .ui.definition.table thead:not(.full-width) th:nth-child(2) {
288
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
289
+ }
290
+ .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
291
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
292
+ }
293
+ .ui.definition.table td:nth-child(2) {
294
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
295
+ }
296
+
297
+
298
+ /*******************************
299
+ States
300
+ *******************************/
301
+
302
+
303
+ /*--------------
304
+ Positive
305
+ ---------------*/
306
+
307
+ .ui.table tr.positive,
308
+ .ui.table td.positive {
309
+ -webkit-box-shadow: 0px 0px 0px #A3C293 inset;
310
+ box-shadow: 0px 0px 0px #A3C293 inset;
311
+ background: #FCFFF5 !important;
312
+ color: #2C662D !important;
313
+ }
314
+
315
+ /*--------------
316
+ Negative
317
+ ---------------*/
318
+
319
+ .ui.table tr.negative,
320
+ .ui.table td.negative {
321
+ -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset;
322
+ box-shadow: 0px 0px 0px #E0B4B4 inset;
323
+ background: #FFF6F6 !important;
324
+ color: #9F3A38 !important;
325
+ }
326
+
327
+ /*--------------
328
+ Error
329
+ ---------------*/
330
+
331
+ .ui.table tr.error,
332
+ .ui.table td.error {
333
+ -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset;
334
+ box-shadow: 0px 0px 0px #E0B4B4 inset;
335
+ background: #FFF6F6 !important;
336
+ color: #9F3A38 !important;
337
+ }
338
+
339
+ /*--------------
340
+ Warning
341
+ ---------------*/
342
+
343
+ .ui.table tr.warning,
344
+ .ui.table td.warning {
345
+ -webkit-box-shadow: 0px 0px 0px #C9BA9B inset;
346
+ box-shadow: 0px 0px 0px #C9BA9B inset;
347
+ background: #FFFAF3 !important;
348
+ color: #573A08 !important;
349
+ }
350
+
351
+ /*--------------
352
+ Active
353
+ ---------------*/
354
+
355
+ .ui.table tr.active,
356
+ .ui.table td.active {
357
+ -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
358
+ box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
359
+ background: #E0E0E0 !important;
360
+ color: rgba(0, 0, 0, 0.87) !important;
361
+ }
362
+
363
+ /*--------------
364
+ Disabled
365
+ ---------------*/
366
+
367
+ .ui.table tr.disabled td,
368
+ .ui.table tr td.disabled,
369
+ .ui.table tr.disabled:hover,
370
+ .ui.table tr:hover td.disabled {
371
+ pointer-events: none;
372
+ color: rgba(40, 40, 40, 0.3) !important;
373
+ }
374
+
375
+
376
+ /*******************************
377
+ Variations
378
+ *******************************/
379
+
380
+
381
+ /*--------------
382
+ Stackable
383
+ ---------------*/
384
+
385
+ @media only screen and (max-width: 991px) {
386
+ .ui[class*="tablet stackable"].table,
387
+ .ui[class*="tablet stackable"].table tbody,
388
+ .ui[class*="tablet stackable"].table tr,
389
+ .ui[class*="tablet stackable"].table tr > th,
390
+ .ui[class*="tablet stackable"].table tr > td {
391
+ display: block !important;
392
+ width: 100% !important;
393
+ }
394
+ .ui[class*="tablet stackable"].table {
395
+ padding: 0em;
396
+ }
397
+ .ui[class*="tablet stackable"].table thead {
398
+ display: block;
399
+ }
400
+ .ui[class*="tablet stackable"].table tfoot {
401
+ display: block;
402
+ }
403
+ .ui[class*="tablet stackable"].table tr {
404
+ padding-top: 1em;
405
+ padding-bottom: 1em;
406
+ -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
407
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
408
+ }
409
+ .ui[class*="tablet stackable"].table tr > th,
410
+ .ui[class*="tablet stackable"].table tr > td {
411
+ background: none;
412
+ border: none !important;
413
+ padding: 0.25em 0.75em;
414
+ -webkit-box-shadow: none !important;
415
+ box-shadow: none !important;
416
+ }
417
+
418
+ /* Definition Table */
419
+ .ui.definition[class*="tablet stackable"].table thead th:first-child {
420
+ -webkit-box-shadow: none !important;
421
+ box-shadow: none !important;
422
+ }
423
+ }
424
+
425
+ /*--------------
426
+ Text Alignment
427
+ ---------------*/
428
+
429
+ .ui.table[class*="left aligned"],
430
+ .ui.table [class*="left aligned"] {
431
+ text-align: left;
432
+ }
433
+ .ui.table[class*="center aligned"],
434
+ .ui.table [class*="center aligned"] {
435
+ text-align: center;
436
+ }
437
+ .ui.table[class*="right aligned"],
438
+ .ui.table [class*="right aligned"] {
439
+ text-align: right;
440
+ }
441
+
442
+ /*------------------
443
+ Vertical Alignment
444
+ ------------------*/
445
+
446
+ .ui.table[class*="top aligned"],
447
+ .ui.table [class*="top aligned"] {
448
+ vertical-align: top;
449
+ }
450
+ .ui.table[class*="middle aligned"],
451
+ .ui.table [class*="middle aligned"] {
452
+ vertical-align: middle;
453
+ }
454
+ .ui.table[class*="bottom aligned"],
455
+ .ui.table [class*="bottom aligned"] {
456
+ vertical-align: bottom;
457
+ }
458
+
459
+ /*--------------
460
+ Collapsing
461
+ ---------------*/
462
+
463
+ .ui.table th.collapsing,
464
+ .ui.table td.collapsing {
465
+ width: 1px;
466
+ white-space: nowrap;
467
+ }
468
+
469
+ /*--------------
470
+ Fixed
471
+ ---------------*/
472
+
473
+ .ui.fixed.table {
474
+ table-layout: fixed;
475
+ }
476
+ .ui.fixed.table th,
477
+ .ui.fixed.table td {
478
+ overflow: hidden;
479
+ text-overflow: ellipsis;
480
+ }
481
+
482
+ /*--------------
483
+ Selectable
484
+ ---------------*/
485
+
486
+ .ui.selectable.table tbody tr:hover,
487
+ .ui.table tbody tr td.selectable:hover {
488
+ background: rgba(0, 0, 0, 0.05) !important;
489
+ color: rgba(0, 0, 0, 0.95) !important;
490
+ }
491
+ .ui.selectable.inverted.table tbody tr:hover,
492
+ .ui.inverted.table tbody tr td.selectable:hover {
493
+ background: rgba(255, 255, 255, 0.08) !important;
494
+ color: #ffffff !important;
495
+ }
496
+
497
+ /* Selectable Cell Link */
498
+ .ui.table tbody tr td.selectable {
499
+ padding: 0em;
500
+ }
501
+ .ui.table tbody tr td.selectable > a:not(.ui) {
502
+ display: block;
503
+ color: inherit;
504
+ padding: 0.78571429em 0.78571429em;
505
+ }
506
+
507
+ /* Other States */
508
+ .ui.selectable.table tr.error:hover,
509
+ .ui.table tr td.selectable.error:hover,
510
+ .ui.selectable.table tr:hover td.error {
511
+ background: #ffe7e7 !important;
512
+ color: #943634 !important;
513
+ }
514
+ .ui.selectable.table tr.warning:hover,
515
+ .ui.table tr td.selectable.warning:hover,
516
+ .ui.selectable.table tr:hover td.warning {
517
+ background: #fff4e4 !important;
518
+ color: #493107 !important;
519
+ }
520
+ .ui.selectable.table tr.active:hover,
521
+ .ui.table tr td.selectable.active:hover,
522
+ .ui.selectable.table tr:hover td.active {
523
+ background: #E0E0E0 !important;
524
+ color: rgba(0, 0, 0, 0.87) !important;
525
+ }
526
+ .ui.selectable.table tr.positive:hover,
527
+ .ui.table tr td.selectable.positive:hover,
528
+ .ui.selectable.table tr:hover td.positive {
529
+ background: #f7ffe6 !important;
530
+ color: #275b28 !important;
531
+ }
532
+ .ui.selectable.table tr.negative:hover,
533
+ .ui.table tr td.selectable.negative:hover,
534
+ .ui.selectable.table tr:hover td.negative {
535
+ background: #ffe7e7 !important;
536
+ color: #943634 !important;
537
+ }
538
+
539
+ /*-------------------
540
+ Attached
541
+ --------------------*/
542
+
543
+
544
+ /* Middle */
545
+ .ui.attached.table {
546
+ top: 0px;
547
+ bottom: 0px;
548
+ border-radius: 0px;
549
+ margin: 0em -1px;
550
+ width: calc(100% + 2px);
551
+ max-width: calc(100% + 2px);
552
+ -webkit-box-shadow: none;
553
+ box-shadow: none;
554
+ border: 1px solid #D4D4D5;
555
+ }
556
+ .ui.attached + .ui.attached.table:not(.top) {
557
+ border-top: none;
558
+ }
559
+
560
+ /* Top */
561
+ .ui[class*="top attached"].table {
562
+ bottom: 0px;
563
+ margin-bottom: 0em;
564
+ top: 0px;
565
+ margin-top: 1em;
566
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
567
+ }
568
+ .ui.table[class*="top attached"]:first-child {
569
+ margin-top: 0em;
570
+ }
571
+
572
+ /* Bottom */
573
+ .ui[class*="bottom attached"].table {
574
+ bottom: 0px;
575
+ margin-top: 0em;
576
+ top: 0px;
577
+ margin-bottom: 1em;
578
+ -webkit-box-shadow: none, none;
579
+ box-shadow: none, none;
580
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
581
+ }
582
+ .ui[class*="bottom attached"].table:last-child {
583
+ margin-bottom: 0em;
584
+ }
585
+
586
+ /*--------------
587
+ Striped
588
+ ---------------*/
589
+
590
+
591
+ /* Table Striping */
592
+ .ui.striped.table > tr:nth-child(2n),
593
+ .ui.striped.table tbody tr:nth-child(2n) {
594
+ background-color: rgba(0, 0, 50, 0.02);
595
+ }
596
+
597
+ /* Stripes */
598
+ .ui.inverted.striped.table > tr:nth-child(2n),
599
+ .ui.inverted.striped.table tbody tr:nth-child(2n) {
600
+ background-color: rgba(255, 255, 255, 0.05);
601
+ }
602
+
603
+ /* Allow striped active hover */
604
+ .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
605
+ background: #EFEFEF !important;
606
+ color: rgba(0, 0, 0, 0.95) !important;
607
+ }
608
+
609
+ /*--------------
610
+ Single Line
611
+ ---------------*/
612
+
613
+ .ui.table[class*="single line"],
614
+ .ui.table [class*="single line"] {
615
+ white-space: nowrap;
616
+ }
617
+
618
+ /*-------------------
619
+ Colors
620
+ --------------------*/
621
+
622
+
623
+ /* Red */
624
+ .ui.red.table {
625
+ border-top: 0.2em solid #DB2828;
626
+ }
627
+ .ui.inverted.red.table {
628
+ background-color: #DB2828 !important;
629
+ color: #FFFFFF !important;
630
+ }
631
+
632
+ /* Orange */
633
+ .ui.orange.table {
634
+ border-top: 0.2em solid #F2711C;
635
+ }
636
+ .ui.inverted.orange.table {
637
+ background-color: #F2711C !important;
638
+ color: #FFFFFF !important;
639
+ }
640
+
641
+ /* Yellow */
642
+ .ui.yellow.table {
643
+ border-top: 0.2em solid #FBBD08;
644
+ }
645
+ .ui.inverted.yellow.table {
646
+ background-color: #FBBD08 !important;
647
+ color: #FFFFFF !important;
648
+ }
649
+
650
+ /* Olive */
651
+ .ui.olive.table {
652
+ border-top: 0.2em solid #B5CC18;
653
+ }
654
+ .ui.inverted.olive.table {
655
+ background-color: #B5CC18 !important;
656
+ color: #FFFFFF !important;
657
+ }
658
+
659
+ /* Green */
660
+ .ui.green.table {
661
+ border-top: 0.2em solid #21BA45;
662
+ }
663
+ .ui.inverted.green.table {
664
+ background-color: #21BA45 !important;
665
+ color: #FFFFFF !important;
666
+ }
667
+
668
+ /* Teal */
669
+ .ui.teal.table {
670
+ border-top: 0.2em solid #00B5AD;
671
+ }
672
+ .ui.inverted.teal.table {
673
+ background-color: #00B5AD !important;
674
+ color: #FFFFFF !important;
675
+ }
676
+
677
+ /* Blue */
678
+ .ui.blue.table {
679
+ border-top: 0.2em solid #2185D0;
680
+ }
681
+ .ui.inverted.blue.table {
682
+ background-color: #2185D0 !important;
683
+ color: #FFFFFF !important;
684
+ }
685
+
686
+ /* Violet */
687
+ .ui.violet.table {
688
+ border-top: 0.2em solid #6435C9;
689
+ }
690
+ .ui.inverted.violet.table {
691
+ background-color: #6435C9 !important;
692
+ color: #FFFFFF !important;
693
+ }
694
+
695
+ /* Purple */
696
+ .ui.purple.table {
697
+ border-top: 0.2em solid #A333C8;
698
+ }
699
+ .ui.inverted.purple.table {
700
+ background-color: #A333C8 !important;
701
+ color: #FFFFFF !important;
702
+ }
703
+
704
+ /* Pink */
705
+ .ui.pink.table {
706
+ border-top: 0.2em solid #E03997;
707
+ }
708
+ .ui.inverted.pink.table {
709
+ background-color: #E03997 !important;
710
+ color: #FFFFFF !important;
711
+ }
712
+
713
+ /* Brown */
714
+ .ui.brown.table {
715
+ border-top: 0.2em solid #A5673F;
716
+ }
717
+ .ui.inverted.brown.table {
718
+ background-color: #A5673F !important;
719
+ color: #FFFFFF !important;
720
+ }
721
+
722
+ /* Grey */
723
+ .ui.grey.table {
724
+ border-top: 0.2em solid #767676;
725
+ }
726
+ .ui.inverted.grey.table {
727
+ background-color: #767676 !important;
728
+ color: #FFFFFF !important;
729
+ }
730
+
731
+ /* Black */
732
+ .ui.black.table {
733
+ border-top: 0.2em solid #1B1C1D;
734
+ }
735
+ .ui.inverted.black.table {
736
+ background-color: #1B1C1D !important;
737
+ color: #FFFFFF !important;
738
+ }
739
+
740
+ /*--------------
741
+ Column Count
742
+ ---------------*/
743
+
744
+
745
+ /* Grid Based */
746
+ .ui.one.column.table td {
747
+ width: 100%;
748
+ }
749
+ .ui.two.column.table td {
750
+ width: 50%;
751
+ }
752
+ .ui.three.column.table td {
753
+ width: 33.33333333%;
754
+ }
755
+ .ui.four.column.table td {
756
+ width: 25%;
757
+ }
758
+ .ui.five.column.table td {
759
+ width: 20%;
760
+ }
761
+ .ui.six.column.table td {
762
+ width: 16.66666667%;
763
+ }
764
+ .ui.seven.column.table td {
765
+ width: 14.28571429%;
766
+ }
767
+ .ui.eight.column.table td {
768
+ width: 12.5%;
769
+ }
770
+ .ui.nine.column.table td {
771
+ width: 11.11111111%;
772
+ }
773
+ .ui.ten.column.table td {
774
+ width: 10%;
775
+ }
776
+ .ui.eleven.column.table td {
777
+ width: 9.09090909%;
778
+ }
779
+ .ui.twelve.column.table td {
780
+ width: 8.33333333%;
781
+ }
782
+ .ui.thirteen.column.table td {
783
+ width: 7.69230769%;
784
+ }
785
+ .ui.fourteen.column.table td {
786
+ width: 7.14285714%;
787
+ }
788
+ .ui.fifteen.column.table td {
789
+ width: 6.66666667%;
790
+ }
791
+ .ui.sixteen.column.table td {
792
+ width: 6.25%;
793
+ }
794
+
795
+ /* Column Width */
796
+ .ui.table th.one.wide,
797
+ .ui.table td.one.wide {
798
+ width: 6.25%;
799
+ }
800
+ .ui.table th.two.wide,
801
+ .ui.table td.two.wide {
802
+ width: 12.5%;
803
+ }
804
+ .ui.table th.three.wide,
805
+ .ui.table td.three.wide {
806
+ width: 18.75%;
807
+ }
808
+ .ui.table th.four.wide,
809
+ .ui.table td.four.wide {
810
+ width: 25%;
811
+ }
812
+ .ui.table th.five.wide,
813
+ .ui.table td.five.wide {
814
+ width: 31.25%;
815
+ }
816
+ .ui.table th.six.wide,
817
+ .ui.table td.six.wide {
818
+ width: 37.5%;
819
+ }
820
+ .ui.table th.seven.wide,
821
+ .ui.table td.seven.wide {
822
+ width: 43.75%;
823
+ }
824
+ .ui.table th.eight.wide,
825
+ .ui.table td.eight.wide {
826
+ width: 50%;
827
+ }
828
+ .ui.table th.nine.wide,
829
+ .ui.table td.nine.wide {
830
+ width: 56.25%;
831
+ }
832
+ .ui.table th.ten.wide,
833
+ .ui.table td.ten.wide {
834
+ width: 62.5%;
835
+ }
836
+ .ui.table th.eleven.wide,
837
+ .ui.table td.eleven.wide {
838
+ width: 68.75%;
839
+ }
840
+ .ui.table th.twelve.wide,
841
+ .ui.table td.twelve.wide {
842
+ width: 75%;
843
+ }
844
+ .ui.table th.thirteen.wide,
845
+ .ui.table td.thirteen.wide {
846
+ width: 81.25%;
847
+ }
848
+ .ui.table th.fourteen.wide,
849
+ .ui.table td.fourteen.wide {
850
+ width: 87.5%;
851
+ }
852
+ .ui.table th.fifteen.wide,
853
+ .ui.table td.fifteen.wide {
854
+ width: 93.75%;
855
+ }
856
+ .ui.table th.sixteen.wide,
857
+ .ui.table td.sixteen.wide {
858
+ width: 100%;
859
+ }
860
+
861
+ /*--------------
862
+ Sortable
863
+ ---------------*/
864
+
865
+ .ui.sortable.table thead th {
866
+ cursor: pointer;
867
+ white-space: nowrap;
868
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
869
+ color: rgba(0, 0, 0, 0.87);
870
+ }
871
+ .ui.sortable.table thead th:first-child {
872
+ border-left: none;
873
+ }
874
+ .ui.sortable.table thead th.sorted,
875
+ .ui.sortable.table thead th.sorted:hover {
876
+ -webkit-user-select: none;
877
+ -moz-user-select: none;
878
+ -ms-user-select: none;
879
+ user-select: none;
880
+ }
881
+ .ui.sortable.table thead th:after {
882
+ display: none;
883
+ font-style: normal;
884
+ font-weight: normal;
885
+ text-decoration: inherit;
886
+ content: '';
887
+ height: 1em;
888
+ width: auto;
889
+ opacity: 0.8;
890
+ margin: 0em 0em 0em 0.5em;
891
+ font-family: 'Icons';
892
+ }
893
+ .ui.sortable.table thead th.ascending:after {
894
+ content: '\f0d8';
895
+ }
896
+ .ui.sortable.table thead th.descending:after {
897
+ content: '\f0d7';
898
+ }
899
+
900
+ /* Hover */
901
+ .ui.sortable.table th.disabled:hover {
902
+ cursor: auto;
903
+ color: rgba(40, 40, 40, 0.3);
904
+ }
905
+ .ui.sortable.table thead th:hover {
906
+ background: rgba(0, 0, 0, 0.05);
907
+ color: rgba(0, 0, 0, 0.8);
908
+ }
909
+
910
+ /* Sorted */
911
+ .ui.sortable.table thead th.sorted {
912
+ background: rgba(0, 0, 0, 0.05);
913
+ color: rgba(0, 0, 0, 0.95);
914
+ }
915
+ .ui.sortable.table thead th.sorted:after {
916
+ display: inline-block;
917
+ }
918
+
919
+ /* Sorted Hover */
920
+ .ui.sortable.table thead th.sorted:hover {
921
+ background: rgba(0, 0, 0, 0.05);
922
+ color: rgba(0, 0, 0, 0.95);
923
+ }
924
+
925
+ /* Inverted */
926
+ .ui.inverted.sortable.table thead th.sorted {
927
+ background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
928
+ background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
929
+ background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
930
+ color: #ffffff;
931
+ }
932
+ .ui.inverted.sortable.table thead th:hover {
933
+ background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
934
+ background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
935
+ background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
936
+ color: #ffffff;
937
+ }
938
+ .ui.inverted.sortable.table thead th {
939
+ border-left-color: transparent;
940
+ border-right-color: transparent;
941
+ }
942
+
943
+ /*--------------
944
+ Inverted
945
+ ---------------*/
946
+
947
+
948
+ /* Text Color */
949
+ .ui.inverted.table {
950
+ background: #333333;
951
+ color: rgba(255, 255, 255, 0.9);
952
+ border: none;
953
+ }
954
+ .ui.inverted.table th {
955
+ background-color: rgba(0, 0, 0, 0.15);
956
+ border-color: rgba(255, 255, 255, 0.1) !important;
957
+ color: rgba(255, 255, 255, 0.9) !important;
958
+ }
959
+ .ui.inverted.table tr td {
960
+ border-color: rgba(255, 255, 255, 0.1) !important;
961
+ }
962
+ .ui.inverted.table tr.disabled td,
963
+ .ui.inverted.table tr td.disabled,
964
+ .ui.inverted.table tr.disabled:hover td,
965
+ .ui.inverted.table tr:hover td.disabled {
966
+ pointer-events: none;
967
+ color: rgba(225, 225, 225, 0.3);
968
+ }
969
+
970
+ /* Definition */
971
+ .ui.inverted.definition.table tfoot:not(.full-width) th:first-child,
972
+ .ui.inverted.definition.table thead:not(.full-width) th:first-child {
973
+ background: #FFFFFF;
974
+ }
975
+ .ui.inverted.definition.table tr td:first-child {
976
+ background: rgba(255, 255, 255, 0.02);
977
+ color: #ffffff;
978
+ }
979
+
980
+ /*--------------
981
+ Collapsing
982
+ ---------------*/
983
+
984
+ .ui.collapsing.table {
985
+ width: auto;
986
+ }
987
+
988
+ /*--------------
989
+ Basic
990
+ ---------------*/
991
+
992
+ .ui.basic.table {
993
+ background: transparent;
994
+ border: 1px solid rgba(34, 36, 38, 0.15);
995
+ -webkit-box-shadow: none;
996
+ box-shadow: none;
997
+ }
998
+ .ui.basic.table thead,
999
+ .ui.basic.table tfoot {
1000
+ -webkit-box-shadow: none;
1001
+ box-shadow: none;
1002
+ }
1003
+ .ui.basic.table th {
1004
+ background: transparent;
1005
+ border-left: none;
1006
+ }
1007
+ .ui.basic.table tbody tr {
1008
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1009
+ }
1010
+ .ui.basic.table td {
1011
+ background: transparent;
1012
+ }
1013
+ .ui.basic.striped.table tbody tr:nth-child(2n) {
1014
+ background-color: rgba(0, 0, 0, 0.05) !important;
1015
+ }
1016
+
1017
+ /* Very Basic */
1018
+ .ui[class*="very basic"].table {
1019
+ border: none;
1020
+ }
1021
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
1022
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
1023
+ padding: '';
1024
+ }
1025
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,
1026
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child {
1027
+ padding-left: 0em;
1028
+ }
1029
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,
1030
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child {
1031
+ padding-right: 0em;
1032
+ }
1033
+ .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
1034
+ padding-top: 0em;
1035
+ }
1036
+
1037
+ /*--------------
1038
+ Celled
1039
+ ---------------*/
1040
+
1041
+ .ui.celled.table tr th,
1042
+ .ui.celled.table tr td {
1043
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
1044
+ }
1045
+ .ui.celled.table tr th:first-child,
1046
+ .ui.celled.table tr td:first-child {
1047
+ border-left: none;
1048
+ }
1049
+
1050
+ /*--------------
1051
+ Padded
1052
+ ---------------*/
1053
+
1054
+ .ui.padded.table th {
1055
+ padding-left: 1em;
1056
+ padding-right: 1em;
1057
+ }
1058
+ .ui.padded.table th,
1059
+ .ui.padded.table td {
1060
+ padding: 1em 1em;
1061
+ }
1062
+
1063
+ /* Very */
1064
+ .ui[class*="very padded"].table th {
1065
+ padding-left: 1.5em;
1066
+ padding-right: 1.5em;
1067
+ }
1068
+ .ui[class*="very padded"].table td {
1069
+ padding: 1.5em 1.5em;
1070
+ }
1071
+
1072
+ /*--------------
1073
+ Compact
1074
+ ---------------*/
1075
+
1076
+ .ui.compact.table th {
1077
+ padding-left: 0.7em;
1078
+ padding-right: 0.7em;
1079
+ }
1080
+ .ui.compact.table td {
1081
+ padding: 0.5em 0.7em;
1082
+ }
1083
+
1084
+ /* Very */
1085
+ .ui[class*="very compact"].table th {
1086
+ padding-left: 0.6em;
1087
+ padding-right: 0.6em;
1088
+ }
1089
+ .ui[class*="very compact"].table td {
1090
+ padding: 0.4em 0.6em;
1091
+ }
1092
+
1093
+ /*--------------
1094
+ Sizes
1095
+ ---------------*/
1096
+
1097
+
1098
+ /* Small */
1099
+ .ui.small.table {
1100
+ font-size: 0.9em;
1101
+ }
1102
+
1103
+ /* Standard */
1104
+ .ui.table {
1105
+ font-size: 1em;
1106
+ }
1107
+
1108
+ /* Large */
1109
+ .ui.large.table {
1110
+ font-size: 1.1em;
1111
+ }
1112
+
1113
+
1114
+ /*******************************
1115
+ Site Overrides
1116
+ *******************************/
1117
+