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,167 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Video
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
+ Types
14
+ *******************************/
15
+
16
+ .ui.embed {
17
+ position: relative;
18
+ max-width: 100%;
19
+ height: 0px;
20
+ overflow: hidden;
21
+ background: #DCDDDE;
22
+ padding-bottom: 56.25%;
23
+ }
24
+
25
+ /*-----------------
26
+ Embedded Content
27
+ ------------------*/
28
+
29
+ .ui.embed iframe,
30
+ .ui.embed embed,
31
+ .ui.embed object {
32
+ position: absolute;
33
+ border: none;
34
+ width: 100%;
35
+ height: 100%;
36
+ top: 0px;
37
+ left: 0px;
38
+ margin: 0em;
39
+ padding: 0em;
40
+ }
41
+
42
+ /*-----------------
43
+ Embed
44
+ ------------------*/
45
+
46
+ .ui.embed > .embed {
47
+ display: none;
48
+ }
49
+
50
+ /*--------------
51
+ Placeholder
52
+ ---------------*/
53
+
54
+ .ui.embed > .placeholder {
55
+ position: absolute;
56
+ cursor: pointer;
57
+ top: 0px;
58
+ left: 0px;
59
+ display: block;
60
+ width: 100%;
61
+ height: 100%;
62
+ background-color: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
63
+ }
64
+
65
+ /*--------------
66
+ Icon
67
+ ---------------*/
68
+
69
+ .ui.embed > .icon {
70
+ cursor: pointer;
71
+ position: absolute;
72
+ top: 0px;
73
+ left: 0px;
74
+ width: 100%;
75
+ height: 100%;
76
+ z-index: 2;
77
+ }
78
+ .ui.embed > .icon:after {
79
+ position: absolute;
80
+ top: 0%;
81
+ left: 0%;
82
+ width: 100%;
83
+ height: 100%;
84
+ z-index: 3;
85
+ content: '';
86
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
87
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
88
+ opacity: 0.5;
89
+ -webkit-transition: opacity 0.5s ease;
90
+ transition: opacity 0.5s ease;
91
+ }
92
+ .ui.embed > .icon:before {
93
+ position: absolute;
94
+ top: 50%;
95
+ left: 50%;
96
+ z-index: 4;
97
+ -webkit-transform: translateX(-50%) translateY(-50%);
98
+ -ms-transform: translateX(-50%) translateY(-50%);
99
+ transform: translateX(-50%) translateY(-50%);
100
+ color: #FFFFFF;
101
+ font-size: 6rem;
102
+ text-shadow: 0px 2px 10px rgba(34, 36, 38, 0.2);
103
+ -webkit-transition: opacity 0.5s ease, color 0.5s ease;
104
+ transition: opacity 0.5s ease, color 0.5s ease;
105
+ z-index: 10;
106
+ }
107
+
108
+
109
+ /*******************************
110
+ States
111
+ *******************************/
112
+
113
+
114
+ /*--------------
115
+ Hover
116
+ ---------------*/
117
+
118
+ .ui.embed .icon:hover:after {
119
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
120
+ background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
121
+ opacity: 1;
122
+ }
123
+ .ui.embed .icon:hover:before {
124
+ color: #FFFFFF;
125
+ }
126
+
127
+ /*--------------
128
+ Active
129
+ ---------------*/
130
+
131
+ .ui.active.embed > .icon,
132
+ .ui.active.embed > .placeholder {
133
+ display: none;
134
+ }
135
+ .ui.active.embed > .embed {
136
+ display: block;
137
+ }
138
+
139
+
140
+ /*******************************
141
+ Video Overrides
142
+ *******************************/
143
+
144
+
145
+
146
+ /*******************************
147
+ Site Overrides
148
+ *******************************/
149
+
150
+
151
+
152
+ /*******************************
153
+ Variations
154
+ *******************************/
155
+
156
+ .ui.square.embed {
157
+ padding-bottom: 100%;
158
+ }
159
+ .ui[class*="4:3"].embed {
160
+ padding-bottom: 75%;
161
+ }
162
+ .ui[class*="16:9"].embed {
163
+ padding-bottom: 56.25%;
164
+ }
165
+ .ui[class*="21:9"].embed {
166
+ padding-bottom: 42.85714286%;
167
+ }
@@ -0,0 +1,509 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Modal
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
+ Modal
14
+ *******************************/
15
+
16
+ .ui.modal {
17
+ display: none;
18
+ position: fixed;
19
+ z-index: 1001;
20
+ top: 50%;
21
+ left: 50%;
22
+ text-align: left;
23
+ background: #FFFFFF;
24
+ border: none;
25
+ box-shadow: 1px 3px 3px 0px rgba(0, 0, 0, 0.2), 1px 3px 15px 2px rgba(0, 0, 0, 0.2);
26
+ -webkit-transform-origin: 50% 25%;
27
+ -ms-transform-origin: 50% 25%;
28
+ transform-origin: 50% 25%;
29
+ border-radius: 0.28571429rem;
30
+ -webkit-user-select: text;
31
+ -moz-user-select: text;
32
+ -ms-user-select: text;
33
+ user-select: text;
34
+ will-change: top, left, margin, transform, opacity;
35
+ }
36
+ .ui.modal > :first-child:not(.icon),
37
+ .ui.modal > .icon:first-child + * {
38
+ border-top-left-radius: 0.28571429rem;
39
+ border-top-right-radius: 0.28571429rem;
40
+ }
41
+ .ui.modal > :last-child {
42
+ border-bottom-left-radius: 0.28571429rem;
43
+ border-bottom-right-radius: 0.28571429rem;
44
+ }
45
+
46
+
47
+ /*******************************
48
+ Content
49
+ *******************************/
50
+
51
+
52
+ /*--------------
53
+ Close
54
+ ---------------*/
55
+
56
+ .ui.modal > .close {
57
+ cursor: pointer;
58
+ position: absolute;
59
+ top: -2.5rem;
60
+ right: -2.5rem;
61
+ z-index: 1;
62
+ opacity: 0.8;
63
+ font-size: 1.25em;
64
+ color: #FFFFFF;
65
+ width: 2.25rem;
66
+ height: 2.25rem;
67
+ padding: 0.625rem 0rem 0rem 0rem;
68
+ }
69
+ .ui.modal > .close:hover {
70
+ opacity: 1;
71
+ }
72
+
73
+ /*--------------
74
+ Header
75
+ ---------------*/
76
+
77
+ .ui.modal > .header {
78
+ display: block;
79
+ font-family: $font-family;
80
+ background: #FFFFFF;
81
+ margin: 0em;
82
+ padding: 1.25rem 1.5rem;
83
+ box-shadow: none;
84
+ color: rgba(0, 0, 0, 0.85);
85
+ border-bottom: 1px solid rgba(34, 36, 38, 0.15);
86
+ }
87
+ .ui.modal > .header:not(.ui) {
88
+ font-size: 1.42857143rem;
89
+ line-height: 1.2857em;
90
+ font-weight: bold;
91
+ }
92
+
93
+ /*--------------
94
+ Content
95
+ ---------------*/
96
+
97
+ .ui.modal > .content {
98
+ display: block;
99
+ width: 100%;
100
+ font-size: 1em;
101
+ line-height: 1.4;
102
+ padding: 1.5rem;
103
+ background: #FFFFFF;
104
+ }
105
+ .ui.modal > .image.content {
106
+ display: -webkit-box;
107
+ display: -webkit-flex;
108
+ display: -ms-flexbox;
109
+ display: flex;
110
+ -webkit-box-orient: horizontal;
111
+ -webkit-box-direction: normal;
112
+ -webkit-flex-direction: row;
113
+ -ms-flex-direction: row;
114
+ flex-direction: row;
115
+ }
116
+
117
+ /* Image */
118
+ .ui.modal > .content > .image {
119
+ display: block;
120
+ -webkit-box-flex: 0;
121
+ -webkit-flex: 0 1 auto;
122
+ -ms-flex: 0 1 auto;
123
+ flex: 0 1 auto;
124
+ width: '';
125
+ -webkit-align-self: top;
126
+ -ms-flex-item-align: top;
127
+ align-self: top;
128
+ }
129
+ .ui.modal > [class*="top aligned"] {
130
+ -webkit-align-self: top;
131
+ -ms-flex-item-align: top;
132
+ align-self: top;
133
+ }
134
+ .ui.modal > [class*="middle aligned"] {
135
+ -webkit-align-self: middle;
136
+ -ms-flex-item-align: middle;
137
+ align-self: middle;
138
+ }
139
+ .ui.modal > [class*="stretched"] {
140
+ -webkit-align-self: stretch;
141
+ -ms-flex-item-align: stretch;
142
+ align-self: stretch;
143
+ }
144
+
145
+ /* Description */
146
+ .ui.modal > .content > .description {
147
+ display: block;
148
+ -webkit-box-flex: 1;
149
+ -webkit-flex: 1 0 auto;
150
+ -ms-flex: 1 0 auto;
151
+ flex: 1 0 auto;
152
+ min-width: 0px;
153
+ -webkit-align-self: top;
154
+ -ms-flex-item-align: top;
155
+ align-self: top;
156
+ }
157
+ .ui.modal > .content > .icon + .description,
158
+ .ui.modal > .content > .image + .description {
159
+ -webkit-box-flex: 0;
160
+ -webkit-flex: 0 1 auto;
161
+ -ms-flex: 0 1 auto;
162
+ flex: 0 1 auto;
163
+ min-width: '';
164
+ width: auto;
165
+ padding-left: 2em;
166
+ }
167
+ /*rtl:ignore*/
168
+ .ui.modal > .content > .image > i.icon {
169
+ margin: 0em;
170
+ opacity: 1;
171
+ width: auto;
172
+ line-height: 1;
173
+ font-size: 8rem;
174
+ }
175
+
176
+ /*--------------
177
+ Actions
178
+ ---------------*/
179
+
180
+ .ui.modal > .actions {
181
+ background: #F9FAFB;
182
+ padding: 1rem 1rem;
183
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
184
+ text-align: right;
185
+ }
186
+ .ui.modal .actions > .button {
187
+ margin-left: 0.75em;
188
+ }
189
+
190
+ /*-------------------
191
+ Responsive
192
+ --------------------*/
193
+
194
+
195
+ /* Modal Width */
196
+ @media only screen and (max-width: 767px) {
197
+ .ui.modal {
198
+ width: 95%;
199
+ margin: 0em 0em 0em -47.5%;
200
+ }
201
+ }
202
+ @media only screen and (min-width: 768px) {
203
+ .ui.modal {
204
+ width: 88%;
205
+ margin: 0em 0em 0em -44%;
206
+ }
207
+ }
208
+ @media only screen and (min-width: 992px) {
209
+ .ui.modal {
210
+ width: 850px;
211
+ margin: 0em 0em 0em -425px;
212
+ }
213
+ }
214
+ @media only screen and (min-width: 1200px) {
215
+ .ui.modal {
216
+ width: 900px;
217
+ margin: 0em 0em 0em -450px;
218
+ }
219
+ }
220
+ @media only screen and (min-width: 1920px) {
221
+ .ui.modal {
222
+ width: 950px;
223
+ margin: 0em 0em 0em -475px;
224
+ }
225
+ }
226
+
227
+ /* Tablet and Mobile */
228
+ @media only screen and (max-width: 991px) {
229
+ .ui.modal > .header {
230
+ padding-right: 2.25rem;
231
+ }
232
+ .ui.modal > .close {
233
+ top: 1.0535rem;
234
+ right: 1rem;
235
+ color: rgba(0, 0, 0, 0.87);
236
+ }
237
+ }
238
+
239
+ /* Mobile */
240
+ @media only screen and (max-width: 767px) {
241
+ .ui.modal > .header {
242
+ padding: 0.75rem 1rem !important;
243
+ padding-right: 2.25rem !important;
244
+ }
245
+ .ui.modal > .content {
246
+ display: block;
247
+ padding: 1rem !important;
248
+ }
249
+ .ui.modal > .close {
250
+ top: 0.5rem !important;
251
+ right: 0.5rem !important;
252
+ }
253
+ /*rtl:ignore*/
254
+ .ui.modal .image.content {
255
+ -webkit-box-orient: vertical;
256
+ -webkit-box-direction: normal;
257
+ -webkit-flex-direction: column;
258
+ -ms-flex-direction: column;
259
+ flex-direction: column;
260
+ }
261
+ .ui.modal .content > .image {
262
+ display: block;
263
+ max-width: 100%;
264
+ margin: 0em auto !important;
265
+ text-align: center;
266
+ padding: 0rem 0rem 1rem !important;
267
+ }
268
+ .ui.modal > .content > .image > i.icon {
269
+ font-size: 5rem;
270
+ text-align: center;
271
+ }
272
+ /*rtl:ignore*/
273
+ .ui.modal .content > .description {
274
+ display: block;
275
+ width: 100% !important;
276
+ margin: 0em !important;
277
+ padding: 1rem 0rem !important;
278
+ box-shadow: none;
279
+ }
280
+
281
+ /* Let Buttons Stack */
282
+ .ui.modal > .actions {
283
+ padding: 1rem 1rem 0rem !important;
284
+ }
285
+ .ui.modal .actions > .buttons,
286
+ .ui.modal .actions > .button {
287
+ margin-bottom: 1rem;
288
+ }
289
+ }
290
+
291
+ /*--------------
292
+ Coupling
293
+ ---------------*/
294
+
295
+ .ui.inverted.dimmer > .ui.modal {
296
+ box-shadow: 1px 3px 10px 2px rgba(0, 0, 0, 0.2);
297
+ }
298
+
299
+
300
+ /*******************************
301
+ Types
302
+ *******************************/
303
+
304
+ .ui.basic.modal {
305
+ background-color: transparent;
306
+ border: none;
307
+ border-radius: 0em;
308
+ box-shadow: none !important;
309
+ color: #FFFFFF;
310
+ }
311
+ .ui.basic.modal > .header,
312
+ .ui.basic.modal > .content,
313
+ .ui.basic.modal > .actions {
314
+ background-color: transparent;
315
+ }
316
+ .ui.basic.modal > .header {
317
+ color: #FFFFFF;
318
+ }
319
+ .ui.basic.modal > .close {
320
+ top: 1rem;
321
+ right: 1.5rem;
322
+ }
323
+ .ui.inverted.dimmer > .basic.modal {
324
+ color: rgba(0, 0, 0, 0.87);
325
+ }
326
+ .ui.inverted.dimmer > .ui.basic.modal > .header {
327
+ color: rgba(0, 0, 0, 0.85);
328
+ }
329
+
330
+ /* Tablet and Mobile */
331
+ @media only screen and (max-width: 991px) {
332
+ .ui.basic.modal > .close {
333
+ color: #FFFFFF;
334
+ }
335
+ }
336
+
337
+
338
+ /*******************************
339
+ States
340
+ *******************************/
341
+
342
+ .ui.active.modal {
343
+ display: block;
344
+ }
345
+
346
+
347
+ /*******************************
348
+ Variations
349
+ *******************************/
350
+
351
+
352
+ /*--------------
353
+ Scrolling
354
+ ---------------*/
355
+
356
+
357
+ /* A modal that cannot fit on the page */
358
+ .scrolling.dimmable.dimmed {
359
+ overflow: hidden;
360
+ }
361
+ .scrolling.dimmable.dimmed > .dimmer {
362
+ overflow: auto;
363
+ -webkit-overflow-scrolling: touch;
364
+ }
365
+ .scrolling.dimmable > .dimmer {
366
+ position: fixed;
367
+ }
368
+ .modals.dimmer .ui.scrolling.modal {
369
+ position: static !important;
370
+ margin: 3.5rem auto !important;
371
+ }
372
+
373
+ /* undetached scrolling */
374
+ .scrolling.undetached.dimmable.dimmed {
375
+ overflow: auto;
376
+ -webkit-overflow-scrolling: touch;
377
+ }
378
+ .scrolling.undetached.dimmable.dimmed > .dimmer {
379
+ overflow: hidden;
380
+ }
381
+ .scrolling.undetached.dimmable .ui.scrolling.modal {
382
+ position: absolute;
383
+ left: 50%;
384
+ margin-top: 3.5rem !important;
385
+ }
386
+
387
+ /* Coupling with Sidebar */
388
+ .undetached.dimmable.dimmed > .pusher {
389
+ z-index: auto;
390
+ }
391
+ @media only screen and (max-width: 991px) {
392
+ .modals.dimmer .ui.scrolling.modal {
393
+ margin-top: 1rem !important;
394
+ margin-bottom: 1rem !important;
395
+ }
396
+ }
397
+
398
+ /*--------------
399
+ Full Screen
400
+ ---------------*/
401
+
402
+ .ui.fullscreen.modal {
403
+ width: 95% !important;
404
+ left: 2.5% !important;
405
+ margin: 1em auto;
406
+ }
407
+ .ui.fullscreen.scrolling.modal {
408
+ left: 0em !important;
409
+ }
410
+ .ui.fullscreen.modal > .header {
411
+ padding-right: 2.25rem;
412
+ }
413
+ .ui.fullscreen.modal > .close {
414
+ top: 1.0535rem;
415
+ right: 1rem;
416
+ color: rgba(0, 0, 0, 0.87);
417
+ }
418
+
419
+ /*--------------
420
+ Size
421
+ ---------------*/
422
+
423
+ .ui.modal {
424
+ font-size: 1rem;
425
+ }
426
+
427
+ /* Small */
428
+ .ui.small.modal > .header:not(.ui) {
429
+ font-size: 1.3em;
430
+ }
431
+
432
+ /* Small Modal Width */
433
+ @media only screen and (max-width: 767px) {
434
+ .ui.small.modal {
435
+ width: 95%;
436
+ margin: 0em 0em 0em -47.5%;
437
+ }
438
+ }
439
+ @media only screen and (min-width: 768px) {
440
+ .ui.small.modal {
441
+ width: 70.4%;
442
+ margin: 0em 0em 0em -35.2%;
443
+ }
444
+ }
445
+ @media only screen and (min-width: 992px) {
446
+ .ui.small.modal {
447
+ width: 680px;
448
+ margin: 0em 0em 0em -340px;
449
+ }
450
+ }
451
+ @media only screen and (min-width: 1200px) {
452
+ .ui.small.modal {
453
+ width: 720px;
454
+ margin: 0em 0em 0em -360px;
455
+ }
456
+ }
457
+ @media only screen and (min-width: 1920px) {
458
+ .ui.small.modal {
459
+ width: 760px;
460
+ margin: 0em 0em 0em -380px;
461
+ }
462
+ }
463
+
464
+ /* Large Modal Width */
465
+ .ui.large.modal > .header {
466
+ font-size: 1.6em;
467
+ }
468
+ @media only screen and (max-width: 767px) {
469
+ .ui.large.modal {
470
+ width: 95%;
471
+ margin: 0em 0em 0em -47.5%;
472
+ }
473
+ }
474
+ @media only screen and (min-width: 768px) {
475
+ .ui.large.modal {
476
+ width: 88%;
477
+ margin: 0em 0em 0em -44%;
478
+ }
479
+ }
480
+ @media only screen and (min-width: 992px) {
481
+ .ui.large.modal {
482
+ width: 1020px;
483
+ margin: 0em 0em 0em -510px;
484
+ }
485
+ }
486
+ @media only screen and (min-width: 1200px) {
487
+ .ui.large.modal {
488
+ width: 1080px;
489
+ margin: 0em 0em 0em -540px;
490
+ }
491
+ }
492
+ @media only screen and (min-width: 1920px) {
493
+ .ui.large.modal {
494
+ width: 1140px;
495
+ margin: 0em 0em 0em -570px;
496
+ }
497
+ }
498
+
499
+
500
+ /*******************************
501
+ Theme Overrides
502
+ *******************************/
503
+
504
+
505
+
506
+ /*******************************
507
+ Site Overrides
508
+ *******************************/
509
+