vue_crud 0.1.9.5 → 0.1.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generators/vue_crud/example_generator.rb +12 -0
  3. data/lib/generators/vue_crud/install_generator.rb +1 -1
  4. data/lib/generators/vue_crud/pace_generator.rb +11 -0
  5. data/lib/generators/vue_crud/semantic_generator.rb +12 -0
  6. data/lib/generators/vue_crud/templates/assets/images/semantic-ui/flags.png +0 -0
  7. data/lib/generators/vue_crud/templates/assets/javascripts/pace.min.js +1 -0
  8. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/checkbox.js +831 -0
  9. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dimmer.js +708 -0
  10. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/dropdown.js +3741 -0
  11. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/modal.js +913 -0
  12. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/site.js +487 -0
  13. data/lib/generators/vue_crud/templates/assets/javascripts/semantic-ui/transition.js +1089 -0
  14. data/lib/generators/vue_crud/templates/assets/javascripts/vue.js +7402 -0
  15. data/lib/generators/vue_crud/templates/assets/stylesheets/pace.min.css +1 -0
  16. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/.DS_Store +0 -0
  17. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/.DS_Store +0 -0
  18. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_all.scss +7 -0
  19. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
  20. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_form.scss +1706 -0
  21. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid.scss +84 -0
  22. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_grid_bk.scss +2032 -0
  23. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_menu.scss +2021 -0
  24. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_message.scss +482 -0
  25. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_mixins.scss +3 -0
  26. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/_table.scss +1108 -0
  27. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/.DS_Store +0 -0
  28. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_clearfix.scss +1 -0
  29. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid-framework.scss +1 -0
  30. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/collections/mixins/_grid.scss +1 -0
  31. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_all.scss +15 -0
  32. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_button.scss +3470 -0
  33. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_container.scss +148 -0
  34. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_divider.scss +262 -0
  35. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_flag.scss +1031 -0
  36. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_header.scss +721 -0
  37. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_icon.scss +3148 -0
  38. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_image.scss +306 -0
  39. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_input.scss +517 -0
  40. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_label.scss +1314 -0
  41. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_list.scss +951 -0
  42. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_loader.scss +349 -0
  43. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
  44. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_reveal.scss +307 -0
  45. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_segment.scss +799 -0
  46. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/elements/_step.scss +646 -0
  47. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
  48. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_reset.scss +424 -0
  49. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_site.scss +163 -0
  50. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/globals/_variables.scss +32 -0
  51. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_accordion.scss +256 -0
  52. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_all.scss +17 -0
  53. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_checkbox.scss +627 -0
  54. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dimmer.scss +199 -0
  55. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1425 -0
  56. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_embed.scss +167 -0
  57. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_modal.scss +509 -0
  58. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_nag.scss +147 -0
  59. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_popup.scss +764 -0
  60. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_progress.scss +516 -0
  61. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_rating.scss +265 -0
  62. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_search.scss +409 -0
  63. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_shape.scss +157 -0
  64. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sidebar.scss +644 -0
  65. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
  66. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_tab.scss +91 -0
  67. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_transition.scss +1981 -0
  68. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
  69. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_ad.scss +276 -0
  70. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
  71. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_card.scss +685 -0
  72. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_comment.scss +270 -0
  73. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_feed.scss +300 -0
  74. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_item.scss +481 -0
  75. data/lib/generators/vue_crud/templates/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
  76. data/lib/generators/vue_crud/templates/example/user.rb +10 -0
  77. data/lib/generators/vue_crud/templates/example/users/index.html.erb +154 -0
  78. data/lib/generators/vue_crud/templates/example/users/index.json.jbuilder +15 -0
  79. data/lib/generators/vue_crud/templates/example/users/show.json.jbuilder +11 -0
  80. data/lib/generators/vue_crud/templates/example/users_controller.rb +85 -0
  81. data/lib/generators/vue_crud/vuejs_generator.rb +10 -0
  82. data/lib/vue_crud/version.rb +1 -1
  83. data/vendor/assets/javascripts/vue_crud.js +24 -3
  84. data/vendor/assets/stylesheets/vue_crud.css +0 -2
  85. metadata +80 -6
  86. data/vue_crud-0.1.5.gem +0 -0
  87. data/vue_crud-0.1.6.gem +0 -0
  88. data/vue_crud-0.1.7.gem +0 -0
  89. data/vue_crud-0.1.8.gem +0 -0
  90. data/vue_crud-0.1.9.gem +0 -0
@@ -0,0 +1,307 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Reveal
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
+ Reveal
14
+ *******************************/
15
+
16
+ .ui.reveal {
17
+ display: inherit;
18
+ position: relative !important;
19
+ font-size: 0em !important;
20
+ }
21
+ .ui.reveal > .visible.content {
22
+ position: absolute !important;
23
+ top: 0em !important;
24
+ left: 0em !important;
25
+ z-index: 3 !important;
26
+ -webkit-transition: all 0.5s ease 0.1s;
27
+ transition: all 0.5s ease 0.1s;
28
+ }
29
+ .ui.reveal > .hidden.content {
30
+ position: relative !important;
31
+ z-index: 2 !important;
32
+ }
33
+
34
+ /* Make sure hovered element is on top of other reveal */
35
+ .ui.active.reveal .visible.content,
36
+ .ui.reveal:hover .visible.content {
37
+ z-index: 4 !important;
38
+ }
39
+
40
+
41
+ /*******************************
42
+ Types
43
+ *******************************/
44
+
45
+
46
+ /*--------------
47
+ Slide
48
+ ---------------*/
49
+
50
+ .ui.slide.reveal {
51
+ position: relative !important;
52
+ overflow: hidden !important;
53
+ white-space: nowrap;
54
+ }
55
+ .ui.slide.reveal > .content {
56
+ display: block;
57
+ width: 100%;
58
+ float: left;
59
+ margin: 0em;
60
+ -webkit-transition: -webkit-transform 0.5s ease 0.1s;
61
+ transition: -webkit-transform 0.5s ease 0.1s;
62
+ transition: transform 0.5s ease 0.1s;
63
+ transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
64
+ }
65
+ .ui.slide.reveal > .visible.content {
66
+ position: relative !important;
67
+ }
68
+ .ui.slide.reveal > .hidden.content {
69
+ position: absolute !important;
70
+ left: 0% !important;
71
+ width: 100% !important;
72
+ -webkit-transform: translateX(100%) !important;
73
+ -ms-transform: translateX(100%) !important;
74
+ transform: translateX(100%) !important;
75
+ }
76
+ .ui.slide.active.reveal > .visible.content,
77
+ .ui.slide.reveal:hover > .visible.content {
78
+ -webkit-transform: translateX(-100%) !important;
79
+ -ms-transform: translateX(-100%) !important;
80
+ transform: translateX(-100%) !important;
81
+ }
82
+ .ui.slide.active.reveal > .hidden.content,
83
+ .ui.slide.reveal:hover > .hidden.content {
84
+ -webkit-transform: translateX(0%) !important;
85
+ -ms-transform: translateX(0%) !important;
86
+ transform: translateX(0%) !important;
87
+ }
88
+ .ui.slide.right.reveal > .visible.content {
89
+ -webkit-transform: translateX(0%) !important;
90
+ -ms-transform: translateX(0%) !important;
91
+ transform: translateX(0%) !important;
92
+ }
93
+ .ui.slide.right.reveal > .hidden.content {
94
+ -webkit-transform: translateX(-100%) !important;
95
+ -ms-transform: translateX(-100%) !important;
96
+ transform: translateX(-100%) !important;
97
+ }
98
+ .ui.slide.right.active.reveal > .visible.content,
99
+ .ui.slide.right.reveal:hover > .visible.content {
100
+ -webkit-transform: translateX(100%) !important;
101
+ -ms-transform: translateX(100%) !important;
102
+ transform: translateX(100%) !important;
103
+ }
104
+ .ui.slide.right.active.reveal > .hidden.content,
105
+ .ui.slide.right.reveal:hover > .hidden.content {
106
+ -webkit-transform: translateX(0%) !important;
107
+ -ms-transform: translateX(0%) !important;
108
+ transform: translateX(0%) !important;
109
+ }
110
+ .ui.slide.up.reveal > .hidden.content {
111
+ -webkit-transform: translateY(100%) !important;
112
+ -ms-transform: translateY(100%) !important;
113
+ transform: translateY(100%) !important;
114
+ }
115
+ .ui.slide.up.active.reveal > .visible.content,
116
+ .ui.slide.up.reveal:hover > .visible.content {
117
+ -webkit-transform: translateY(-100%) !important;
118
+ -ms-transform: translateY(-100%) !important;
119
+ transform: translateY(-100%) !important;
120
+ }
121
+ .ui.slide.up.active.reveal > .hidden.content,
122
+ .ui.slide.up.reveal:hover > .hidden.content {
123
+ -webkit-transform: translateY(0%) !important;
124
+ -ms-transform: translateY(0%) !important;
125
+ transform: translateY(0%) !important;
126
+ }
127
+ .ui.slide.down.reveal > .hidden.content {
128
+ -webkit-transform: translateY(-100%) !important;
129
+ -ms-transform: translateY(-100%) !important;
130
+ transform: translateY(-100%) !important;
131
+ }
132
+ .ui.slide.down.active.reveal > .visible.content,
133
+ .ui.slide.down.reveal:hover > .visible.content {
134
+ -webkit-transform: translateY(100%) !important;
135
+ -ms-transform: translateY(100%) !important;
136
+ transform: translateY(100%) !important;
137
+ }
138
+ .ui.slide.down.active.reveal > .hidden.content,
139
+ .ui.slide.down.reveal:hover > .hidden.content {
140
+ -webkit-transform: translateY(0%) !important;
141
+ -ms-transform: translateY(0%) !important;
142
+ transform: translateY(0%) !important;
143
+ }
144
+
145
+ /*--------------
146
+ Fade
147
+ ---------------*/
148
+
149
+ .ui.fade.reveal > .visible.content {
150
+ opacity: 1;
151
+ }
152
+ .ui.fade.active.reveal > .visible.content,
153
+ .ui.fade.reveal:hover > .visible.content {
154
+ opacity: 0;
155
+ }
156
+
157
+ /*--------------
158
+ Move
159
+ ---------------*/
160
+
161
+ .ui.move.reveal {
162
+ position: relative !important;
163
+ overflow: hidden !important;
164
+ white-space: nowrap;
165
+ }
166
+ .ui.move.reveal > .content {
167
+ display: block;
168
+ float: left;
169
+ margin: 0em;
170
+ -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
171
+ transition: -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
172
+ transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
173
+ transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1) 0.1s;
174
+ }
175
+ .ui.move.reveal > .visible.content {
176
+ position: relative !important;
177
+ }
178
+ .ui.move.reveal > .hidden.content {
179
+ position: absolute !important;
180
+ left: 0% !important;
181
+ width: 100% !important;
182
+ }
183
+ .ui.move.active.reveal > .visible.content,
184
+ .ui.move.reveal:hover > .visible.content {
185
+ -webkit-transform: translateX(-100%) !important;
186
+ -ms-transform: translateX(-100%) !important;
187
+ transform: translateX(-100%) !important;
188
+ }
189
+ .ui.move.right.active.reveal > .visible.content,
190
+ .ui.move.right.reveal:hover > .visible.content {
191
+ -webkit-transform: translateX(100%) !important;
192
+ -ms-transform: translateX(100%) !important;
193
+ transform: translateX(100%) !important;
194
+ }
195
+ .ui.move.up.active.reveal > .visible.content,
196
+ .ui.move.up.reveal:hover > .visible.content {
197
+ -webkit-transform: translateY(-100%) !important;
198
+ -ms-transform: translateY(-100%) !important;
199
+ transform: translateY(-100%) !important;
200
+ }
201
+ .ui.move.down.active.reveal > .visible.content,
202
+ .ui.move.down.reveal:hover > .visible.content {
203
+ -webkit-transform: translateY(100%) !important;
204
+ -ms-transform: translateY(100%) !important;
205
+ transform: translateY(100%) !important;
206
+ }
207
+
208
+ /*--------------
209
+ Rotate
210
+ ---------------*/
211
+
212
+ .ui.rotate.reveal > .visible.content {
213
+ -webkit-transition-duration: 0.5s;
214
+ transition-duration: 0.5s;
215
+ -webkit-transform: rotate(0deg);
216
+ -ms-transform: rotate(0deg);
217
+ transform: rotate(0deg);
218
+ }
219
+ .ui.rotate.reveal > .visible.content,
220
+ .ui.rotate.right.reveal > .visible.content {
221
+ -webkit-transform-origin: bottom right;
222
+ -ms-transform-origin: bottom right;
223
+ transform-origin: bottom right;
224
+ }
225
+ .ui.rotate.active.reveal > .visible.content,
226
+ .ui.rotate.reveal:hover > .visible.content,
227
+ .ui.rotate.right.active.reveal > .visible.content,
228
+ .ui.rotate.right.reveal:hover > .visible.content {
229
+ -webkit-transform: rotate(110deg);
230
+ -ms-transform: rotate(110deg);
231
+ transform: rotate(110deg);
232
+ }
233
+ .ui.rotate.left.reveal > .visible.content {
234
+ -webkit-transform-origin: bottom left;
235
+ -ms-transform-origin: bottom left;
236
+ transform-origin: bottom left;
237
+ }
238
+ .ui.rotate.left.active.reveal > .visible.content,
239
+ .ui.rotate.left.reveal:hover > .visible.content {
240
+ -webkit-transform: rotate(-110deg);
241
+ -ms-transform: rotate(-110deg);
242
+ transform: rotate(-110deg);
243
+ }
244
+
245
+
246
+ /*******************************
247
+ States
248
+ *******************************/
249
+
250
+ .ui.disabled.reveal:hover > .visible.visible.content {
251
+ position: static !important;
252
+ display: block !important;
253
+ opacity: 1 !important;
254
+ top: 0 !important;
255
+ left: 0 !important;
256
+ right: auto !important;
257
+ bottom: auto !important;
258
+ -webkit-transform: none !important;
259
+ -ms-transform: none !important;
260
+ transform: none !important;
261
+ }
262
+ .ui.disabled.reveal:hover > .hidden.hidden.content {
263
+ display: none !important;
264
+ }
265
+
266
+
267
+ /*******************************
268
+ Variations
269
+ *******************************/
270
+
271
+
272
+ /*--------------
273
+ Visible
274
+ ---------------*/
275
+
276
+ .ui.visible.reveal {
277
+ overflow: visible;
278
+ }
279
+
280
+ /*--------------
281
+ Instant
282
+ ---------------*/
283
+
284
+ .ui.instant.reveal > .content {
285
+ -webkit-transition-delay: 0s !important;
286
+ transition-delay: 0s !important;
287
+ }
288
+
289
+ /*--------------
290
+ Sizing
291
+ ---------------*/
292
+
293
+ .ui.reveal > .content {
294
+ font-size: 1rem !important;
295
+ }
296
+
297
+
298
+ /*******************************
299
+ Theme Overrides
300
+ *******************************/
301
+
302
+
303
+
304
+ /*******************************
305
+ Site Overrides
306
+ *******************************/
307
+
@@ -0,0 +1,799 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Segment
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
+ Segment
14
+ *******************************/
15
+
16
+ .ui.segment {
17
+ position: relative;
18
+ background: #FFFFFF;
19
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
20
+ margin: 1rem 0em;
21
+ padding: 1em 1em;
22
+ border-radius: 0.28571429rem;
23
+ border: 1px solid rgba(34, 36, 38, 0.15);
24
+ }
25
+ .ui.segment:first-child {
26
+ margin-top: 0em;
27
+ }
28
+ .ui.segment:last-child {
29
+ margin-bottom: 0em;
30
+ }
31
+
32
+ /* Vertical */
33
+ .ui.vertical.segment {
34
+ margin: 0em;
35
+ padding-left: 0em;
36
+ padding-right: 0em;
37
+ background: none transparent;
38
+ border-radius: 0px;
39
+ box-shadow: none;
40
+ border: none;
41
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
42
+ }
43
+ .ui.vertical.segment:last-child {
44
+ border-bottom: none;
45
+ }
46
+
47
+ /*-------------------
48
+ Loose Coupling
49
+ --------------------*/
50
+
51
+
52
+ /* Header */
53
+ .ui.inverted.segment > .ui.header {
54
+ color: #FFFFFF;
55
+ }
56
+
57
+ /* Label */
58
+ .ui[class*="bottom attached"].segment > [class*="top attached"].label {
59
+ border-top-left-radius: 0em;
60
+ border-top-right-radius: 0em;
61
+ }
62
+ .ui[class*="top attached"].segment > [class*="bottom attached"].label {
63
+ border-bottom-left-radius: 0em;
64
+ border-bottom-right-radius: 0em;
65
+ }
66
+ .ui.attached.segment:not(.top):not(.bottom) > [class*="top attached"].label {
67
+ border-top-left-radius: 0em;
68
+ border-top-right-radius: 0em;
69
+ }
70
+ .ui.attached.segment:not(.top):not(.bottom) > [class*="bottom attached"].label {
71
+ border-bottom-left-radius: 0em;
72
+ border-bottom-right-radius: 0em;
73
+ }
74
+
75
+ /* Grid */
76
+ .ui.page.grid.segment,
77
+ .ui.grid > .row > .ui.segment.column,
78
+ .ui.grid > .ui.segment.column {
79
+ padding-top: 2em;
80
+ padding-bottom: 2em;
81
+ }
82
+ .ui.grid.segment {
83
+ margin: 1rem 0em;
84
+ border-radius: 0.28571429rem;
85
+ }
86
+
87
+ /* Table */
88
+ .ui.basic.table.segment {
89
+ background: #FFFFFF;
90
+ border: 1px solid rgba(34, 36, 38, 0.15);
91
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
92
+ }
93
+ .ui[class*="very basic"].table.segment {
94
+ padding: 1em 1em;
95
+ }
96
+
97
+
98
+ /*******************************
99
+ Types
100
+ *******************************/
101
+
102
+
103
+ /*-------------------
104
+ Piled
105
+ --------------------*/
106
+
107
+ .ui.piled.segments,
108
+ .ui.piled.segment {
109
+ margin: 3em 0em;
110
+ box-shadow: '';
111
+ z-index: auto;
112
+ }
113
+ .ui.piled.segment:first-child {
114
+ margin-top: 0em;
115
+ }
116
+ .ui.piled.segment:last-child {
117
+ margin-bottom: 0em;
118
+ }
119
+ .ui.piled.segments:after,
120
+ .ui.piled.segments:before,
121
+ .ui.piled.segment:after,
122
+ .ui.piled.segment:before {
123
+ background-color: #FFFFFF;
124
+ visibility: visible;
125
+ content: '';
126
+ display: block;
127
+ height: 100%;
128
+ left: 0px;
129
+ position: absolute;
130
+ width: 100%;
131
+ border: 1px solid rgba(34, 36, 38, 0.15);
132
+ box-shadow: '';
133
+ }
134
+ .ui.piled.segments:before,
135
+ .ui.piled.segment:before {
136
+ -webkit-transform: rotate(-1.2deg);
137
+ -ms-transform: rotate(-1.2deg);
138
+ transform: rotate(-1.2deg);
139
+ top: 0;
140
+ z-index: -2;
141
+ }
142
+ .ui.piled.segments:after,
143
+ .ui.piled.segment:after {
144
+ -webkit-transform: rotate(1.2deg);
145
+ -ms-transform: rotate(1.2deg);
146
+ transform: rotate(1.2deg);
147
+ top: 0;
148
+ z-index: -1;
149
+ }
150
+
151
+ /* Piled Attached */
152
+ .ui[class*="top attached"].piled.segment {
153
+ margin-top: 3em;
154
+ margin-bottom: 0em;
155
+ }
156
+ .ui.piled.segment[class*="top attached"]:first-child {
157
+ margin-top: 0em;
158
+ }
159
+ .ui.piled.segment[class*="bottom attached"] {
160
+ margin-top: 0em;
161
+ margin-bottom: 3em;
162
+ }
163
+ .ui.piled.segment[class*="bottom attached"]:last-child {
164
+ margin-bottom: 0em;
165
+ }
166
+
167
+ /*-------------------
168
+ Stacked
169
+ --------------------*/
170
+
171
+ .ui.stacked.segment {
172
+ padding-bottom: 1.4em;
173
+ }
174
+ .ui.stacked.segments:before,
175
+ .ui.stacked.segments:after,
176
+ .ui.stacked.segment:before,
177
+ .ui.stacked.segment:after {
178
+ content: '';
179
+ position: absolute;
180
+ bottom: -3px;
181
+ left: 0%;
182
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
183
+ background: rgba(0, 0, 0, 0.03);
184
+ width: 100%;
185
+ height: 6px;
186
+ visibility: visible;
187
+ }
188
+ .ui.stacked.segments:before,
189
+ .ui.stacked.segment:before {
190
+ display: none;
191
+ }
192
+
193
+ /* Add additional page */
194
+ .ui.tall.stacked.segments:before,
195
+ .ui.tall.stacked.segment:before {
196
+ display: block;
197
+ bottom: 0px;
198
+ }
199
+
200
+ /* Inverted */
201
+ .ui.stacked.inverted.segments:before,
202
+ .ui.stacked.inverted.segments:after,
203
+ .ui.stacked.inverted.segment:before,
204
+ .ui.stacked.inverted.segment:after {
205
+ background-color: rgba(0, 0, 0, 0.03);
206
+ border-top: 1px solid rgba(34, 36, 38, 0.35);
207
+ }
208
+
209
+ /*-------------------
210
+ Padded
211
+ --------------------*/
212
+
213
+ .ui.padded.segment {
214
+ padding: 1.5em;
215
+ }
216
+ .ui[class*="very padded"].segment {
217
+ padding: 3em;
218
+ }
219
+
220
+ /*-------------------
221
+ Compact
222
+ --------------------*/
223
+
224
+ .ui.compact.segment {
225
+ display: table;
226
+ }
227
+
228
+ /* Compact Group */
229
+ .ui.compact.segments {
230
+ display: -webkit-inline-box;
231
+ display: -webkit-inline-flex;
232
+ display: -ms-inline-flexbox;
233
+ display: inline-flex;
234
+ }
235
+ .ui.compact.segments .segment,
236
+ .ui.segments .compact.segment {
237
+ display: block;
238
+ -webkit-box-flex: 0;
239
+ -webkit-flex: 0 1 auto;
240
+ -ms-flex: 0 1 auto;
241
+ flex: 0 1 auto;
242
+ }
243
+
244
+ /*-------------------
245
+ Circular
246
+ --------------------*/
247
+
248
+ .ui.circular.segment {
249
+ display: table-cell;
250
+ padding: 2em;
251
+ text-align: center;
252
+ vertical-align: middle;
253
+ border-radius: 500em;
254
+ }
255
+
256
+ /*-------------------
257
+ Raised
258
+ --------------------*/
259
+
260
+ .ui.raised.segments,
261
+ .ui.raised.segment {
262
+ box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
263
+ }
264
+
265
+
266
+ /*******************************
267
+ Groups
268
+ *******************************/
269
+
270
+
271
+ /* Group */
272
+ .ui.segments {
273
+ -webkit-box-orient: vertical;
274
+ -webkit-box-direction: normal;
275
+ -webkit-flex-direction: column;
276
+ -ms-flex-direction: column;
277
+ flex-direction: column;
278
+ position: relative;
279
+ margin: 1rem 0em;
280
+ border: 1px solid rgba(34, 36, 38, 0.15);
281
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
282
+ border-radius: 0.28571429rem;
283
+ }
284
+ .ui.segments:first-child {
285
+ margin-top: 0em;
286
+ }
287
+ .ui.segments:last-child {
288
+ margin-bottom: 0em;
289
+ }
290
+
291
+ /* Nested Segment */
292
+ .ui.segments > .segment {
293
+ top: 0px;
294
+ bottom: 0px;
295
+ border-radius: 0px;
296
+ margin: 0em;
297
+ width: auto;
298
+ box-shadow: none;
299
+ border: none;
300
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
301
+ }
302
+ .ui.segments:not(.horizontal) > .segment:first-child {
303
+ border-top: none;
304
+ margin-top: 0em;
305
+ bottom: 0px;
306
+ margin-bottom: 0em;
307
+ top: 0px;
308
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
309
+ }
310
+
311
+ /* Bottom */
312
+ .ui.segments:not(.horizontal) > .segment:last-child {
313
+ top: 0px;
314
+ bottom: 0px;
315
+ margin-top: 0em;
316
+ margin-bottom: 0em;
317
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
318
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
319
+ }
320
+
321
+ /* Only */
322
+ .ui.segments:not(.horizontal) > .segment:only-child {
323
+ border-radius: 0.28571429rem;
324
+ }
325
+
326
+ /* Nested Group */
327
+ .ui.segments > .ui.segments {
328
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
329
+ margin: 1rem 1rem;
330
+ }
331
+ .ui.segments > .segments:first-child {
332
+ border-top: none;
333
+ }
334
+ .ui.segments > .segment + .segments:not(.horizontal) {
335
+ margin-top: 0em;
336
+ }
337
+
338
+ /* Horizontal Group */
339
+ .ui.horizontal.segments {
340
+ display: -webkit-box;
341
+ display: -webkit-flex;
342
+ display: -ms-flexbox;
343
+ display: flex;
344
+ -webkit-box-orient: horizontal;
345
+ -webkit-box-direction: normal;
346
+ -webkit-flex-direction: row;
347
+ -ms-flex-direction: row;
348
+ flex-direction: row;
349
+ background-color: transparent;
350
+ border-radius: 0px;
351
+ padding: 0em;
352
+ background-color: #FFFFFF;
353
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
354
+ margin: 1rem 0em;
355
+ border-radius: 0.28571429rem;
356
+ border: 1px solid rgba(34, 36, 38, 0.15);
357
+ }
358
+
359
+ /* Nested Horizontal Group */
360
+ .ui.segments > .horizontal.segments {
361
+ margin: 0em;
362
+ background-color: transparent;
363
+ border-radius: 0px;
364
+ border: none;
365
+ box-shadow: none;
366
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
367
+ }
368
+
369
+ /* Horizontal Segment */
370
+ .ui.horizontal.segments > .segment {
371
+ -webkit-box-flex: 1;
372
+ -webkit-flex: 1 1 auto;
373
+ flex: 1 1 auto;
374
+ -ms-flex: 1 1 0px;
375
+
376
+ /* Solves #2550 MS Flex */
377
+ margin: 0em;
378
+ min-width: 0px;
379
+ background-color: transparent;
380
+ border-radius: 0px;
381
+ border: none;
382
+ box-shadow: none;
383
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
384
+ }
385
+
386
+ /* Border Fixes */
387
+ .ui.segments > .horizontal.segments:first-child {
388
+ border-top: none;
389
+ }
390
+ .ui.horizontal.segments > .segment:first-child {
391
+ border-left: none;
392
+ }
393
+
394
+
395
+ /*******************************
396
+ States
397
+ *******************************/
398
+
399
+
400
+ /*--------------
401
+ Disabled
402
+ ---------------*/
403
+
404
+ .ui.disabled.segment {
405
+ opacity: 0.45;
406
+ color: rgba(40, 40, 40, 0.3);
407
+ }
408
+
409
+ /*--------------
410
+ Loading
411
+ ---------------*/
412
+
413
+ .ui.loading.segment {
414
+ position: relative;
415
+ cursor: default;
416
+ pointer-events: none;
417
+ text-shadow: none !important;
418
+ color: transparent !important;
419
+ -webkit-transition: all 0s linear;
420
+ transition: all 0s linear;
421
+ }
422
+ .ui.loading.segment:before {
423
+ position: absolute;
424
+ content: '';
425
+ top: 0%;
426
+ left: 0%;
427
+ background: rgba(255, 255, 255, 0.8);
428
+ width: 100%;
429
+ height: 100%;
430
+ border-radius: 0.28571429rem;
431
+ z-index: 100;
432
+ }
433
+ .ui.loading.segment:after {
434
+ position: absolute;
435
+ content: '';
436
+ top: 50%;
437
+ left: 50%;
438
+ margin: -1.5em 0em 0em -1.5em;
439
+ width: 3em;
440
+ height: 3em;
441
+ -webkit-animation: segment-spin 0.6s linear;
442
+ animation: segment-spin 0.6s linear;
443
+ -webkit-animation-iteration-count: infinite;
444
+ animation-iteration-count: infinite;
445
+ border-radius: 500rem;
446
+ border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
447
+ border-style: solid;
448
+ border-width: 0.2em;
449
+ box-shadow: 0px 0px 0px 1px transparent;
450
+ visibility: visible;
451
+ z-index: 101;
452
+ }
453
+ @-webkit-keyframes segment-spin {
454
+ from {
455
+ -webkit-transform: rotate(0deg);
456
+ transform: rotate(0deg);
457
+ }
458
+ to {
459
+ -webkit-transform: rotate(360deg);
460
+ transform: rotate(360deg);
461
+ }
462
+ }
463
+ @keyframes segment-spin {
464
+ from {
465
+ -webkit-transform: rotate(0deg);
466
+ transform: rotate(0deg);
467
+ }
468
+ to {
469
+ -webkit-transform: rotate(360deg);
470
+ transform: rotate(360deg);
471
+ }
472
+ }
473
+
474
+
475
+ /*******************************
476
+ Variations
477
+ *******************************/
478
+
479
+
480
+ /*-------------------
481
+ Basic
482
+ --------------------*/
483
+
484
+ .ui.basic.segment {
485
+ background: none transparent;
486
+ box-shadow: none;
487
+ border: none;
488
+ border-radius: 0px;
489
+ }
490
+
491
+ /*-------------------
492
+ Clearing
493
+ --------------------*/
494
+
495
+ .ui.clearing.segment:after {
496
+ content: ".";
497
+ display: block;
498
+ height: 0;
499
+ clear: both;
500
+ visibility: hidden;
501
+ }
502
+
503
+ /*-------------------
504
+ Colors
505
+ --------------------*/
506
+
507
+
508
+ /* Red */
509
+ .ui.red.segment:not(.inverted) {
510
+ border-top: 2px solid #DB2828;
511
+ }
512
+ .ui.inverted.red.segment {
513
+ background-color: #DB2828 !important;
514
+ color: #FFFFFF !important;
515
+ }
516
+
517
+ /* Orange */
518
+ .ui.orange.segment:not(.inverted) {
519
+ border-top: 2px solid #F2711C;
520
+ }
521
+ .ui.inverted.orange.segment {
522
+ background-color: #F2711C !important;
523
+ color: #FFFFFF !important;
524
+ }
525
+
526
+ /* Yellow */
527
+ .ui.yellow.segment:not(.inverted) {
528
+ border-top: 2px solid #FBBD08;
529
+ }
530
+ .ui.inverted.yellow.segment {
531
+ background-color: #FBBD08 !important;
532
+ color: #FFFFFF !important;
533
+ }
534
+
535
+ /* Olive */
536
+ .ui.olive.segment:not(.inverted) {
537
+ border-top: 2px solid #B5CC18;
538
+ }
539
+ .ui.inverted.olive.segment {
540
+ background-color: #B5CC18 !important;
541
+ color: #FFFFFF !important;
542
+ }
543
+
544
+ /* Green */
545
+ .ui.green.segment:not(.inverted) {
546
+ border-top: 2px solid #21BA45;
547
+ }
548
+ .ui.inverted.green.segment {
549
+ background-color: #21BA45 !important;
550
+ color: #FFFFFF !important;
551
+ }
552
+
553
+ /* Teal */
554
+ .ui.teal.segment:not(.inverted) {
555
+ border-top: 2px solid #00B5AD;
556
+ }
557
+ .ui.inverted.teal.segment {
558
+ background-color: #00B5AD !important;
559
+ color: #FFFFFF !important;
560
+ }
561
+
562
+ /* Blue */
563
+ .ui.blue.segment:not(.inverted) {
564
+ border-top: 2px solid #2185D0;
565
+ }
566
+ .ui.inverted.blue.segment {
567
+ background-color: #2185D0 !important;
568
+ color: #FFFFFF !important;
569
+ }
570
+
571
+ /* Violet */
572
+ .ui.violet.segment:not(.inverted) {
573
+ border-top: 2px solid #6435C9;
574
+ }
575
+ .ui.inverted.violet.segment {
576
+ background-color: #6435C9 !important;
577
+ color: #FFFFFF !important;
578
+ }
579
+
580
+ /* Purple */
581
+ .ui.purple.segment:not(.inverted) {
582
+ border-top: 2px solid #A333C8;
583
+ }
584
+ .ui.inverted.purple.segment {
585
+ background-color: #A333C8 !important;
586
+ color: #FFFFFF !important;
587
+ }
588
+
589
+ /* Pink */
590
+ .ui.pink.segment:not(.inverted) {
591
+ border-top: 2px solid #E03997;
592
+ }
593
+ .ui.inverted.pink.segment {
594
+ background-color: #E03997 !important;
595
+ color: #FFFFFF !important;
596
+ }
597
+
598
+ /* Brown */
599
+ .ui.brown.segment:not(.inverted) {
600
+ border-top: 2px solid #A5673F;
601
+ }
602
+ .ui.inverted.brown.segment {
603
+ background-color: #A5673F !important;
604
+ color: #FFFFFF !important;
605
+ }
606
+
607
+ /* Grey */
608
+ .ui.grey.segment:not(.inverted) {
609
+ border-top: 2px solid #767676;
610
+ }
611
+ .ui.inverted.grey.segment {
612
+ background-color: #767676 !important;
613
+ color: #FFFFFF !important;
614
+ }
615
+
616
+ /* Black */
617
+ .ui.black.segment:not(.inverted) {
618
+ border-top: 2px solid #1B1C1D;
619
+ }
620
+ .ui.inverted.black.segment {
621
+ background-color: #1B1C1D !important;
622
+ color: #FFFFFF !important;
623
+ }
624
+
625
+ /*-------------------
626
+ Aligned
627
+ --------------------*/
628
+
629
+ .ui[class*="left aligned"].segment {
630
+ text-align: left;
631
+ }
632
+ .ui[class*="right aligned"].segment {
633
+ text-align: right;
634
+ }
635
+ .ui[class*="center aligned"].segment {
636
+ text-align: center;
637
+ }
638
+
639
+ /*-------------------
640
+ Floated
641
+ --------------------*/
642
+
643
+ .ui.floated.segment,
644
+ .ui[class*="left floated"].segment {
645
+ float: left;
646
+ margin-right: 1em;
647
+ }
648
+ .ui[class*="right floated"].segment {
649
+ float: right;
650
+ margin-left: 1em;
651
+ }
652
+
653
+ /*-------------------
654
+ Inverted
655
+ --------------------*/
656
+
657
+ .ui.inverted.segment {
658
+ border: none;
659
+ box-shadow: none;
660
+ }
661
+ .ui.inverted.segment,
662
+ .ui.primary.inverted.segment {
663
+ background: #1B1C1D;
664
+ color: rgba(255, 255, 255, 0.9);
665
+ }
666
+
667
+ /* Nested */
668
+ .ui.inverted.segment .segment {
669
+ color: rgba(0, 0, 0, 0.87);
670
+ }
671
+ .ui.inverted.segment .inverted.segment {
672
+ color: rgba(255, 255, 255, 0.9);
673
+ }
674
+
675
+ /* Attached */
676
+ .ui.inverted.attached.segment {
677
+ border-color: #555555;
678
+ }
679
+
680
+ /*-------------------
681
+ Emphasis
682
+ --------------------*/
683
+
684
+
685
+ /* Secondary */
686
+ .ui.secondary.segment {
687
+ background: #F3F4F5;
688
+ color: rgba(0, 0, 0, 0.6);
689
+ }
690
+ .ui.secondary.inverted.segment {
691
+ background: #4c4f52 -webkit-linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
692
+ background: #4c4f52 linear-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
693
+ color: rgba(255, 255, 255, 0.8);
694
+ }
695
+
696
+ /* Tertiary */
697
+ .ui.tertiary.segment {
698
+ background: #DCDDDE;
699
+ color: rgba(0, 0, 0, 0.6);
700
+ }
701
+ .ui.tertiary.inverted.segment {
702
+ background: #717579 -webkit-linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
703
+ background: #717579 linear-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%);
704
+ color: rgba(255, 255, 255, 0.8);
705
+ }
706
+
707
+ /*-------------------
708
+ Attached
709
+ --------------------*/
710
+
711
+
712
+ /* Middle */
713
+ .ui.attached.segment {
714
+ top: 0px;
715
+ bottom: 0px;
716
+ border-radius: 0px;
717
+ margin: 0em -1px;
718
+ width: calc(100% + 2px );
719
+ max-width: calc(100% + 2px );
720
+ box-shadow: none;
721
+ border: 1px solid #D4D4D5;
722
+ }
723
+ .ui.attached:not(.message) + .ui.attached.segment:not(.top) {
724
+ border-top: none;
725
+ }
726
+
727
+ /* Top */
728
+ .ui[class*="top attached"].segment {
729
+ bottom: 0px;
730
+ margin-bottom: 0em;
731
+ top: 0px;
732
+ margin-top: 1rem;
733
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
734
+ }
735
+ .ui.segment[class*="top attached"]:first-child {
736
+ margin-top: 0em;
737
+ }
738
+
739
+ /* Bottom */
740
+ .ui.segment[class*="bottom attached"] {
741
+ bottom: 0px;
742
+ margin-top: 0em;
743
+ top: 0px;
744
+ margin-bottom: 1rem;
745
+ box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), none;
746
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
747
+ }
748
+ .ui.segment[class*="bottom attached"]:last-child {
749
+ margin-bottom: 0em;
750
+ }
751
+
752
+ /*-------------------
753
+ Size
754
+ --------------------*/
755
+
756
+ .ui.mini.segments .segment,
757
+ .ui.mini.segment {
758
+ font-size: 0.78571429rem;
759
+ }
760
+ .ui.tiny.segments .segment,
761
+ .ui.tiny.segment {
762
+ font-size: 0.85714286rem;
763
+ }
764
+ .ui.small.segments .segment,
765
+ .ui.small.segment {
766
+ font-size: 0.92857143rem;
767
+ }
768
+ .ui.segments .segment,
769
+ .ui.segment {
770
+ font-size: 1rem;
771
+ }
772
+ .ui.large.segments .segment,
773
+ .ui.large.segment {
774
+ font-size: 1.14285714rem;
775
+ }
776
+ .ui.big.segments .segment,
777
+ .ui.big.segment {
778
+ font-size: 1.28571429rem;
779
+ }
780
+ .ui.huge.segments .segment,
781
+ .ui.huge.segment {
782
+ font-size: 1.42857143rem;
783
+ }
784
+ .ui.massive.segments .segment,
785
+ .ui.massive.segment {
786
+ font-size: 1.71428571rem;
787
+ }
788
+
789
+
790
+ /*******************************
791
+ Theme Overrides
792
+ *******************************/
793
+
794
+
795
+
796
+ /*******************************
797
+ Site Overrides
798
+ *******************************/
799
+