semantic-ui-sass 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +51 -0
  6. data/Rakefile +5 -0
  7. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  8. data/app/assets/fonts/semantic-ui/basic.icons.svg +450 -0
  9. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  10. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.svg +399 -0
  14. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  15. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  16. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  17. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  18. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  19. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  20. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  21. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  22. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  23. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  24. data/app/assets/javascripts/semantic-ui.js +20 -0
  25. data/app/assets/javascripts/semantic-ui/accordion.js +419 -0
  26. data/app/assets/javascripts/semantic-ui/behavior/api.js +638 -0
  27. data/app/assets/javascripts/semantic-ui/behavior/colorize.js +270 -0
  28. data/app/assets/javascripts/semantic-ui/behavior/form.js +702 -0
  29. data/app/assets/javascripts/semantic-ui/behavior/state.js +725 -0
  30. data/app/assets/javascripts/semantic-ui/chatroom.js +769 -0
  31. data/app/assets/javascripts/semantic-ui/checkbox.js +344 -0
  32. data/app/assets/javascripts/semantic-ui/dimmer.js +564 -0
  33. data/app/assets/javascripts/semantic-ui/dropdown.js +724 -0
  34. data/app/assets/javascripts/semantic-ui/modal.js +553 -0
  35. data/app/assets/javascripts/semantic-ui/nag.js +545 -0
  36. data/app/assets/javascripts/semantic-ui/popup.js +727 -0
  37. data/app/assets/javascripts/semantic-ui/rating.js +403 -0
  38. data/app/assets/javascripts/semantic-ui/search.js +772 -0
  39. data/app/assets/javascripts/semantic-ui/shape.js +778 -0
  40. data/app/assets/javascripts/semantic-ui/sidebar.js +490 -0
  41. data/app/assets/javascripts/semantic-ui/tab.js +689 -0
  42. data/app/assets/javascripts/semantic-ui/transition.js +654 -0
  43. data/app/assets/javascripts/semantic-ui/video.js +457 -0
  44. data/app/assets/stylesheets/semantic-ui.scss +4 -0
  45. data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
  46. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +77 -0
  47. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +569 -0
  48. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +643 -0
  49. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1767 -0
  50. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +347 -0
  51. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +524 -0
  52. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +12 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +479 -0
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1187 -0
  55. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +199 -0
  56. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +342 -0
  57. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +772 -0
  58. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +181 -0
  59. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +338 -0
  60. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +827 -0
  61. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +185 -0
  62. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +352 -0
  63. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +464 -0
  64. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +293 -0
  65. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +199 -0
  66. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +16 -0
  67. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +281 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +481 -0
  69. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +236 -0
  70. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +548 -0
  71. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +217 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +173 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +255 -0
  74. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +179 -0
  75. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +365 -0
  76. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +273 -0
  77. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +113 -0
  78. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +150 -0
  79. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +63 -0
  80. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1096 -0
  81. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +98 -0
  82. data/app/assets/stylesheets/semantic-ui/views/_all.scss +5 -0
  83. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +221 -0
  84. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +152 -0
  85. data/app/assets/stylesheets/semantic-ui/views/_item.scss +651 -0
  86. data/app/assets/stylesheets/semantic-ui/views/_list.scss +555 -0
  87. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +27 -0
  88. data/lib/semantic/ui/sass.rb +10 -0
  89. data/lib/semantic/ui/sass/engine.rb +13 -0
  90. data/lib/semantic/ui/sass/version.rb +8 -0
  91. data/semantic-ui-sass.gemspec +24 -0
  92. data/tasks/converter.rb +237 -0
  93. metadata +177 -0
@@ -0,0 +1,347 @@
1
+ /*
2
+ * # Semantic - Message
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*******************************
13
+ Message
14
+ *******************************/
15
+
16
+ .ui.message {
17
+ position: relative;
18
+ min-height: 18px;
19
+ margin: 1em 0em;
20
+
21
+ height: auto;
22
+ background-color: #EFEFEF;
23
+ padding: 1em;
24
+
25
+ line-height: 1.33;
26
+ color: rgba(0, 0, 0, 0.6);
27
+
28
+ -webkit-transition:
29
+ opacity 0.1s ease,
30
+ color 0.1s ease,
31
+ background 0.1s ease,
32
+ box-shadow 0.1s ease
33
+ ;
34
+ -moz-transition:
35
+ opacity 0.1s ease,
36
+ color 0.1s ease,
37
+ background 0.1s ease,
38
+ box-shadow 0.1s ease
39
+ ;
40
+ -o-transition:
41
+ opacity 0.1s ease,
42
+ color 0.1s ease,
43
+ background 0.1s ease,
44
+ box-shadow 0.1s ease
45
+ ;
46
+ -ms-transition:
47
+ opacity 0.1s ease,
48
+ color 0.1s ease,
49
+ background 0.1s ease,
50
+ box-shadow 0.1s ease
51
+ ;
52
+ transition:
53
+ opacity 0.1s ease,
54
+ color 0.1s ease,
55
+ background 0.1s ease,
56
+ box-shadow 0.1s ease
57
+ ;
58
+
59
+ -webkit-box-sizing: border-box;
60
+ -moz-box-sizing: border-box;
61
+ -ms-box-sizing: border-box;
62
+ box-sizing: border-box;
63
+
64
+ -webkit-border-radius: 0.325em 0.325em 0.325em 0.325em;
65
+ -moz-border-radius: 0.325em 0.325em 0.325em 0.325em;
66
+ border-radius: 0.325em 0.325em 0.325em 0.325em;
67
+ }
68
+
69
+ .ui.message:first-child {
70
+ margin-top: 0em;
71
+ }
72
+ .ui.message:last-child {
73
+ margin-bottom: 0em;
74
+ }
75
+
76
+
77
+ /*--------------
78
+ Content
79
+ ---------------*/
80
+
81
+ /* block with headers */
82
+ .ui.message .header {
83
+ margin: 0em;
84
+ font-size: 1.33em;
85
+ font-weight: bold;
86
+ }
87
+
88
+ /* block with paragraphs */
89
+ .ui.message p {
90
+ opacity: 0.85;
91
+ margin: 1em 0em;
92
+ }
93
+ .ui.message p:first-child {
94
+ margin-top: 0em;
95
+ }
96
+ .ui.message p:last-child {
97
+ margin-bottom: 0em;
98
+ }
99
+ .ui.message .header + p {
100
+ margin-top: 0.3em;
101
+ }
102
+ .ui.message > :first-child {
103
+ margin-top: 0em;
104
+ }
105
+ .ui.message > :last-child {
106
+ margin-bottom: 0em;
107
+ }
108
+
109
+ /* block with child list */
110
+ .ui.message ul.list {
111
+ opacity: 0.85;
112
+ list-style-position: inside;
113
+ margin: 0.2em 0em;
114
+ padding: 0em;
115
+ }
116
+ .ui.message ul.list li {
117
+ position: relative;
118
+ list-style-type: none;
119
+ margin: 0em 0em 0em 1em;
120
+ padding: 0em;
121
+ }
122
+ .ui.message ul.list li:before {
123
+ position: absolute;
124
+ content: '\2022';
125
+ top: -0.05em;
126
+ left: -0.8em;
127
+
128
+ height: 100%;
129
+ vertical-align: baseline;
130
+ opacity: 0.5;
131
+ }
132
+ .ui.message ul.list li:first-child {
133
+ margin-top: 0em;
134
+ }
135
+
136
+ /* dismissable block */
137
+ .ui.message > .close.icon {
138
+ cursor: pointer;
139
+ position: absolute;
140
+ top: 1em;
141
+ right: 0.5em;
142
+ opacity: 0.7;
143
+
144
+ -webkit-transition:
145
+ opacity 0.1s linear
146
+ ;
147
+ -moz-transition:
148
+ opacity 0.1s linear
149
+ ;
150
+ -o-transition:
151
+ opacity 0.1s linear
152
+ ;
153
+ -ms-transition:
154
+ opacity 0.1s linear
155
+ ;
156
+ transition:
157
+ opacity 0.1s linear
158
+ ;
159
+ }
160
+ .ui.message > .close.icon:hover {
161
+ opacity: 1;
162
+ }
163
+
164
+
165
+
166
+ /*******************************
167
+ States
168
+ *******************************/
169
+
170
+ .ui.message.visible,
171
+ .ui.header.visible {
172
+ display: block !important;
173
+ }
174
+ .ui.message.hidden,
175
+ .ui.header.hidden {
176
+ display: none;
177
+ }
178
+
179
+ /*******************************
180
+ Variations
181
+ *******************************/
182
+
183
+ /*--------------
184
+ Compact
185
+ ---------------*/
186
+
187
+ .ui.compact.message {
188
+ display: inline-block;
189
+ }
190
+
191
+
192
+ /*--------------
193
+ Attached
194
+ ---------------*/
195
+
196
+ .ui.attached.message {
197
+ margin-left: -1px;
198
+ margin-right: -1px;
199
+ margin-bottom: -1px;
200
+
201
+ -webkit-border-radius: 0.325em 0.325em 0em 0em;
202
+ -moz-border-radius: 0.325em 0.325em 0em 0em;
203
+ border-radius: 0.325em 0.325em 0em 0em;
204
+
205
+ -webkit-box-shadow:
206
+ 0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
207
+ ;
208
+ -moz-box-shadow:
209
+ 0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
210
+ ;
211
+ box-shadow:
212
+ 0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
213
+ ;
214
+ }
215
+ .ui.bottom.attached.message {
216
+ margin-top: -1px;
217
+
218
+ -webkit-border-radius: 0em 0em 0.325em 0.325em;
219
+ -moz-border-radius: 0em 0em 0.325em 0.325em;
220
+ border-radius: 0em 0em 0.325em 0.325em;
221
+ }
222
+
223
+
224
+ /*--------------
225
+ Icon
226
+ ---------------*/
227
+
228
+ .ui.icon.message {
229
+ display: table;
230
+ width: 100%;
231
+ }
232
+ .ui.icon.message > .icon {
233
+ display: table-cell;
234
+ vertical-align: middle;
235
+ font-size: 3.8em;
236
+ opacity: 0.2;
237
+ }
238
+ .ui.icon.message > .icon + .content {
239
+ padding-left: 1em;
240
+ }
241
+ .ui.icon.message > .content {
242
+ display: table-cell;
243
+ vertical-align: middle;
244
+ }
245
+
246
+ /*--------------
247
+ Inverted
248
+ ---------------*/
249
+
250
+ .ui.inverted.message {
251
+ background-color: rgba(255, 255, 255, 0.05);
252
+ color: rgba(255, 255, 255, 0.95);
253
+ }
254
+
255
+
256
+ /*--------------
257
+ Floating
258
+ ---------------*/
259
+
260
+ .ui.floating.message {
261
+ -webkit-box-shadow:
262
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
263
+ 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset
264
+ ;
265
+ -moz-box-shadow:
266
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
267
+ 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset
268
+ ;
269
+ box-shadow:
270
+ 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
271
+ 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset
272
+ ;
273
+ }
274
+
275
+
276
+ /*--------------
277
+ Colors
278
+ ---------------*/
279
+
280
+ .ui.black.message {
281
+ background-color: #333333;
282
+ color: rgba(255, 255, 255, 0.95);
283
+ }
284
+
285
+
286
+
287
+ /*--------------
288
+ Types
289
+ ---------------*/
290
+ .ui.blue.message,
291
+ .ui.info.message {
292
+ background-color: #E6F4F9;
293
+ color: #4D8796;
294
+ }
295
+
296
+ /* Green Text Block */
297
+ .ui.green.message {
298
+ background-color: #DEFCD5;
299
+ color: #52A954;
300
+ }
301
+
302
+ /* Yellow Text Block */
303
+ .ui.yellow.message,
304
+ .ui.warning.message {
305
+ background-color: #F6F3D5;
306
+ color: #96904D;
307
+ }
308
+ /* Red Text Block */
309
+ .ui.red.message {
310
+ background-color: #F1D7D7;
311
+
312
+ color: #A95252;
313
+ }
314
+
315
+ /* Success Text Block */
316
+ .ui.success.message,
317
+ .ui.positive.message {
318
+ background-color: #5BBD72;
319
+ color: #FFFFFF;
320
+ }
321
+ /* Error Text Block */
322
+ .ui.error.message,
323
+ .ui.negative.message {
324
+ background-color: #D95C5C;
325
+ color: #FFFFFF;
326
+ }
327
+
328
+
329
+ /*--------------
330
+ Sizes
331
+ ---------------*/
332
+
333
+ .ui.small.message {
334
+ font-size: 0.875em;
335
+ }
336
+ .ui.message {
337
+ font-size: 1em;
338
+ }
339
+ .ui.large.message {
340
+ font-size: 1.125em;
341
+ }
342
+ .ui.huge.message {
343
+ font-size: 1.5em;
344
+ }
345
+ .ui.massive.message {
346
+ font-size: 2em;
347
+ }
@@ -0,0 +1,524 @@
1
+ /*
2
+ * # Semantic - Table
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*******************************
13
+ Table
14
+ *******************************/
15
+
16
+ /* Prototype */
17
+ .ui.table {
18
+ width: 100%;
19
+ border-collapse: collapse;
20
+ }
21
+
22
+ /* Table Content */
23
+ .ui.table th,
24
+ .ui.table tr,
25
+ .ui.table td {
26
+ border-collapse: collapse;
27
+
28
+ -webkit-box-sizing: border-box;
29
+ -moz-box-sizing: border-box;
30
+ -ms-box-sizing: border-box;
31
+ box-sizing: border-box;
32
+
33
+ -webkit-transition: all 0.1s ease-out;
34
+ -moz-transition: all 0.1s ease-out;
35
+ -o-transition: all 0.1s ease-out;
36
+ -ms-transition: all 0.1s ease-out;
37
+ transition: all 0.1s ease-out;
38
+ }
39
+
40
+ /* Headers */
41
+ .ui.table thead {
42
+ border-bottom: 1px solid rgba(0, 0, 0, 0.03);
43
+ }
44
+ .ui.table th {
45
+ cursor: auto;
46
+
47
+ background-color: rgba(0, 0, 0, 0.03);
48
+
49
+ text-align: left;
50
+ color: rgba(0, 0, 0, 0.8);
51
+ padding: 0.5em 0.7em;
52
+ vertical-align: middle;
53
+ }
54
+ .ui.table thead th:first-child {
55
+ border-radius: 5px 0px 0px 0px;
56
+ }
57
+ .ui.table thead th:last-child {
58
+ border-radius: 0px 5px 0px 0px;
59
+ }
60
+ .ui.table tfoot th:first-child {
61
+ border-radius: 0px 0px 0px 5px;
62
+ }
63
+ .ui.table tfoot th:last-child {
64
+ border-radius: 0px 0px 5px 0px;
65
+ }
66
+
67
+ /* Table Cells */
68
+ .ui.table td {
69
+ padding: 0.40em 0.7em;
70
+ vertical-align: middle;
71
+ }
72
+
73
+ /* Footer */
74
+ .ui.table tfoot {
75
+ border-top: 1px solid rgba(0, 0, 0, 0.03);
76
+ }
77
+ .ui.table tfoot th {
78
+ font-weight: normal;
79
+ font-style: italic;
80
+ }
81
+
82
+ /* Table Striping */
83
+ .ui.table tbody tr:nth-child(2n) {
84
+ background-color: rgba(0, 0, 50, 0.02);
85
+ }
86
+
87
+ /* Icons */
88
+ .ui.table > .icon {
89
+ vertical-align: baseline;
90
+ }
91
+ .ui.table > .icon:only-child {
92
+ margin: 0em;
93
+ }
94
+
95
+ /* Table Segment */
96
+ .ui.table.segment:after {
97
+ display: none;
98
+ }
99
+ .ui.table.segment.stacked:after {
100
+ display: block;
101
+ }
102
+
103
+ /*******************************
104
+ States
105
+ *******************************/
106
+
107
+ /*--------------
108
+ Hover
109
+ ---------------*/
110
+
111
+ /* Sortable */
112
+ .ui.sortable.table thead th:hover {
113
+ background-image: none;
114
+ color: rgba(0, 0, 0, 0.8);
115
+ }
116
+ .ui.sortable.table th.disabled:hover {
117
+ cursor: auto;
118
+ background-color: rgba(0, 0, 0, 0.1);
119
+
120
+ text-align: left;
121
+ font-weight: bold;
122
+ color: #333333;
123
+ color: rgba(0, 0, 0, 0.8);
124
+ }
125
+
126
+
127
+ /*--------------
128
+ Positive
129
+ ---------------*/
130
+
131
+ .ui.table tr.positive,
132
+ .ui.table td.positive {
133
+ -webkit-box-shadow: 2px 0px 0px #119000 inset;
134
+ -moz-box-shadow: 2px 0px 0px #119000 inset;
135
+ box-shadow: 2px 0px 0px #119000 inset;
136
+ }
137
+ .ui.table tr.positive td,
138
+ .ui.table td.positive {
139
+ background-color: #F2F8F0 !important;
140
+ color: #119000 !important;
141
+ }
142
+ .ui.celled.table tr.positive:hover td,
143
+ .ui.celled.table tr:hover td.positive,
144
+ .ui.table tr.positive:hover td,
145
+ .ui.table td:hover.positive,
146
+ .ui.table th:hover.positive {
147
+ background-color: #ECF5E9 !important;
148
+ color: #119000 !important;
149
+ }
150
+
151
+ /*--------------
152
+ Negative
153
+ ---------------*/
154
+
155
+ .ui.table tr.negative,
156
+ .ui.table td.negative {
157
+ -webkit-box-shadow: 2px 0px 0px #CD2929 inset;
158
+ -moz-box-shadow: 2px 0px 0px #CD2929 inset;
159
+ box-shadow: 2px 0px 0px #CD2929 inset;
160
+ }
161
+ .ui.table tr.negative td,
162
+ .ui.table td.negative {
163
+ background-color: #F9F4F4;
164
+ color: #CD2929 !important;
165
+ }
166
+ .ui.celled.table tr.negative:hover td,
167
+ .ui.celled.table tr:hover td.negative,
168
+ .ui.table tr.negative:hover td,
169
+ .ui.table td:hover.negative,
170
+ .ui.table th:hover.negative {
171
+ background-color: #F2E8E8 !important;
172
+ color: #CD2929 !important;
173
+ }
174
+
175
+ /*--------------
176
+ Error
177
+ ---------------*/
178
+
179
+ .ui.table tr.error,
180
+ .ui.table td.error {
181
+ -webkit-box-shadow: 2px 0px 0px #CD2929 inset;
182
+ -moz-box-shadow: 2px 0px 0px #CD2929 inset;
183
+ box-shadow: 2px 0px 0px #CD2929 inset;
184
+ }
185
+ .ui.table tr.error td,
186
+ .ui.table td.error,
187
+ .ui.table th.error {
188
+ background-color: #F9F4F4 !important;
189
+ color: #CD2929 !important;
190
+ }
191
+ .ui.celled.table tr.error:hover td,
192
+ .ui.celled.table tr:hover td.error,
193
+ .ui.table tr.error:hover td,
194
+ .ui.table td:hover.error,
195
+ .ui.table th:hover.error {
196
+ background-color: #F2E8E8 !important;
197
+ color: #CD2929 !important;
198
+ }
199
+
200
+ /*--------------
201
+ Warning
202
+ ---------------*/
203
+
204
+ .ui.table tr.warning,
205
+ .ui.table td.warning {
206
+ -webkit-box-shadow: 2px 0px 0px #7D6C00 inset;
207
+ -moz-box-shadow: 2px 0px 0px #7D6C00 inset;
208
+ box-shadow: 2px 0px 0px #7D6C00 inset;
209
+ }
210
+ .ui.table tr.warning td,
211
+ .ui.table td.warning,
212
+ .ui.table th.warning {
213
+ background-color: #FBF6E9;
214
+ color: #7D6C00 !important;
215
+ }
216
+ .ui.celled.table tr.warning:hover td,
217
+ .ui.celled.table tr:hover td.warning,
218
+ .ui.table tr.warning:hover td,
219
+ .ui.table td:hover.warning,
220
+ .ui.table th:hover.warning {
221
+ background-color: #F3EDDC !important;
222
+ color: #7D6C00 !important;
223
+ }
224
+
225
+
226
+ /*--------------
227
+ Active
228
+ ---------------*/
229
+
230
+ .ui.table tr.active,
231
+ .ui.table td.active {
232
+ -webkit-box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
233
+ -moz-box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
234
+ box-shadow: 2px 0px 0px rgba(50, 50, 50, 0.9) inset;
235
+ }
236
+
237
+ .ui.table tr.active td,
238
+ .ui.table tr td.active {
239
+ background-color: #E0E0E0 !important;
240
+ color: rgba(50, 50, 50, 0.9);
241
+ /* border-color: rgba(0, 0, 0, 0.15) !important; */
242
+ }
243
+
244
+ /*--------------
245
+ Disabled
246
+ ---------------*/
247
+
248
+ .ui.table tr.disabled td,
249
+ .ui.table tr td.disabled,
250
+ .ui.table tr.disabled:hover td,
251
+ .ui.table tr:hover td.disabled {
252
+ color: rgba(150, 150, 150, 0.3);
253
+ }
254
+
255
+ /*******************************
256
+ Variations
257
+ *******************************/
258
+
259
+ /*--------------
260
+ Column Count
261
+ ---------------*/
262
+
263
+ .ui.two.column.table td {
264
+ width: 50%;
265
+ }
266
+ .ui.three.column.table td {
267
+ width: 33.3333%;
268
+ }
269
+ .ui.four.column.table td {
270
+ width: 25%;
271
+ }
272
+ .ui.five.column.table td {
273
+ width: 20%;
274
+ }
275
+ .ui.six.column.table td {
276
+ width: 16.66667%;
277
+ }
278
+ .ui.seven.column.table td {
279
+ width: 14.2857%;
280
+ }
281
+ .ui.eight.column.table td {
282
+ width: 12.5%;
283
+ }
284
+ .ui.nine.column.table td {
285
+ width: 11.1111%;
286
+ }
287
+ .ui.ten.column.table td {
288
+ width: 10%;
289
+ }
290
+ .ui.eleven.column.table td {
291
+ width: 9.0909%;
292
+ }
293
+ .ui.twelve.column.table td {
294
+ width: 8.3333%;
295
+ }
296
+ .ui.thirteen.column.table td {
297
+ width: 7.6923%;
298
+ }
299
+ .ui.fourteen.column.table td {
300
+ width: 7.1428%;
301
+ }
302
+ .ui.fifteen.column.table td {
303
+ width: 6.6666%;
304
+ }
305
+ .ui.sixteen.column.table td {
306
+ width: 6.25%;
307
+ }
308
+
309
+ /* Column Width */
310
+ .ui.table th.one.wide,
311
+ .ui.table td.one.wide {
312
+ width: 6.25%;
313
+ }
314
+ .ui.table th.two.wide,
315
+ .ui.table td.two.wide {
316
+ width: 12.5%;
317
+ }
318
+ .ui.table th.three.wide,
319
+ .ui.table td.three.wide {
320
+ width: 18.75%;
321
+ }
322
+ .ui.table th.four.wide,
323
+ .ui.table td.four.wide {
324
+ width: 25%;
325
+ }
326
+ .ui.table th.five.wide,
327
+ .ui.table td.five.wide {
328
+ width: 31.25%;
329
+ }
330
+ .ui.table th.six.wide,
331
+ .ui.table td.six.wide {
332
+ width: 37.5%;
333
+ }
334
+ .ui.table th.seven.wide,
335
+ .ui.table td.seven.wide {
336
+ width: 43.75%;
337
+ }
338
+ .ui.table th.eight.wide,
339
+ .ui.table td.eight.wide {
340
+ width: 50%;
341
+ }
342
+ .ui.table th.nine.wide,
343
+ .ui.table td.nine.wide {
344
+ width: 56.25%;
345
+ }
346
+ .ui.table th.ten.wide,
347
+ .ui.table td.ten.wide {
348
+ width: 62.5%;
349
+ }
350
+ .ui.table th.eleven.wide,
351
+ .ui.table td.eleven.wide {
352
+ width: 68.75%;
353
+ }
354
+ .ui.table th.twelve.wide,
355
+ .ui.table td.twelve.wide {
356
+ width: 75%;
357
+ }
358
+ .ui.table th.thirteen.wide,
359
+ .ui.table td.thirteen.wide {
360
+ width: 81.25%;
361
+ }
362
+ .ui.table th.fourteen.wide,
363
+ .ui.table td.fourteen.wide {
364
+ width: 87.5%;
365
+ }
366
+ .ui.table th.fifteen.wide,
367
+ .ui.table td.fifteen.wide {
368
+ width: 93.75%;
369
+ }
370
+ .ui.table th.sixteen.wide,
371
+ .ui.table td.sixteen.wide {
372
+ width: 100%;
373
+ }
374
+
375
+
376
+ /*--------------
377
+ Celled
378
+ ---------------*/
379
+
380
+ .ui.celled.table {
381
+ color: rgba(0, 0, 0, 0.8);
382
+ }
383
+ .ui.celled.table tbody tr,
384
+ .ui.celled.table tfoot tr {
385
+ border: none;
386
+ }
387
+ .ui.celled.table th,
388
+ .ui.celled.table tbody td {
389
+ border: 1px solid rgba(0, 0, 0, 0.1);
390
+ }
391
+
392
+ /* Coupling with segment */
393
+ .ui.celled.table.segment th {
394
+ border: none;
395
+ }
396
+ .ui.celled.table.segment tbody td:first-child {
397
+ border-left: none;
398
+ }
399
+ .ui.celled.table.segment tbody td:last-child {
400
+ border-right: none;
401
+ }
402
+
403
+ /*--------------
404
+ Sortable
405
+ ---------------*/
406
+
407
+ .ui.sortable.table thead th {
408
+ cursor: pointer;
409
+ white-space: nowrap;
410
+ }
411
+ .ui.sortable.table thead th.sorted,
412
+ .ui.sortable.table thead th.sorted:hover {
413
+ -webkit-user-select: none;
414
+ -moz-user-select: none;
415
+ -ms-user-select: none;
416
+ user-select: none;
417
+ }
418
+
419
+ .ui.sortable.table thead th:after {
420
+ display: inline-block;
421
+ content: '';
422
+ width: 1em;
423
+ opacity: 0.8;
424
+
425
+ margin: 0em 0em 0em 0.5em;
426
+
427
+ font-family: 'Icons';
428
+ font-style: normal;
429
+ font-weight: normal;
430
+ text-decoration: inherit;
431
+ }
432
+ .ui.sortable.table thead th.ascending:after {
433
+ content: '\25b4';
434
+ }
435
+ .ui.sortable.table thead th.descending:after {
436
+ content: '\25be';
437
+ }
438
+
439
+ /*--------------
440
+ Inverted
441
+ ---------------*/
442
+
443
+ /* Text Color */
444
+ .ui.inverted.table td {
445
+ color: rgba(255, 255, 255, 0.9);
446
+ }
447
+ .ui.inverted.table th {
448
+ background-color: rgba(0, 0, 0, 0.15);
449
+ color: rgba(255, 255, 255, 0.9);
450
+ }
451
+
452
+ /* Stripes */
453
+ .ui.inverted.table tbody tr:nth-child(2n) {
454
+ background-color: rgba(255, 255, 255, 0.06);
455
+ }
456
+
457
+
458
+ /*--------------
459
+ Definition
460
+ ---------------*/
461
+
462
+ .ui.definition.table td:first-child {
463
+ font-weight: bold;
464
+ }
465
+
466
+
467
+ /*--------------
468
+ Collapsing
469
+ ---------------*/
470
+
471
+ .ui.collapsing.table {
472
+ width: auto;
473
+ }
474
+
475
+ /*--------------
476
+ Basic
477
+ ---------------*/
478
+
479
+ .ui.basic.table th {
480
+ background-color: transparent;
481
+ padding: 0.5em;
482
+ }
483
+ .ui.basic.table tbody tr {
484
+ border-bottom: 1px solid rgba(0, 0, 0, 0.03);
485
+ }
486
+ .ui.basic.table td {
487
+ padding: 0.8em 0.5em;
488
+ }
489
+
490
+
491
+ /*--------------
492
+ Padded
493
+ ---------------*/
494
+
495
+ .ui.padded.table th,
496
+ .ui.padded.table td {
497
+ padding: 0.8em 1em;
498
+ }
499
+
500
+ .ui.compact.table th {
501
+ padding: 0.3em 0.5em;
502
+ }
503
+ .ui.compact.table td {
504
+ padding: 0.2em 0.5em;
505
+ }
506
+
507
+ /*--------------
508
+ Sizes
509
+ ---------------*/
510
+
511
+ /* Small */
512
+ .ui.small.table {
513
+ font-size: 0.875em;
514
+ }
515
+
516
+ /* Standard */
517
+ .ui.table {
518
+ font-size: 1em;
519
+ }
520
+
521
+ /* Large */
522
+ .ui.large.table {
523
+ font-size: 1.1em;
524
+ }