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 @@
1
+ @mixin clearfix(){&:before,&:after{content:" ";display:table}&:after{clear:both}}
@@ -0,0 +1 @@
1
+ @mixin make-grid-columns($i:1,$list:".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"){@for $i from(1+1) through $grid-columns{$list:"#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}"}#{$list}{position:relative;min-height:1px;padding-left:ceil(($grid-gutter-width / 2));padding-right:floor(($grid-gutter-width / 2))}}@mixin float-grid-columns($class,$i:1,$list:".col-#{$class}-#{$i}"){@for $i from(1+1) through $grid-columns{$list:"#{$list}, .col-#{$class}-#{$i}"}#{$list}{float:left}}@mixin calc-grid-column($index,$class,$type){@if($type == width) and ($index>0){.col-#{$class}-#{$index}{width:percentage(($index / $grid-columns))}}@if($type == push) and ($index>0){.col-#{$class}-push-#{$index}{left:percentage(($index / $grid-columns))}}@if($type == push) and ($index == 0){.col-#{$class}-push-0{left:auto}}@if($type == pull) and ($index>0){.col-#{$class}-pull-#{$index}{right:percentage(($index / $grid-columns))}}@if($type == pull) and ($index == 0){.col-#{$class}-pull-0{right:auto}}@if($type == offset){.col-#{$class}-offset-#{$index}{margin-left:percentage(($index / $grid-columns))}}}@mixin loop-grid-columns($columns,$class,$type){@for $i from 0 through $columns{@include calc-grid-column($i,$class,$type)}}@mixin make-grid($class){@include float-grid-columns($class);@include loop-grid-columns($grid-columns,$class,width);@include loop-grid-columns($grid-columns,$class,pull);@include loop-grid-columns($grid-columns,$class,push);@include loop-grid-columns($grid-columns,$class,offset)}
@@ -0,0 +1 @@
1
+ @mixin container-fixed($gutter:$grid-gutter-width){margin-right:auto;margin-left:auto;padding-left:floor(($gutter / 2));padding-right:ceil(($gutter / 2));@include clearfix}@mixin make-row($gutter:$grid-gutter-width){margin-left:ceil(($gutter / -2));margin-right:floor(($gutter / -2));@include clearfix}@mixin make-xs-column($columns,$gutter:$grid-gutter-width){position:relative;float:left;width:percentage(($columns / $grid-columns));min-height:1px;padding-left:($gutter / 2);padding-right:($gutter / 2)}@mixin make-xs-column-offset($columns){margin-left:percentage(($columns / $grid-columns))}@mixin make-xs-column-push($columns){left:percentage(($columns / $grid-columns))}@mixin make-xs-column-pull($columns){right:percentage(($columns / $grid-columns))}@mixin make-sm-column($columns,$gutter:$grid-gutter-width){position:relative;min-height:1px;padding-left:($gutter / 2);padding-right:($gutter / 2);@media(min-width:$screen-sm-min){float:left;width:percentage(($columns / $grid-columns))}}@mixin make-sm-column-offset($columns){@media(min-width:$screen-sm-min){margin-left:percentage(($columns / $grid-columns))}}@mixin make-sm-column-push($columns){@media(min-width:$screen-sm-min){left:percentage(($columns / $grid-columns))}}@mixin make-sm-column-pull($columns){@media(min-width:$screen-sm-min){right:percentage(($columns / $grid-columns))}}@mixin make-md-column($columns,$gutter:$grid-gutter-width){position:relative;min-height:1px;padding-left:($gutter / 2);padding-right:($gutter / 2);@media(min-width:$screen-md-min){float:left;width:percentage(($columns / $grid-columns))}}@mixin make-md-column-offset($columns){@media(min-width:$screen-md-min){margin-left:percentage(($columns / $grid-columns))}}@mixin make-md-column-push($columns){@media(min-width:$screen-md-min){left:percentage(($columns / $grid-columns))}}@mixin make-md-column-pull($columns){@media(min-width:$screen-md-min){right:percentage(($columns / $grid-columns))}}@mixin make-lg-column($columns,$gutter:$grid-gutter-width){position:relative;min-height:1px;padding-left:($gutter / 2);padding-right:($gutter / 2);@media(min-width:$screen-lg-min){float:left;width:percentage(($columns / $grid-columns))}}@mixin make-lg-column-offset($columns){@media(min-width:$screen-lg-min){margin-left:percentage(($columns / $grid-columns))}}@mixin make-lg-column-push($columns){@media(min-width:$screen-lg-min){left:percentage(($columns / $grid-columns))}}@mixin make-lg-column-pull($columns){@media(min-width:$screen-lg-min){right:percentage(($columns / $grid-columns))}}
@@ -0,0 +1,15 @@
1
+ @import 'button';
2
+ @import 'container';
3
+ @import 'divider';
4
+ // @import 'flag';
5
+ @import 'header';
6
+ @import 'icon';
7
+ @import 'image';
8
+ @import 'input';
9
+ @import 'label';
10
+ @import 'list';
11
+ @import 'loader';
12
+ // @import 'rail';
13
+ // @import 'reveal';
14
+ @import 'segment';
15
+ // @import 'step';
@@ -0,0 +1,3470 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Button
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
+ Button
14
+ *******************************/
15
+
16
+ .ui.button {
17
+ cursor: pointer;
18
+ display: inline-block;
19
+ min-height: 1em;
20
+ outline: none;
21
+ border: none;
22
+ vertical-align: baseline;
23
+ background: #E0E1E2 none;
24
+ color: rgba(0, 0, 0, 0.6);
25
+ font-family: $font-family;
26
+ margin: 0em 0.25em 0em 0em;
27
+ padding: 0.78571429em 1.5em 0.78571429em;
28
+ text-transform: none;
29
+ text-shadow: none;
30
+ font-weight: bold;
31
+ line-height: 1em;
32
+ font-style: normal;
33
+ text-align: center;
34
+ text-decoration: none;
35
+ border-radius: 0.28571429rem;
36
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
37
+ -webkit-user-select: none;
38
+ -moz-user-select: none;
39
+ -ms-user-select: none;
40
+ user-select: none;
41
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
42
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
43
+ will-change: '';
44
+ -webkit-tap-highlight-color: transparent;
45
+ }
46
+
47
+
48
+ /*******************************
49
+ States
50
+ *******************************/
51
+
52
+
53
+ /*--------------
54
+ Hover
55
+ ---------------*/
56
+
57
+ .ui.button:hover {
58
+ background-color: #CACBCD;
59
+ background-image: none;
60
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
61
+ color: rgba(0, 0, 0, 0.8);
62
+ }
63
+ .ui.button:hover .icon {
64
+ opacity: 0.85;
65
+ }
66
+
67
+ /*--------------
68
+ Focus
69
+ ---------------*/
70
+
71
+ .ui.button:focus {
72
+ background-color: #CACBCD;
73
+ color: rgba(0, 0, 0, 0.8);
74
+ background-image: '' !important;
75
+ box-shadow: '' !important;
76
+ }
77
+ .ui.button:focus .icon {
78
+ opacity: 0.85;
79
+ }
80
+
81
+ /*--------------
82
+ Down
83
+ ---------------*/
84
+
85
+ .ui.button:active,
86
+ .ui.active.button:active {
87
+ background-color: #BABBBC;
88
+ background-image: '';
89
+ color: rgba(0, 0, 0, 0.9);
90
+ box-shadow: 0px 0px 0px 1px transparent inset, none;
91
+ }
92
+
93
+ /*--------------
94
+ Active
95
+ ---------------*/
96
+
97
+ .ui.active.button {
98
+ background-color: #C0C1C2;
99
+ background-image: none;
100
+ box-shadow: 0px 0px 0px 1px transparent inset;
101
+ color: rgba(0, 0, 0, 0.95);
102
+ }
103
+ .ui.active.button:hover {
104
+ background-color: #C0C1C2;
105
+ background-image: none;
106
+ color: rgba(0, 0, 0, 0.95);
107
+ }
108
+ .ui.active.button:active {
109
+ background-color: #C0C1C2;
110
+ background-image: none;
111
+ }
112
+
113
+ /*--------------
114
+ Loading
115
+ ---------------*/
116
+
117
+
118
+ /* Specificity hack */
119
+ .ui.loading.loading.loading.loading.loading.loading.button {
120
+ position: relative;
121
+ cursor: default;
122
+ text-shadow: none !important;
123
+ color: transparent !important;
124
+ opacity: 1;
125
+ pointer-events: auto;
126
+ -webkit-transition: all 0s linear, opacity 0.1s ease;
127
+ transition: all 0s linear, opacity 0.1s ease;
128
+ }
129
+ .ui.loading.button:before {
130
+ position: absolute;
131
+ content: '';
132
+ top: 50%;
133
+ left: 50%;
134
+ margin: -0.64285714em 0em 0em -0.64285714em;
135
+ width: 1.28571429em;
136
+ height: 1.28571429em;
137
+ border-radius: 500rem;
138
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
139
+ }
140
+ .ui.loading.button:after {
141
+ position: absolute;
142
+ content: '';
143
+ top: 50%;
144
+ left: 50%;
145
+ margin: -0.64285714em 0em 0em -0.64285714em;
146
+ width: 1.28571429em;
147
+ height: 1.28571429em;
148
+ -webkit-animation: button-spin 0.6s linear;
149
+ animation: button-spin 0.6s linear;
150
+ -webkit-animation-iteration-count: infinite;
151
+ animation-iteration-count: infinite;
152
+ border-radius: 500rem;
153
+ border-color: #FFFFFF transparent transparent;
154
+ border-style: solid;
155
+ border-width: 0.2em;
156
+ box-shadow: 0px 0px 0px 1px transparent;
157
+ }
158
+ .ui.labeled.icon.loading.button .icon {
159
+ background-color: transparent;
160
+ box-shadow: none;
161
+ }
162
+ @-webkit-keyframes button-spin {
163
+ from {
164
+ -webkit-transform: rotate(0deg);
165
+ transform: rotate(0deg);
166
+ }
167
+ to {
168
+ -webkit-transform: rotate(360deg);
169
+ transform: rotate(360deg);
170
+ }
171
+ }
172
+ @keyframes button-spin {
173
+ from {
174
+ -webkit-transform: rotate(0deg);
175
+ transform: rotate(0deg);
176
+ }
177
+ to {
178
+ -webkit-transform: rotate(360deg);
179
+ transform: rotate(360deg);
180
+ }
181
+ }
182
+ .ui.basic.loading.button:not(.inverted):before {
183
+ border-color: rgba(0, 0, 0, 0.1);
184
+ }
185
+ .ui.basic.loading.button:not(.inverted):after {
186
+ border-top-color: #767676;
187
+ }
188
+
189
+ /*-------------------
190
+ Disabled
191
+ --------------------*/
192
+
193
+ .ui.buttons .disabled.button,
194
+ .ui.disabled.button,
195
+ .ui.button:disabled,
196
+ .ui.disabled.button:hover,
197
+ .ui.disabled.active.button {
198
+ cursor: default;
199
+ opacity: 0.45 !important;
200
+ background-image: none !important;
201
+ box-shadow: none !important;
202
+ pointer-events: none !important;
203
+ }
204
+
205
+ /* Basic Group With Disabled */
206
+ .ui.basic.buttons .ui.disabled.button {
207
+ border-color: rgba(34, 36, 38, 0.5);
208
+ }
209
+
210
+
211
+ /*******************************
212
+ Types
213
+ *******************************/
214
+
215
+
216
+ /*-------------------
217
+ Animated
218
+ --------------------*/
219
+
220
+ .ui.animated.button {
221
+ position: relative;
222
+ overflow: hidden;
223
+ padding-right: 0em !important;
224
+ vertical-align: middle;
225
+ z-index: 1;
226
+ }
227
+ .ui.animated.button .content {
228
+ will-change: transform, opacity;
229
+ }
230
+ .ui.animated.button .visible.content {
231
+ position: relative;
232
+ margin-right: 1.5em;
233
+ }
234
+ .ui.animated.button .hidden.content {
235
+ position: absolute;
236
+ width: 100%;
237
+ }
238
+
239
+ /* Horizontal */
240
+ .ui.animated.button .visible.content,
241
+ .ui.animated.button .hidden.content {
242
+ -webkit-transition: right 0.3s ease 0s;
243
+ transition: right 0.3s ease 0s;
244
+ }
245
+ .ui.animated.button .visible.content {
246
+ left: auto;
247
+ right: 0%;
248
+ }
249
+ .ui.animated.button .hidden.content {
250
+ top: 50%;
251
+ left: auto;
252
+ right: -100%;
253
+ margin-top: -0.5em;
254
+ }
255
+ .ui.animated.button:focus .visible.content,
256
+ .ui.animated.button:hover .visible.content {
257
+ left: auto;
258
+ right: 200%;
259
+ }
260
+ .ui.animated.button:focus .hidden.content,
261
+ .ui.animated.button:hover .hidden.content {
262
+ left: auto;
263
+ right: 0%;
264
+ }
265
+
266
+ /* Vertical */
267
+ .ui.vertical.animated.button .visible.content,
268
+ .ui.vertical.animated.button .hidden.content {
269
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
270
+ transition: top 0.3s ease, -webkit-transform 0.3s ease;
271
+ transition: top 0.3s ease, transform 0.3s ease;
272
+ transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
273
+ }
274
+ .ui.vertical.animated.button .visible.content {
275
+ -webkit-transform: translateY(0%);
276
+ -ms-transform: translateY(0%);
277
+ transform: translateY(0%);
278
+ right: auto;
279
+ }
280
+ .ui.vertical.animated.button .hidden.content {
281
+ top: -50%;
282
+ left: 0%;
283
+ right: auto;
284
+ }
285
+ .ui.vertical.animated.button:focus .visible.content,
286
+ .ui.vertical.animated.button:hover .visible.content {
287
+ -webkit-transform: translateY(200%);
288
+ -ms-transform: translateY(200%);
289
+ transform: translateY(200%);
290
+ right: auto;
291
+ }
292
+ .ui.vertical.animated.button:focus .hidden.content,
293
+ .ui.vertical.animated.button:hover .hidden.content {
294
+ top: 50%;
295
+ right: auto;
296
+ }
297
+
298
+ /* Fade */
299
+ .ui.fade.animated.button .visible.content,
300
+ .ui.fade.animated.button .hidden.content {
301
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
302
+ transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
303
+ transition: opacity 0.3s ease, transform 0.3s ease;
304
+ transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
305
+ }
306
+ .ui.fade.animated.button .visible.content {
307
+ left: auto;
308
+ right: auto;
309
+ opacity: 1;
310
+ -webkit-transform: scale(1);
311
+ -ms-transform: scale(1);
312
+ transform: scale(1);
313
+ }
314
+ .ui.fade.animated.button .hidden.content {
315
+ opacity: 0;
316
+ left: 0%;
317
+ right: auto;
318
+ -webkit-transform: scale(1.5);
319
+ -ms-transform: scale(1.5);
320
+ transform: scale(1.5);
321
+ }
322
+ .ui.fade.animated.button:focus .visible.content,
323
+ .ui.fade.animated.button:hover .visible.content {
324
+ left: auto;
325
+ right: auto;
326
+ opacity: 0;
327
+ -webkit-transform: scale(0.75);
328
+ -ms-transform: scale(0.75);
329
+ transform: scale(0.75);
330
+ }
331
+ .ui.fade.animated.button:focus .hidden.content,
332
+ .ui.fade.animated.button:hover .hidden.content {
333
+ left: 0%;
334
+ right: auto;
335
+ opacity: 1;
336
+ -webkit-transform: scale(1);
337
+ -ms-transform: scale(1);
338
+ transform: scale(1);
339
+ }
340
+
341
+ /*-------------------
342
+ Inverted
343
+ --------------------*/
344
+
345
+ .ui.inverted.button {
346
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
347
+ background: transparent none;
348
+ color: #FFFFFF;
349
+ text-shadow: none !important;
350
+ }
351
+
352
+ /* Group */
353
+ .ui.inverted.buttons .button {
354
+ margin: 0px 0px 0px -2px;
355
+ }
356
+ .ui.inverted.buttons .button:first-child {
357
+ margin-left: 0em;
358
+ }
359
+ .ui.inverted.vertical.buttons .button {
360
+ margin: 0px 0px -2px 0px;
361
+ }
362
+ .ui.inverted.vertical.buttons .button:first-child {
363
+ margin-top: 0em;
364
+ }
365
+
366
+ /* States */
367
+
368
+ /* Hover */
369
+ .ui.inverted.button:hover {
370
+ background: #FFFFFF;
371
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
372
+ color: rgba(0, 0, 0, 0.8);
373
+ }
374
+
375
+ /* Active / Focus */
376
+ .ui.inverted.button:focus,
377
+ .ui.inverted.button.active {
378
+ background: #FFFFFF;
379
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
380
+ color: rgba(0, 0, 0, 0.8);
381
+ }
382
+
383
+ /* Active Focus */
384
+ .ui.inverted.button.active:focus {
385
+ background: #DCDDDE;
386
+ box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
387
+ color: rgba(0, 0, 0, 0.8);
388
+ }
389
+
390
+ /*-------------------
391
+ Labeled Button
392
+ --------------------*/
393
+
394
+ .ui.labeled.button:not(.icon) {
395
+ display: -webkit-inline-box;
396
+ display: -webkit-inline-flex;
397
+ display: -ms-inline-flexbox;
398
+ display: inline-flex;
399
+ -webkit-box-orient: horizontal;
400
+ -webkit-box-direction: normal;
401
+ -webkit-flex-direction: row;
402
+ -ms-flex-direction: row;
403
+ flex-direction: row;
404
+ background: none !important;
405
+ padding: 0px !important;
406
+ border: none !important;
407
+ box-shadow: none !important;
408
+ }
409
+ .ui.labeled.button > .button {
410
+ margin: 0px;
411
+ }
412
+ .ui.labeled.button > .label {
413
+ display: -webkit-box;
414
+ display: -webkit-flex;
415
+ display: -ms-flexbox;
416
+ display: flex;
417
+ -webkit-box-align: center;
418
+ -webkit-align-items: center;
419
+ -ms-flex-align: center;
420
+ align-items: center;
421
+ margin: 0px 0px 0px -1px !important;
422
+ padding: '';
423
+ font-size: 1em;
424
+ border-color: rgba(34, 36, 38, 0.15);
425
+ }
426
+
427
+ /* Tag */
428
+ .ui.labeled.button > .tag.label:before {
429
+ width: 1.85em;
430
+ height: 1.85em;
431
+ }
432
+
433
+ /* Right */
434
+ .ui.labeled.button:not([class*="left labeled"]) > .button {
435
+ border-top-right-radius: 0px;
436
+ border-bottom-right-radius: 0px;
437
+ }
438
+ .ui.labeled.button:not([class*="left labeled"]) > .label {
439
+ border-top-left-radius: 0px;
440
+ border-bottom-left-radius: 0px;
441
+ }
442
+
443
+ /* Left Side */
444
+ .ui[class*="left labeled"].button > .button {
445
+ border-top-left-radius: 0px;
446
+ border-bottom-left-radius: 0px;
447
+ }
448
+ .ui[class*="left labeled"].button > .label {
449
+ border-top-right-radius: 0px;
450
+ border-bottom-right-radius: 0px;
451
+ }
452
+
453
+ /*-------------------
454
+ Social
455
+ --------------------*/
456
+
457
+
458
+ /* Facebook */
459
+ .ui.facebook.button {
460
+ background-color: #3B5998;
461
+ color: #FFFFFF;
462
+ text-shadow: none;
463
+ background-image: none;
464
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
465
+ }
466
+ .ui.facebook.button:hover {
467
+ background-color: #304d8a;
468
+ color: #FFFFFF;
469
+ text-shadow: none;
470
+ }
471
+ .ui.facebook.button:active {
472
+ background-color: #2d4373;
473
+ color: #FFFFFF;
474
+ text-shadow: none;
475
+ }
476
+
477
+ /* Twitter */
478
+ .ui.twitter.button {
479
+ background-color: #55ACEE;
480
+ color: #FFFFFF;
481
+ text-shadow: none;
482
+ background-image: none;
483
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
484
+ }
485
+ .ui.twitter.button:hover {
486
+ background-color: #35a2f4;
487
+ color: #FFFFFF;
488
+ text-shadow: none;
489
+ }
490
+ .ui.twitter.button:active {
491
+ background-color: #2795e9;
492
+ color: #FFFFFF;
493
+ text-shadow: none;
494
+ }
495
+
496
+ /* Google Plus */
497
+ .ui.google.plus.button {
498
+ background-color: #DD4B39;
499
+ color: #FFFFFF;
500
+ text-shadow: none;
501
+ background-image: none;
502
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
503
+ }
504
+ .ui.google.plus.button:hover {
505
+ background-color: #e0321c;
506
+ color: #FFFFFF;
507
+ text-shadow: none;
508
+ }
509
+ .ui.google.plus.button:active {
510
+ background-color: #c23321;
511
+ color: #FFFFFF;
512
+ text-shadow: none;
513
+ }
514
+
515
+ /* Linked In */
516
+ .ui.linkedin.button {
517
+ background-color: #1F88BE;
518
+ color: #FFFFFF;
519
+ text-shadow: none;
520
+ }
521
+ .ui.linkedin.button:hover {
522
+ background-color: #147baf;
523
+ color: #FFFFFF;
524
+ text-shadow: none;
525
+ }
526
+ .ui.linkedin.button:active {
527
+ background-color: #186992;
528
+ color: #FFFFFF;
529
+ text-shadow: none;
530
+ }
531
+
532
+ /* YouTube */
533
+ .ui.youtube.button {
534
+ background-color: #CC181E;
535
+ color: #FFFFFF;
536
+ text-shadow: none;
537
+ background-image: none;
538
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
539
+ }
540
+ .ui.youtube.button:hover {
541
+ background-color: #bd0d13;
542
+ color: #FFFFFF;
543
+ text-shadow: none;
544
+ }
545
+ .ui.youtube.button:active {
546
+ background-color: #9e1317;
547
+ color: #FFFFFF;
548
+ text-shadow: none;
549
+ }
550
+
551
+ /* Instagram */
552
+ .ui.instagram.button {
553
+ background-color: #49769C;
554
+ color: #FFFFFF;
555
+ text-shadow: none;
556
+ background-image: none;
557
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
558
+ }
559
+ .ui.instagram.button:hover {
560
+ background-color: #3d698e;
561
+ color: #FFFFFF;
562
+ text-shadow: none;
563
+ }
564
+ .ui.instagram.button:active {
565
+ background-color: #395c79;
566
+ color: #FFFFFF;
567
+ text-shadow: none;
568
+ }
569
+
570
+ /* Pinterest */
571
+ .ui.pinterest.button {
572
+ background-color: #BD081C;
573
+ color: #FFFFFF;
574
+ text-shadow: none;
575
+ background-image: none;
576
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
577
+ }
578
+ .ui.pinterest.button:hover {
579
+ background-color: #ac0013;
580
+ color: #FFFFFF;
581
+ text-shadow: none;
582
+ }
583
+ .ui.pinterest.button:active {
584
+ background-color: #8c0615;
585
+ color: #FFFFFF;
586
+ text-shadow: none;
587
+ }
588
+
589
+ /* VK */
590
+ .ui.vk.button {
591
+ background-color: #4D7198;
592
+ color: #FFFFFF;
593
+ background-image: none;
594
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
595
+ }
596
+ .ui.vk.button:hover {
597
+ background-color: #41648a;
598
+ color: #FFFFFF;
599
+ }
600
+ .ui.vk.button:active {
601
+ background-color: #3c5876;
602
+ color: #FFFFFF;
603
+ }
604
+
605
+ /*--------------
606
+ Icon
607
+ ---------------*/
608
+
609
+ .ui.button > .icon:not(.button) {
610
+ height: 0.85714286em;
611
+ opacity: 0.8;
612
+ margin: 0em 0.42857143em 0em -0.21428571em;
613
+ -webkit-transition: opacity 0.1s ease;
614
+ transition: opacity 0.1s ease;
615
+ vertical-align: '';
616
+ color: '';
617
+ }
618
+ .ui.button:not(.icon) > .icon:not(.button):not(.dropdown) {
619
+ margin: 0em 0.42857143em 0em -0.21428571em;
620
+ }
621
+ .ui.button:not(.icon) > .right.icon:not(.button):not(.dropdown) {
622
+ margin: 0em -0.21428571em 0em 0.42857143em;
623
+ }
624
+
625
+
626
+ /*******************************
627
+ Variations
628
+ *******************************/
629
+
630
+
631
+ /*-------------------
632
+ Floated
633
+ --------------------*/
634
+
635
+ .ui[class*="left floated"].buttons,
636
+ .ui[class*="left floated"].button {
637
+ float: left;
638
+ margin-left: 0em;
639
+ margin-right: 0.25em;
640
+ }
641
+ .ui[class*="right floated"].buttons,
642
+ .ui[class*="right floated"].button {
643
+ float: right;
644
+ margin-right: 0em;
645
+ margin-left: 0.25em;
646
+ }
647
+
648
+ /*-------------------
649
+ Compact
650
+ --------------------*/
651
+
652
+ .ui.compact.buttons .button,
653
+ .ui.compact.button {
654
+ padding: 0.58928571em 1.125em 0.58928571em;
655
+ }
656
+ .ui.compact.icon.buttons .button,
657
+ .ui.compact.icon.button {
658
+ padding: 0.58928571em 0.58928571em 0.58928571em;
659
+ }
660
+ .ui.compact.labeled.icon.buttons .button,
661
+ .ui.compact.labeled.icon.button {
662
+ padding: 0.58928571em 3.69642857em 0.58928571em;
663
+ }
664
+
665
+ /*-------------------
666
+ Sizes
667
+ --------------------*/
668
+
669
+ .ui.mini.buttons .button,
670
+ .ui.mini.buttons .or,
671
+ .ui.mini.button {
672
+ font-size: 0.78571429rem;
673
+ }
674
+ .ui.tiny.buttons .button,
675
+ .ui.tiny.buttons .or,
676
+ .ui.tiny.button {
677
+ font-size: 0.85714286rem;
678
+ }
679
+ .ui.small.buttons .button,
680
+ .ui.small.buttons .or,
681
+ .ui.small.button {
682
+ font-size: 0.92857143rem;
683
+ }
684
+ .ui.buttons .button,
685
+ .ui.buttons .or,
686
+ .ui.button {
687
+ font-size: 1rem;
688
+ }
689
+ .ui.large.buttons .button,
690
+ .ui.large.buttons .or,
691
+ .ui.large.button {
692
+ font-size: 1.14285714rem;
693
+ }
694
+ .ui.big.buttons .button,
695
+ .ui.big.buttons .or,
696
+ .ui.big.button {
697
+ font-size: 1.28571429rem;
698
+ }
699
+ .ui.huge.buttons .button,
700
+ .ui.huge.buttons .or,
701
+ .ui.huge.button {
702
+ font-size: 1.42857143rem;
703
+ }
704
+ .ui.massive.buttons .button,
705
+ .ui.massive.buttons .or,
706
+ .ui.massive.button {
707
+ font-size: 1.71428571rem;
708
+ }
709
+
710
+ /*--------------
711
+ Icon Only
712
+ ---------------*/
713
+
714
+ .ui.icon.buttons .button,
715
+ .ui.icon.button {
716
+ padding: 0.78571429em 0.78571429em 0.78571429em;
717
+ }
718
+ .ui.icon.buttons .button > .icon,
719
+ .ui.icon.button > .icon {
720
+ opacity: 0.9;
721
+ margin: 0em;
722
+ vertical-align: top;
723
+ }
724
+
725
+ /*-------------------
726
+ Basic
727
+ --------------------*/
728
+
729
+ .ui.basic.buttons .button,
730
+ .ui.basic.button {
731
+ background: transparent none !important;
732
+ color: rgba(0, 0, 0, 0.6) !important;
733
+ font-weight: normal;
734
+ border-radius: 0.28571429rem;
735
+ text-transform: none;
736
+ text-shadow: none !important;
737
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
738
+ }
739
+ .ui.basic.buttons {
740
+ box-shadow: none;
741
+ border: 1px solid rgba(34, 36, 38, 0.15);
742
+ border-radius: 0.28571429rem;
743
+ }
744
+ .ui.basic.buttons .button {
745
+ border-radius: 0em;
746
+ }
747
+ .ui.basic.buttons .button:hover,
748
+ .ui.basic.button:hover {
749
+ background: #FFFFFF !important;
750
+ color: rgba(0, 0, 0, 0.8) !important;
751
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
752
+ }
753
+ .ui.basic.buttons .button:focus,
754
+ .ui.basic.button:focus {
755
+ background: #FFFFFF !important;
756
+ color: rgba(0, 0, 0, 0.8) !important;
757
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset;
758
+ }
759
+ .ui.basic.buttons .button:active,
760
+ .ui.basic.button:active {
761
+ background: #F8F8F8 !important;
762
+ color: rgba(0, 0, 0, 0.9) !important;
763
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset;
764
+ }
765
+ .ui.basic.buttons .active.button,
766
+ .ui.basic.active.button {
767
+ background: rgba(0, 0, 0, 0.05) !important;
768
+ box-shadow: '' !important;
769
+ color: rgba(0, 0, 0, 0.95);
770
+ box-shadow: rgba(34, 36, 38, 0.35);
771
+ }
772
+ .ui.basic.buttons .active.button:hover,
773
+ .ui.basic.active.button:hover {
774
+ background-color: rgba(0, 0, 0, 0.05);
775
+ }
776
+
777
+ /* Vertical */
778
+ .ui.basic.buttons .button:hover {
779
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.35) inset, 0px 0px 0px 0px rgba(34, 36, 38, 0.15) inset inset;
780
+ }
781
+ .ui.basic.buttons .button:active {
782
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(34, 36, 38, 0.15) inset inset;
783
+ }
784
+ .ui.basic.buttons .active.button {
785
+ box-shadow: rgba(34, 36, 38, 0.35) inset;
786
+ }
787
+
788
+ /* Standard Basic Inverted */
789
+ .ui.basic.inverted.buttons .button,
790
+ .ui.basic.inverted.button {
791
+ background-color: transparent !important;
792
+ color: #F9FAFB !important;
793
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
794
+ }
795
+ .ui.basic.inverted.buttons .button:hover,
796
+ .ui.basic.inverted.button:hover {
797
+ color: #FFFFFF !important;
798
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
799
+ }
800
+ .ui.basic.inverted.buttons .button:focus,
801
+ .ui.basic.inverted.button:focus {
802
+ color: #FFFFFF !important;
803
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
804
+ }
805
+ .ui.basic.inverted.buttons .button:active,
806
+ .ui.basic.inverted.button:active {
807
+ background-color: rgba(255, 255, 255, 0.08) !important;
808
+ color: #FFFFFF !important;
809
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
810
+ }
811
+ .ui.basic.inverted.buttons .active.button,
812
+ .ui.basic.inverted.active.button {
813
+ background-color: rgba(255, 255, 255, 0.08);
814
+ color: #FFFFFF;
815
+ text-shadow: none;
816
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
817
+ }
818
+ .ui.basic.inverted.buttons .active.button:hover,
819
+ .ui.basic.inverted.active.button:hover {
820
+ background-color: rgba(255, 255, 255, 0.15);
821
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
822
+ }
823
+
824
+ /* Basic Group */
825
+ .ui.basic.buttons .button {
826
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
827
+ box-shadow: none;
828
+ }
829
+ .ui.basic.vertical.buttons .button {
830
+ border-left: none;
831
+ }
832
+ .ui.basic.vertical.buttons .button {
833
+ border-left-width: 0px;
834
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
835
+ }
836
+ .ui.basic.vertical.buttons .button:first-child {
837
+ border-top-width: 0px;
838
+ }
839
+
840
+ /*--------------
841
+ Labeled Icon
842
+ ---------------*/
843
+
844
+ .ui.labeled.icon.buttons .button,
845
+ .ui.labeled.icon.button {
846
+ position: relative;
847
+ padding-left: 4.07142857em !important;
848
+ padding-right: 1.5em !important;
849
+ }
850
+
851
+ /* Left Labeled */
852
+ .ui.labeled.icon.buttons > .button > .icon,
853
+ .ui.labeled.icon.button > .icon {
854
+ position: absolute;
855
+ height: 100%;
856
+ line-height: 1;
857
+ border-radius: 0px;
858
+ border-top-left-radius: inherit;
859
+ border-bottom-left-radius: inherit;
860
+ text-align: center;
861
+ margin: 0em;
862
+ width: 2.57142857em;
863
+ background-color: rgba(0, 0, 0, 0.05);
864
+ color: '';
865
+ box-shadow: -1px 0px 0px 0px transparent inset;
866
+ }
867
+
868
+ /* Left Labeled */
869
+ .ui.labeled.icon.buttons > .button > .icon,
870
+ .ui.labeled.icon.button > .icon {
871
+ top: 0em;
872
+ left: 0em;
873
+ }
874
+
875
+ /* Right Labeled */
876
+ .ui[class*="right labeled"].icon.button {
877
+ padding-right: 4.07142857em !important;
878
+ padding-left: 1.5em !important;
879
+ }
880
+ .ui[class*="right labeled"].icon.button > .icon {
881
+ left: auto;
882
+ right: 0em;
883
+ border-radius: 0px;
884
+ border-top-right-radius: inherit;
885
+ border-bottom-right-radius: inherit;
886
+ box-shadow: 1px 0px 0px 0px transparent inset;
887
+ }
888
+ .ui.labeled.icon.buttons > .button > .icon:before,
889
+ .ui.labeled.icon.button > .icon:before,
890
+ .ui.labeled.icon.buttons > .button > .icon:after,
891
+ .ui.labeled.icon.button > .icon:after {
892
+ display: block;
893
+ position: absolute;
894
+ width: 100%;
895
+ top: 50%;
896
+ text-align: center;
897
+ -webkit-transform: translateY(-50%);
898
+ -ms-transform: translateY(-50%);
899
+ transform: translateY(-50%);
900
+ }
901
+ .ui.labeled.icon.buttons .button > .icon {
902
+ border-radius: 0em;
903
+ }
904
+ .ui.labeled.icon.buttons .button:first-child > .icon {
905
+ border-top-left-radius: 0.28571429rem;
906
+ border-bottom-left-radius: 0.28571429rem;
907
+ }
908
+ .ui.labeled.icon.buttons .button:last-child > .icon {
909
+ border-top-right-radius: 0.28571429rem;
910
+ border-bottom-right-radius: 0.28571429rem;
911
+ }
912
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
913
+ border-radius: 0em;
914
+ border-top-left-radius: 0.28571429rem;
915
+ }
916
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
917
+ border-radius: 0em;
918
+ border-bottom-left-radius: 0.28571429rem;
919
+ }
920
+
921
+ /* Fluid Labeled */
922
+ .ui.fluid[class*="left labeled"].icon.button,
923
+ .ui.fluid[class*="right labeled"].icon.button {
924
+ padding-left: 1.5em !important;
925
+ padding-right: 1.5em !important;
926
+ }
927
+
928
+ /*--------------
929
+ Toggle
930
+ ---------------*/
931
+
932
+
933
+ /* Toggle (Modifies active state to give affordances) */
934
+ .ui.toggle.buttons .active.button,
935
+ .ui.buttons .button.toggle.active,
936
+ .ui.button.toggle.active {
937
+ background-color: #21BA45 !important;
938
+ box-shadow: none !important;
939
+ text-shadow: none;
940
+ color: #FFFFFF !important;
941
+ }
942
+ .ui.button.toggle.active:hover {
943
+ background-color: #16ab39 !important;
944
+ text-shadow: none;
945
+ color: #FFFFFF !important;
946
+ }
947
+
948
+ /*--------------
949
+ Circular
950
+ ---------------*/
951
+
952
+ .ui.circular.button {
953
+ border-radius: 10em;
954
+ }
955
+ .ui.circular.button > .icon {
956
+ width: 1em;
957
+ vertical-align: baseline;
958
+ }
959
+
960
+ /*-------------------
961
+ Or Buttons
962
+ --------------------*/
963
+
964
+ .ui.buttons .or {
965
+ position: relative;
966
+ width: 0.3em;
967
+ height: 2.57142857em;
968
+ z-index: 3;
969
+ }
970
+ .ui.buttons .or:before {
971
+ position: absolute;
972
+ text-align: center;
973
+ border-radius: 500rem;
974
+ content: 'or';
975
+ top: 50%;
976
+ left: 50%;
977
+ background-color: #FFFFFF;
978
+ text-shadow: none;
979
+ margin-top: -0.89285714em;
980
+ margin-left: -0.89285714em;
981
+ width: 1.78571429em;
982
+ height: 1.78571429em;
983
+ line-height: 1.78571429em;
984
+ color: rgba(0, 0, 0, 0.4);
985
+ font-style: normal;
986
+ font-weight: bold;
987
+ box-shadow: 0px 0px 0px 1px transparent inset;
988
+ }
989
+ .ui.buttons .or[data-text]:before {
990
+ content: attr(data-text);
991
+ }
992
+
993
+ /* Fluid Or */
994
+ .ui.fluid.buttons .or {
995
+ width: 0em !important;
996
+ }
997
+ .ui.fluid.buttons .or:after {
998
+ display: none;
999
+ }
1000
+
1001
+ /*-------------------
1002
+ Attached
1003
+ --------------------*/
1004
+
1005
+
1006
+ /* Singular */
1007
+ .ui.attached.button {
1008
+ position: relative;
1009
+ display: block;
1010
+ margin: 0em;
1011
+ border-radius: 0em;
1012
+ box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) !important;
1013
+ }
1014
+
1015
+ /* Top / Bottom */
1016
+ .ui.attached.top.button {
1017
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1018
+ }
1019
+ .ui.attached.bottom.button {
1020
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1021
+ }
1022
+
1023
+ /* Left / Right */
1024
+ .ui.left.attached.button {
1025
+ display: inline-block;
1026
+ border-left: none;
1027
+ text-align: right;
1028
+ padding-right: 0.75em;
1029
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1030
+ }
1031
+ .ui.right.attached.button {
1032
+ display: inline-block;
1033
+ text-align: left;
1034
+ padding-left: 0.75em;
1035
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1036
+ }
1037
+
1038
+ /* Plural */
1039
+ .ui.attached.buttons {
1040
+ position: relative;
1041
+ display: -webkit-box;
1042
+ display: -webkit-flex;
1043
+ display: -ms-flexbox;
1044
+ display: flex;
1045
+ border-radius: 0em;
1046
+ width: auto !important;
1047
+ z-index: 2;
1048
+ margin-left: -1px;
1049
+ margin-right: -1px;
1050
+ }
1051
+ .ui.attached.buttons .button {
1052
+ margin: 0em;
1053
+ }
1054
+ .ui.attached.buttons .button:first-child {
1055
+ border-radius: 0em;
1056
+ }
1057
+ .ui.attached.buttons .button:last-child {
1058
+ border-radius: 0em;
1059
+ }
1060
+
1061
+ /* Top / Bottom */
1062
+ .ui[class*="top attached"].buttons {
1063
+ margin-bottom: -1px;
1064
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1065
+ }
1066
+ .ui[class*="top attached"].buttons .button:first-child {
1067
+ border-radius: 0.28571429rem 0em 0em 0em;
1068
+ }
1069
+ .ui[class*="top attached"].buttons .button:last-child {
1070
+ border-radius: 0em 0.28571429rem 0em 0em;
1071
+ }
1072
+ .ui[class*="bottom attached"].buttons {
1073
+ margin-top: -1px;
1074
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1075
+ }
1076
+ .ui[class*="bottom attached"].buttons .button:first-child {
1077
+ border-radius: 0em 0em 0em 0.28571429rem;
1078
+ }
1079
+ .ui[class*="bottom attached"].buttons .button:last-child {
1080
+ border-radius: 0em 0em 0.28571429rem 0em;
1081
+ }
1082
+
1083
+ /* Left / Right */
1084
+ .ui[class*="left attached"].buttons {
1085
+ display: -webkit-inline-box;
1086
+ display: -webkit-inline-flex;
1087
+ display: -ms-inline-flexbox;
1088
+ display: inline-flex;
1089
+ margin-right: 0em;
1090
+ margin-left: -1px;
1091
+ border-radius: 0em 0.28571429rem 0.28571429rem 0em;
1092
+ }
1093
+ .ui[class*="left attached"].buttons .button:first-child {
1094
+ margin-left: -1px;
1095
+ border-radius: 0em 0.28571429rem 0em 0em;
1096
+ }
1097
+ .ui[class*="left attached"].buttons .button:last-child {
1098
+ margin-left: -1px;
1099
+ border-radius: 0em 0em 0.28571429rem 0em;
1100
+ }
1101
+ .ui[class*="right attached"].buttons {
1102
+ display: -webkit-inline-box;
1103
+ display: -webkit-inline-flex;
1104
+ display: -ms-inline-flexbox;
1105
+ display: inline-flex;
1106
+ margin-left: 0em;
1107
+ margin-right: -1px;
1108
+ border-radius: 0.28571429rem 0em 0em 0.28571429rem;
1109
+ }
1110
+ .ui[class*="right attached"].buttons .button:first-child {
1111
+ margin-left: -1px;
1112
+ border-radius: 0.28571429rem 0em 0em 0em;
1113
+ }
1114
+ .ui[class*="right attached"].buttons .button:last-child {
1115
+ margin-left: -1px;
1116
+ border-radius: 0em 0em 0em 0.28571429rem;
1117
+ }
1118
+
1119
+ /*-------------------
1120
+ Fluid
1121
+ --------------------*/
1122
+
1123
+ .ui.fluid.buttons,
1124
+ .ui.fluid.button {
1125
+ width: 100%;
1126
+ }
1127
+ .ui.fluid.button {
1128
+ display: block;
1129
+ }
1130
+ .ui.two.buttons {
1131
+ width: 100%;
1132
+ }
1133
+ .ui.two.buttons > .button {
1134
+ width: 50%;
1135
+ }
1136
+ .ui.three.buttons {
1137
+ width: 100%;
1138
+ }
1139
+ .ui.three.buttons > .button {
1140
+ width: 33.333%;
1141
+ }
1142
+ .ui.four.buttons {
1143
+ width: 100%;
1144
+ }
1145
+ .ui.four.buttons > .button {
1146
+ width: 25%;
1147
+ }
1148
+ .ui.five.buttons {
1149
+ width: 100%;
1150
+ }
1151
+ .ui.five.buttons > .button {
1152
+ width: 20%;
1153
+ }
1154
+ .ui.six.buttons {
1155
+ width: 100%;
1156
+ }
1157
+ .ui.six.buttons > .button {
1158
+ width: 16.666%;
1159
+ }
1160
+ .ui.seven.buttons {
1161
+ width: 100%;
1162
+ }
1163
+ .ui.seven.buttons > .button {
1164
+ width: 14.285%;
1165
+ }
1166
+ .ui.eight.buttons {
1167
+ width: 100%;
1168
+ }
1169
+ .ui.eight.buttons > .button {
1170
+ width: 12.500%;
1171
+ }
1172
+ .ui.nine.buttons {
1173
+ width: 100%;
1174
+ }
1175
+ .ui.nine.buttons > .button {
1176
+ width: 11.11%;
1177
+ }
1178
+ .ui.ten.buttons {
1179
+ width: 100%;
1180
+ }
1181
+ .ui.ten.buttons > .button {
1182
+ width: 10%;
1183
+ }
1184
+ .ui.eleven.buttons {
1185
+ width: 100%;
1186
+ }
1187
+ .ui.eleven.buttons > .button {
1188
+ width: 9.09%;
1189
+ }
1190
+ .ui.twelve.buttons {
1191
+ width: 100%;
1192
+ }
1193
+ .ui.twelve.buttons > .button {
1194
+ width: 8.3333%;
1195
+ }
1196
+
1197
+ /* Fluid Vertical Buttons */
1198
+ .ui.fluid.vertical.buttons,
1199
+ .ui.fluid.vertical.buttons > .button {
1200
+ display: -webkit-box;
1201
+ display: -webkit-flex;
1202
+ display: -ms-flexbox;
1203
+ display: flex;
1204
+ width: auto;
1205
+ }
1206
+ .ui.two.vertical.buttons > .button {
1207
+ height: 50%;
1208
+ }
1209
+ .ui.three.vertical.buttons > .button {
1210
+ height: 33.333%;
1211
+ }
1212
+ .ui.four.vertical.buttons > .button {
1213
+ height: 25%;
1214
+ }
1215
+ .ui.five.vertical.buttons > .button {
1216
+ height: 20%;
1217
+ }
1218
+ .ui.six.vertical.buttons > .button {
1219
+ height: 16.666%;
1220
+ }
1221
+ .ui.seven.vertical.buttons > .button {
1222
+ height: 14.285%;
1223
+ }
1224
+ .ui.eight.vertical.buttons > .button {
1225
+ height: 12.500%;
1226
+ }
1227
+ .ui.nine.vertical.buttons > .button {
1228
+ height: 11.11%;
1229
+ }
1230
+ .ui.ten.vertical.buttons > .button {
1231
+ height: 10%;
1232
+ }
1233
+ .ui.eleven.vertical.buttons > .button {
1234
+ height: 9.09%;
1235
+ }
1236
+ .ui.twelve.vertical.buttons > .button {
1237
+ height: 8.3333%;
1238
+ }
1239
+
1240
+ /*-------------------
1241
+ Colors
1242
+ --------------------*/
1243
+
1244
+
1245
+ /*--- Black ---*/
1246
+
1247
+ .ui.black.buttons .button,
1248
+ .ui.black.button {
1249
+ background-color: #1B1C1D;
1250
+ color: #FFFFFF;
1251
+ text-shadow: none;
1252
+ background-image: none;
1253
+ }
1254
+ .ui.black.button {
1255
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1256
+ }
1257
+ .ui.black.buttons .button:hover,
1258
+ .ui.black.button:hover {
1259
+ background-color: #27292a;
1260
+ color: #FFFFFF;
1261
+ text-shadow: none;
1262
+ }
1263
+ .ui.black.buttons .button:focus,
1264
+ .ui.black.button:focus {
1265
+ background-color: #2f3032;
1266
+ color: #FFFFFF;
1267
+ text-shadow: none;
1268
+ }
1269
+ .ui.black.buttons .button:active,
1270
+ .ui.black.button:active {
1271
+ background-color: #343637;
1272
+ color: #FFFFFF;
1273
+ text-shadow: none;
1274
+ }
1275
+ .ui.black.buttons .active.button,
1276
+ .ui.black.buttons .active.button:active,
1277
+ .ui.black.active.button,
1278
+ .ui.black.button .active.button:active {
1279
+ background-color: #0f0f10;
1280
+ color: #FFFFFF;
1281
+ text-shadow: none;
1282
+ }
1283
+
1284
+ /* Basic */
1285
+ .ui.basic.black.buttons .button,
1286
+ .ui.basic.black.button {
1287
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
1288
+ color: #1B1C1D !important;
1289
+ }
1290
+ .ui.basic.black.buttons .button:hover,
1291
+ .ui.basic.black.button:hover {
1292
+ background: transparent !important;
1293
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
1294
+ color: #27292a !important;
1295
+ }
1296
+ .ui.basic.black.buttons .button:focus,
1297
+ .ui.basic.black.button:focus {
1298
+ background: transparent !important;
1299
+ box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
1300
+ color: #27292a !important;
1301
+ }
1302
+ .ui.basic.black.buttons .active.button,
1303
+ .ui.basic.black.active.button {
1304
+ background: transparent !important;
1305
+ box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
1306
+ color: #343637 !important;
1307
+ }
1308
+ .ui.basic.black.buttons .button:active,
1309
+ .ui.basic.black.button:active {
1310
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
1311
+ color: #343637 !important;
1312
+ }
1313
+ .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
1314
+ margin-left: -1px;
1315
+ }
1316
+
1317
+ /* Inverted */
1318
+ .ui.inverted.black.buttons .button,
1319
+ .ui.inverted.black.button {
1320
+ background-color: transparent;
1321
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1322
+ color: #FFFFFF;
1323
+ }
1324
+ .ui.inverted.black.buttons .button:hover,
1325
+ .ui.inverted.black.button:hover,
1326
+ .ui.inverted.black.buttons .button:focus,
1327
+ .ui.inverted.black.button:focus,
1328
+ .ui.inverted.black.buttons .button.active,
1329
+ .ui.inverted.black.button.active,
1330
+ .ui.inverted.black.buttons .button:active,
1331
+ .ui.inverted.black.button:active {
1332
+ box-shadow: none !important;
1333
+ color: #FFFFFF;
1334
+ }
1335
+ .ui.inverted.black.buttons .button:hover,
1336
+ .ui.inverted.black.button:hover {
1337
+ background-color: #000000;
1338
+ }
1339
+ .ui.inverted.black.buttons .button:focus,
1340
+ .ui.inverted.black.button:focus {
1341
+ background-color: #000000;
1342
+ }
1343
+ .ui.inverted.black.buttons .active.button,
1344
+ .ui.inverted.black.active.button {
1345
+ background-color: #000000;
1346
+ }
1347
+ .ui.inverted.black.buttons .button:active,
1348
+ .ui.inverted.black.button:active {
1349
+ background-color: #000000;
1350
+ }
1351
+
1352
+ /* Inverted Basic */
1353
+ .ui.inverted.black.basic.buttons .button,
1354
+ .ui.inverted.black.buttons .basic.button,
1355
+ .ui.inverted.black.basic.button {
1356
+ background-color: transparent;
1357
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1358
+ color: #FFFFFF !important;
1359
+ }
1360
+ .ui.inverted.black.basic.buttons .button:hover,
1361
+ .ui.inverted.black.buttons .basic.button:hover,
1362
+ .ui.inverted.black.basic.button:hover {
1363
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1364
+ color: #FFFFFF !important;
1365
+ }
1366
+ .ui.inverted.black.basic.buttons .button:focus,
1367
+ .ui.inverted.black.basic.buttons .button:focus,
1368
+ .ui.inverted.black.basic.button:focus {
1369
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1370
+ color: #545454 !important;
1371
+ }
1372
+ .ui.inverted.black.basic.buttons .active.button,
1373
+ .ui.inverted.black.buttons .basic.active.button,
1374
+ .ui.inverted.black.basic.active.button {
1375
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1376
+ color: #FFFFFF !important;
1377
+ }
1378
+ .ui.inverted.black.basic.buttons .button:active,
1379
+ .ui.inverted.black.buttons .basic.button:active,
1380
+ .ui.inverted.black.basic.button:active {
1381
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1382
+ color: #FFFFFF !important;
1383
+ }
1384
+
1385
+ /*--- Grey ---*/
1386
+
1387
+ .ui.grey.buttons .button,
1388
+ .ui.grey.button {
1389
+ background-color: #767676;
1390
+ color: #FFFFFF;
1391
+ text-shadow: none;
1392
+ background-image: none;
1393
+ }
1394
+ .ui.grey.button {
1395
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1396
+ }
1397
+ .ui.grey.buttons .button:hover,
1398
+ .ui.grey.button:hover {
1399
+ background-color: #838383;
1400
+ color: #FFFFFF;
1401
+ text-shadow: none;
1402
+ }
1403
+ .ui.grey.buttons .button:focus,
1404
+ .ui.grey.button:focus {
1405
+ background-color: #8a8a8a;
1406
+ color: #FFFFFF;
1407
+ text-shadow: none;
1408
+ }
1409
+ .ui.grey.buttons .button:active,
1410
+ .ui.grey.button:active {
1411
+ background-color: #909090;
1412
+ color: #FFFFFF;
1413
+ text-shadow: none;
1414
+ }
1415
+ .ui.grey.buttons .active.button,
1416
+ .ui.grey.buttons .active.button:active,
1417
+ .ui.grey.active.button,
1418
+ .ui.grey.button .active.button:active {
1419
+ background-color: #696969;
1420
+ color: #FFFFFF;
1421
+ text-shadow: none;
1422
+ }
1423
+
1424
+ /* Basic */
1425
+ .ui.basic.grey.buttons .button,
1426
+ .ui.basic.grey.button {
1427
+ box-shadow: 0px 0px 0px 1px #767676 inset !important;
1428
+ color: #767676 !important;
1429
+ }
1430
+ .ui.basic.grey.buttons .button:hover,
1431
+ .ui.basic.grey.button:hover {
1432
+ background: transparent !important;
1433
+ box-shadow: 0px 0px 0px 1px #838383 inset !important;
1434
+ color: #838383 !important;
1435
+ }
1436
+ .ui.basic.grey.buttons .button:focus,
1437
+ .ui.basic.grey.button:focus {
1438
+ background: transparent !important;
1439
+ box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
1440
+ color: #838383 !important;
1441
+ }
1442
+ .ui.basic.grey.buttons .active.button,
1443
+ .ui.basic.grey.active.button {
1444
+ background: transparent !important;
1445
+ box-shadow: 0px 0px 0px 1px #696969 inset !important;
1446
+ color: #909090 !important;
1447
+ }
1448
+ .ui.basic.grey.buttons .button:active,
1449
+ .ui.basic.grey.button:active {
1450
+ box-shadow: 0px 0px 0px 1px #909090 inset !important;
1451
+ color: #909090 !important;
1452
+ }
1453
+ .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
1454
+ margin-left: -1px;
1455
+ }
1456
+
1457
+ /* Inverted */
1458
+ .ui.inverted.grey.buttons .button,
1459
+ .ui.inverted.grey.button {
1460
+ background-color: transparent;
1461
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1462
+ color: #FFFFFF;
1463
+ }
1464
+ .ui.inverted.grey.buttons .button:hover,
1465
+ .ui.inverted.grey.button:hover,
1466
+ .ui.inverted.grey.buttons .button:focus,
1467
+ .ui.inverted.grey.button:focus,
1468
+ .ui.inverted.grey.buttons .button.active,
1469
+ .ui.inverted.grey.button.active,
1470
+ .ui.inverted.grey.buttons .button:active,
1471
+ .ui.inverted.grey.button:active {
1472
+ box-shadow: none !important;
1473
+ color: rgba(0, 0, 0, 0.6);
1474
+ }
1475
+ .ui.inverted.grey.buttons .button:hover,
1476
+ .ui.inverted.grey.button:hover {
1477
+ background-color: #cfd0d2;
1478
+ }
1479
+ .ui.inverted.grey.buttons .button:focus,
1480
+ .ui.inverted.grey.button:focus {
1481
+ background-color: #c7c9cb;
1482
+ }
1483
+ .ui.inverted.grey.buttons .active.button,
1484
+ .ui.inverted.grey.active.button {
1485
+ background-color: #cfd0d2;
1486
+ }
1487
+ .ui.inverted.grey.buttons .button:active,
1488
+ .ui.inverted.grey.button:active {
1489
+ background-color: #c2c4c5;
1490
+ }
1491
+
1492
+ /* Inverted Basic */
1493
+ .ui.inverted.grey.basic.buttons .button,
1494
+ .ui.inverted.grey.buttons .basic.button,
1495
+ .ui.inverted.grey.basic.button {
1496
+ background-color: transparent;
1497
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1498
+ color: #FFFFFF !important;
1499
+ }
1500
+ .ui.inverted.grey.basic.buttons .button:hover,
1501
+ .ui.inverted.grey.buttons .basic.button:hover,
1502
+ .ui.inverted.grey.basic.button:hover {
1503
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1504
+ color: #FFFFFF !important;
1505
+ }
1506
+ .ui.inverted.grey.basic.buttons .button:focus,
1507
+ .ui.inverted.grey.basic.buttons .button:focus,
1508
+ .ui.inverted.grey.basic.button:focus {
1509
+ box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
1510
+ color: #DCDDDE !important;
1511
+ }
1512
+ .ui.inverted.grey.basic.buttons .active.button,
1513
+ .ui.inverted.grey.buttons .basic.active.button,
1514
+ .ui.inverted.grey.basic.active.button {
1515
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1516
+ color: #FFFFFF !important;
1517
+ }
1518
+ .ui.inverted.grey.basic.buttons .button:active,
1519
+ .ui.inverted.grey.buttons .basic.button:active,
1520
+ .ui.inverted.grey.basic.button:active {
1521
+ box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
1522
+ color: #FFFFFF !important;
1523
+ }
1524
+
1525
+ /*--- Brown ---*/
1526
+
1527
+ .ui.brown.buttons .button,
1528
+ .ui.brown.button {
1529
+ background-color: #A5673F;
1530
+ color: #FFFFFF;
1531
+ text-shadow: none;
1532
+ background-image: none;
1533
+ }
1534
+ .ui.brown.button {
1535
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1536
+ }
1537
+ .ui.brown.buttons .button:hover,
1538
+ .ui.brown.button:hover {
1539
+ background-color: #975b33;
1540
+ color: #FFFFFF;
1541
+ text-shadow: none;
1542
+ }
1543
+ .ui.brown.buttons .button:focus,
1544
+ .ui.brown.button:focus {
1545
+ background-color: #90532b;
1546
+ color: #FFFFFF;
1547
+ text-shadow: none;
1548
+ }
1549
+ .ui.brown.buttons .button:active,
1550
+ .ui.brown.button:active {
1551
+ background-color: #805031;
1552
+ color: #FFFFFF;
1553
+ text-shadow: none;
1554
+ }
1555
+ .ui.brown.buttons .active.button,
1556
+ .ui.brown.buttons .active.button:active,
1557
+ .ui.brown.active.button,
1558
+ .ui.brown.button .active.button:active {
1559
+ background-color: #995a31;
1560
+ color: #FFFFFF;
1561
+ text-shadow: none;
1562
+ }
1563
+
1564
+ /* Basic */
1565
+ .ui.basic.brown.buttons .button,
1566
+ .ui.basic.brown.button {
1567
+ box-shadow: 0px 0px 0px 1px #A5673F inset !important;
1568
+ color: #A5673F !important;
1569
+ }
1570
+ .ui.basic.brown.buttons .button:hover,
1571
+ .ui.basic.brown.button:hover {
1572
+ background: transparent !important;
1573
+ box-shadow: 0px 0px 0px 1px #975b33 inset !important;
1574
+ color: #975b33 !important;
1575
+ }
1576
+ .ui.basic.brown.buttons .button:focus,
1577
+ .ui.basic.brown.button:focus {
1578
+ background: transparent !important;
1579
+ box-shadow: 0px 0px 0px 1px #90532b inset !important;
1580
+ color: #975b33 !important;
1581
+ }
1582
+ .ui.basic.brown.buttons .active.button,
1583
+ .ui.basic.brown.active.button {
1584
+ background: transparent !important;
1585
+ box-shadow: 0px 0px 0px 1px #995a31 inset !important;
1586
+ color: #805031 !important;
1587
+ }
1588
+ .ui.basic.brown.buttons .button:active,
1589
+ .ui.basic.brown.button:active {
1590
+ box-shadow: 0px 0px 0px 1px #805031 inset !important;
1591
+ color: #805031 !important;
1592
+ }
1593
+ .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
1594
+ margin-left: -1px;
1595
+ }
1596
+
1597
+ /* Inverted */
1598
+ .ui.inverted.brown.buttons .button,
1599
+ .ui.inverted.brown.button {
1600
+ background-color: transparent;
1601
+ box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
1602
+ color: #D67C1C;
1603
+ }
1604
+ .ui.inverted.brown.buttons .button:hover,
1605
+ .ui.inverted.brown.button:hover,
1606
+ .ui.inverted.brown.buttons .button:focus,
1607
+ .ui.inverted.brown.button:focus,
1608
+ .ui.inverted.brown.buttons .button.active,
1609
+ .ui.inverted.brown.button.active,
1610
+ .ui.inverted.brown.buttons .button:active,
1611
+ .ui.inverted.brown.button:active {
1612
+ box-shadow: none !important;
1613
+ color: #FFFFFF;
1614
+ }
1615
+ .ui.inverted.brown.buttons .button:hover,
1616
+ .ui.inverted.brown.button:hover {
1617
+ background-color: #c86f11;
1618
+ }
1619
+ .ui.inverted.brown.buttons .button:focus,
1620
+ .ui.inverted.brown.button:focus {
1621
+ background-color: #c16808;
1622
+ }
1623
+ .ui.inverted.brown.buttons .active.button,
1624
+ .ui.inverted.brown.active.button {
1625
+ background-color: #cc6f0d;
1626
+ }
1627
+ .ui.inverted.brown.buttons .button:active,
1628
+ .ui.inverted.brown.button:active {
1629
+ background-color: #a96216;
1630
+ }
1631
+
1632
+ /* Inverted Basic */
1633
+ .ui.inverted.brown.basic.buttons .button,
1634
+ .ui.inverted.brown.buttons .basic.button,
1635
+ .ui.inverted.brown.basic.button {
1636
+ background-color: transparent;
1637
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1638
+ color: #FFFFFF !important;
1639
+ }
1640
+ .ui.inverted.brown.basic.buttons .button:hover,
1641
+ .ui.inverted.brown.buttons .basic.button:hover,
1642
+ .ui.inverted.brown.basic.button:hover {
1643
+ box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
1644
+ color: #D67C1C !important;
1645
+ }
1646
+ .ui.inverted.brown.basic.buttons .button:focus,
1647
+ .ui.inverted.brown.basic.buttons .button:focus,
1648
+ .ui.inverted.brown.basic.button:focus {
1649
+ box-shadow: 0px 0px 0px 2px #c16808 inset !important;
1650
+ color: #D67C1C !important;
1651
+ }
1652
+ .ui.inverted.brown.basic.buttons .active.button,
1653
+ .ui.inverted.brown.buttons .basic.active.button,
1654
+ .ui.inverted.brown.basic.active.button {
1655
+ box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
1656
+ color: #D67C1C !important;
1657
+ }
1658
+ .ui.inverted.brown.basic.buttons .button:active,
1659
+ .ui.inverted.brown.buttons .basic.button:active,
1660
+ .ui.inverted.brown.basic.button:active {
1661
+ box-shadow: 0px 0px 0px 2px #a96216 inset !important;
1662
+ color: #D67C1C !important;
1663
+ }
1664
+
1665
+ /*--- Blue ---*/
1666
+
1667
+ .ui.blue.buttons .button,
1668
+ .ui.blue.button {
1669
+ background-color: #2185D0;
1670
+ color: #FFFFFF;
1671
+ text-shadow: none;
1672
+ background-image: none;
1673
+ }
1674
+ .ui.blue.button {
1675
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1676
+ }
1677
+ .ui.blue.buttons .button:hover,
1678
+ .ui.blue.button:hover {
1679
+ background-color: #1678c2;
1680
+ color: #FFFFFF;
1681
+ text-shadow: none;
1682
+ }
1683
+ .ui.blue.buttons .button:focus,
1684
+ .ui.blue.button:focus {
1685
+ background-color: #0d71bb;
1686
+ color: #FFFFFF;
1687
+ text-shadow: none;
1688
+ }
1689
+ .ui.blue.buttons .button:active,
1690
+ .ui.blue.button:active {
1691
+ background-color: #1a69a4;
1692
+ color: #FFFFFF;
1693
+ text-shadow: none;
1694
+ }
1695
+ .ui.blue.buttons .active.button,
1696
+ .ui.blue.buttons .active.button:active,
1697
+ .ui.blue.active.button,
1698
+ .ui.blue.button .active.button:active {
1699
+ background-color: #1279c6;
1700
+ color: #FFFFFF;
1701
+ text-shadow: none;
1702
+ }
1703
+
1704
+ /* Basic */
1705
+ .ui.basic.blue.buttons .button,
1706
+ .ui.basic.blue.button {
1707
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
1708
+ color: #2185D0 !important;
1709
+ }
1710
+ .ui.basic.blue.buttons .button:hover,
1711
+ .ui.basic.blue.button:hover {
1712
+ background: transparent !important;
1713
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
1714
+ color: #1678c2 !important;
1715
+ }
1716
+ .ui.basic.blue.buttons .button:focus,
1717
+ .ui.basic.blue.button:focus {
1718
+ background: transparent !important;
1719
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
1720
+ color: #1678c2 !important;
1721
+ }
1722
+ .ui.basic.blue.buttons .active.button,
1723
+ .ui.basic.blue.active.button {
1724
+ background: transparent !important;
1725
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
1726
+ color: #1a69a4 !important;
1727
+ }
1728
+ .ui.basic.blue.buttons .button:active,
1729
+ .ui.basic.blue.button:active {
1730
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
1731
+ color: #1a69a4 !important;
1732
+ }
1733
+ .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
1734
+ margin-left: -1px;
1735
+ }
1736
+
1737
+ /* Inverted */
1738
+ .ui.inverted.blue.buttons .button,
1739
+ .ui.inverted.blue.button {
1740
+ background-color: transparent;
1741
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
1742
+ color: #54C8FF;
1743
+ }
1744
+ .ui.inverted.blue.buttons .button:hover,
1745
+ .ui.inverted.blue.button:hover,
1746
+ .ui.inverted.blue.buttons .button:focus,
1747
+ .ui.inverted.blue.button:focus,
1748
+ .ui.inverted.blue.buttons .button.active,
1749
+ .ui.inverted.blue.button.active,
1750
+ .ui.inverted.blue.buttons .button:active,
1751
+ .ui.inverted.blue.button:active {
1752
+ box-shadow: none !important;
1753
+ color: #FFFFFF;
1754
+ }
1755
+ .ui.inverted.blue.buttons .button:hover,
1756
+ .ui.inverted.blue.button:hover {
1757
+ background-color: #3ac0ff;
1758
+ }
1759
+ .ui.inverted.blue.buttons .button:focus,
1760
+ .ui.inverted.blue.button:focus {
1761
+ background-color: #2bbbff;
1762
+ }
1763
+ .ui.inverted.blue.buttons .active.button,
1764
+ .ui.inverted.blue.active.button {
1765
+ background-color: #3ac0ff;
1766
+ }
1767
+ .ui.inverted.blue.buttons .button:active,
1768
+ .ui.inverted.blue.button:active {
1769
+ background-color: #21b8ff;
1770
+ }
1771
+
1772
+ /* Inverted Basic */
1773
+ .ui.inverted.blue.basic.buttons .button,
1774
+ .ui.inverted.blue.buttons .basic.button,
1775
+ .ui.inverted.blue.basic.button {
1776
+ background-color: transparent;
1777
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1778
+ color: #FFFFFF !important;
1779
+ }
1780
+ .ui.inverted.blue.basic.buttons .button:hover,
1781
+ .ui.inverted.blue.buttons .basic.button:hover,
1782
+ .ui.inverted.blue.basic.button:hover {
1783
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1784
+ color: #54C8FF !important;
1785
+ }
1786
+ .ui.inverted.blue.basic.buttons .button:focus,
1787
+ .ui.inverted.blue.basic.buttons .button:focus,
1788
+ .ui.inverted.blue.basic.button:focus {
1789
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
1790
+ color: #54C8FF !important;
1791
+ }
1792
+ .ui.inverted.blue.basic.buttons .active.button,
1793
+ .ui.inverted.blue.buttons .basic.active.button,
1794
+ .ui.inverted.blue.basic.active.button {
1795
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1796
+ color: #54C8FF !important;
1797
+ }
1798
+ .ui.inverted.blue.basic.buttons .button:active,
1799
+ .ui.inverted.blue.buttons .basic.button:active,
1800
+ .ui.inverted.blue.basic.button:active {
1801
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
1802
+ color: #54C8FF !important;
1803
+ }
1804
+
1805
+ /*--- Green ---*/
1806
+
1807
+ .ui.green.buttons .button,
1808
+ .ui.green.button {
1809
+ background-color: #21BA45;
1810
+ color: #FFFFFF;
1811
+ text-shadow: none;
1812
+ background-image: none;
1813
+ }
1814
+ .ui.green.button {
1815
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1816
+ }
1817
+ .ui.green.buttons .button:hover,
1818
+ .ui.green.button:hover {
1819
+ background-color: #16ab39;
1820
+ color: #FFFFFF;
1821
+ text-shadow: none;
1822
+ }
1823
+ .ui.green.buttons .button:focus,
1824
+ .ui.green.button:focus {
1825
+ background-color: #0ea432;
1826
+ color: #FFFFFF;
1827
+ text-shadow: none;
1828
+ }
1829
+ .ui.green.buttons .button:active,
1830
+ .ui.green.button:active {
1831
+ background-color: #198f35;
1832
+ color: #FFFFFF;
1833
+ text-shadow: none;
1834
+ }
1835
+ .ui.green.buttons .active.button,
1836
+ .ui.green.buttons .active.button:active,
1837
+ .ui.green.active.button,
1838
+ .ui.green.button .active.button:active {
1839
+ background-color: #13ae38;
1840
+ color: #FFFFFF;
1841
+ text-shadow: none;
1842
+ }
1843
+
1844
+ /* Basic */
1845
+ .ui.basic.green.buttons .button,
1846
+ .ui.basic.green.button {
1847
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
1848
+ color: #21BA45 !important;
1849
+ }
1850
+ .ui.basic.green.buttons .button:hover,
1851
+ .ui.basic.green.button:hover {
1852
+ background: transparent !important;
1853
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
1854
+ color: #16ab39 !important;
1855
+ }
1856
+ .ui.basic.green.buttons .button:focus,
1857
+ .ui.basic.green.button:focus {
1858
+ background: transparent !important;
1859
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
1860
+ color: #16ab39 !important;
1861
+ }
1862
+ .ui.basic.green.buttons .active.button,
1863
+ .ui.basic.green.active.button {
1864
+ background: transparent !important;
1865
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
1866
+ color: #198f35 !important;
1867
+ }
1868
+ .ui.basic.green.buttons .button:active,
1869
+ .ui.basic.green.button:active {
1870
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
1871
+ color: #198f35 !important;
1872
+ }
1873
+ .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
1874
+ margin-left: -1px;
1875
+ }
1876
+
1877
+ /* Inverted */
1878
+ .ui.inverted.green.buttons .button,
1879
+ .ui.inverted.green.button {
1880
+ background-color: transparent;
1881
+ box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
1882
+ color: #2ECC40;
1883
+ }
1884
+ .ui.inverted.green.buttons .button:hover,
1885
+ .ui.inverted.green.button:hover,
1886
+ .ui.inverted.green.buttons .button:focus,
1887
+ .ui.inverted.green.button:focus,
1888
+ .ui.inverted.green.buttons .button.active,
1889
+ .ui.inverted.green.button.active,
1890
+ .ui.inverted.green.buttons .button:active,
1891
+ .ui.inverted.green.button:active {
1892
+ box-shadow: none !important;
1893
+ color: #FFFFFF;
1894
+ }
1895
+ .ui.inverted.green.buttons .button:hover,
1896
+ .ui.inverted.green.button:hover {
1897
+ background-color: #22be34;
1898
+ }
1899
+ .ui.inverted.green.buttons .button:focus,
1900
+ .ui.inverted.green.button:focus {
1901
+ background-color: #19b82b;
1902
+ }
1903
+ .ui.inverted.green.buttons .active.button,
1904
+ .ui.inverted.green.active.button {
1905
+ background-color: #1fc231;
1906
+ }
1907
+ .ui.inverted.green.buttons .button:active,
1908
+ .ui.inverted.green.button:active {
1909
+ background-color: #25a233;
1910
+ }
1911
+
1912
+ /* Inverted Basic */
1913
+ .ui.inverted.green.basic.buttons .button,
1914
+ .ui.inverted.green.buttons .basic.button,
1915
+ .ui.inverted.green.basic.button {
1916
+ background-color: transparent;
1917
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1918
+ color: #FFFFFF !important;
1919
+ }
1920
+ .ui.inverted.green.basic.buttons .button:hover,
1921
+ .ui.inverted.green.buttons .basic.button:hover,
1922
+ .ui.inverted.green.basic.button:hover {
1923
+ box-shadow: 0px 0px 0px 2px #22be34 inset !important;
1924
+ color: #2ECC40 !important;
1925
+ }
1926
+ .ui.inverted.green.basic.buttons .button:focus,
1927
+ .ui.inverted.green.basic.buttons .button:focus,
1928
+ .ui.inverted.green.basic.button:focus {
1929
+ box-shadow: 0px 0px 0px 2px #19b82b inset !important;
1930
+ color: #2ECC40 !important;
1931
+ }
1932
+ .ui.inverted.green.basic.buttons .active.button,
1933
+ .ui.inverted.green.buttons .basic.active.button,
1934
+ .ui.inverted.green.basic.active.button {
1935
+ box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
1936
+ color: #2ECC40 !important;
1937
+ }
1938
+ .ui.inverted.green.basic.buttons .button:active,
1939
+ .ui.inverted.green.buttons .basic.button:active,
1940
+ .ui.inverted.green.basic.button:active {
1941
+ box-shadow: 0px 0px 0px 2px #25a233 inset !important;
1942
+ color: #2ECC40 !important;
1943
+ }
1944
+
1945
+ /*--- Orange ---*/
1946
+
1947
+ .ui.orange.buttons .button,
1948
+ .ui.orange.button {
1949
+ background-color: #F2711C;
1950
+ color: #FFFFFF;
1951
+ text-shadow: none;
1952
+ background-image: none;
1953
+ }
1954
+ .ui.orange.button {
1955
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
1956
+ }
1957
+ .ui.orange.buttons .button:hover,
1958
+ .ui.orange.button:hover {
1959
+ background-color: #f26202;
1960
+ color: #FFFFFF;
1961
+ text-shadow: none;
1962
+ }
1963
+ .ui.orange.buttons .button:focus,
1964
+ .ui.orange.button:focus {
1965
+ background-color: #e55b00;
1966
+ color: #FFFFFF;
1967
+ text-shadow: none;
1968
+ }
1969
+ .ui.orange.buttons .button:active,
1970
+ .ui.orange.button:active {
1971
+ background-color: #cf590c;
1972
+ color: #FFFFFF;
1973
+ text-shadow: none;
1974
+ }
1975
+ .ui.orange.buttons .active.button,
1976
+ .ui.orange.buttons .active.button:active,
1977
+ .ui.orange.active.button,
1978
+ .ui.orange.button .active.button:active {
1979
+ background-color: #f56100;
1980
+ color: #FFFFFF;
1981
+ text-shadow: none;
1982
+ }
1983
+
1984
+ /* Basic */
1985
+ .ui.basic.orange.buttons .button,
1986
+ .ui.basic.orange.button {
1987
+ box-shadow: 0px 0px 0px 1px #F2711C inset !important;
1988
+ color: #F2711C !important;
1989
+ }
1990
+ .ui.basic.orange.buttons .button:hover,
1991
+ .ui.basic.orange.button:hover {
1992
+ background: transparent !important;
1993
+ box-shadow: 0px 0px 0px 1px #f26202 inset !important;
1994
+ color: #f26202 !important;
1995
+ }
1996
+ .ui.basic.orange.buttons .button:focus,
1997
+ .ui.basic.orange.button:focus {
1998
+ background: transparent !important;
1999
+ box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
2000
+ color: #f26202 !important;
2001
+ }
2002
+ .ui.basic.orange.buttons .active.button,
2003
+ .ui.basic.orange.active.button {
2004
+ background: transparent !important;
2005
+ box-shadow: 0px 0px 0px 1px #f56100 inset !important;
2006
+ color: #cf590c !important;
2007
+ }
2008
+ .ui.basic.orange.buttons .button:active,
2009
+ .ui.basic.orange.button:active {
2010
+ box-shadow: 0px 0px 0px 1px #cf590c inset !important;
2011
+ color: #cf590c !important;
2012
+ }
2013
+ .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
2014
+ margin-left: -1px;
2015
+ }
2016
+
2017
+ /* Inverted */
2018
+ .ui.inverted.orange.buttons .button,
2019
+ .ui.inverted.orange.button {
2020
+ background-color: transparent;
2021
+ box-shadow: 0px 0px 0px 2px #FF851B inset !important;
2022
+ color: #FF851B;
2023
+ }
2024
+ .ui.inverted.orange.buttons .button:hover,
2025
+ .ui.inverted.orange.button:hover,
2026
+ .ui.inverted.orange.buttons .button:focus,
2027
+ .ui.inverted.orange.button:focus,
2028
+ .ui.inverted.orange.buttons .button.active,
2029
+ .ui.inverted.orange.button.active,
2030
+ .ui.inverted.orange.buttons .button:active,
2031
+ .ui.inverted.orange.button:active {
2032
+ box-shadow: none !important;
2033
+ color: #FFFFFF;
2034
+ }
2035
+ .ui.inverted.orange.buttons .button:hover,
2036
+ .ui.inverted.orange.button:hover {
2037
+ background-color: #ff7701;
2038
+ }
2039
+ .ui.inverted.orange.buttons .button:focus,
2040
+ .ui.inverted.orange.button:focus {
2041
+ background-color: #f17000;
2042
+ }
2043
+ .ui.inverted.orange.buttons .active.button,
2044
+ .ui.inverted.orange.active.button {
2045
+ background-color: #ff7701;
2046
+ }
2047
+ .ui.inverted.orange.buttons .button:active,
2048
+ .ui.inverted.orange.button:active {
2049
+ background-color: #e76b00;
2050
+ }
2051
+
2052
+ /* Inverted Basic */
2053
+ .ui.inverted.orange.basic.buttons .button,
2054
+ .ui.inverted.orange.buttons .basic.button,
2055
+ .ui.inverted.orange.basic.button {
2056
+ background-color: transparent;
2057
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2058
+ color: #FFFFFF !important;
2059
+ }
2060
+ .ui.inverted.orange.basic.buttons .button:hover,
2061
+ .ui.inverted.orange.buttons .basic.button:hover,
2062
+ .ui.inverted.orange.basic.button:hover {
2063
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2064
+ color: #FF851B !important;
2065
+ }
2066
+ .ui.inverted.orange.basic.buttons .button:focus,
2067
+ .ui.inverted.orange.basic.buttons .button:focus,
2068
+ .ui.inverted.orange.basic.button:focus {
2069
+ box-shadow: 0px 0px 0px 2px #f17000 inset !important;
2070
+ color: #FF851B !important;
2071
+ }
2072
+ .ui.inverted.orange.basic.buttons .active.button,
2073
+ .ui.inverted.orange.buttons .basic.active.button,
2074
+ .ui.inverted.orange.basic.active.button {
2075
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2076
+ color: #FF851B !important;
2077
+ }
2078
+ .ui.inverted.orange.basic.buttons .button:active,
2079
+ .ui.inverted.orange.buttons .basic.button:active,
2080
+ .ui.inverted.orange.basic.button:active {
2081
+ box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
2082
+ color: #FF851B !important;
2083
+ }
2084
+
2085
+ /*--- Pink ---*/
2086
+
2087
+ .ui.pink.buttons .button,
2088
+ .ui.pink.button {
2089
+ background-color: #E03997;
2090
+ color: #FFFFFF;
2091
+ text-shadow: none;
2092
+ background-image: none;
2093
+ }
2094
+ .ui.pink.button {
2095
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2096
+ }
2097
+ .ui.pink.buttons .button:hover,
2098
+ .ui.pink.button:hover {
2099
+ background-color: #e61a8d;
2100
+ color: #FFFFFF;
2101
+ text-shadow: none;
2102
+ }
2103
+ .ui.pink.buttons .button:focus,
2104
+ .ui.pink.button:focus {
2105
+ background-color: #e10f85;
2106
+ color: #FFFFFF;
2107
+ text-shadow: none;
2108
+ }
2109
+ .ui.pink.buttons .button:active,
2110
+ .ui.pink.button:active {
2111
+ background-color: #c71f7e;
2112
+ color: #FFFFFF;
2113
+ text-shadow: none;
2114
+ }
2115
+ .ui.pink.buttons .active.button,
2116
+ .ui.pink.buttons .active.button:active,
2117
+ .ui.pink.active.button,
2118
+ .ui.pink.button .active.button:active {
2119
+ background-color: #ea158d;
2120
+ color: #FFFFFF;
2121
+ text-shadow: none;
2122
+ }
2123
+
2124
+ /* Basic */
2125
+ .ui.basic.pink.buttons .button,
2126
+ .ui.basic.pink.button {
2127
+ box-shadow: 0px 0px 0px 1px #E03997 inset !important;
2128
+ color: #E03997 !important;
2129
+ }
2130
+ .ui.basic.pink.buttons .button:hover,
2131
+ .ui.basic.pink.button:hover {
2132
+ background: transparent !important;
2133
+ box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
2134
+ color: #e61a8d !important;
2135
+ }
2136
+ .ui.basic.pink.buttons .button:focus,
2137
+ .ui.basic.pink.button:focus {
2138
+ background: transparent !important;
2139
+ box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
2140
+ color: #e61a8d !important;
2141
+ }
2142
+ .ui.basic.pink.buttons .active.button,
2143
+ .ui.basic.pink.active.button {
2144
+ background: transparent !important;
2145
+ box-shadow: 0px 0px 0px 1px #ea158d inset !important;
2146
+ color: #c71f7e !important;
2147
+ }
2148
+ .ui.basic.pink.buttons .button:active,
2149
+ .ui.basic.pink.button:active {
2150
+ box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
2151
+ color: #c71f7e !important;
2152
+ }
2153
+ .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
2154
+ margin-left: -1px;
2155
+ }
2156
+
2157
+ /* Inverted */
2158
+ .ui.inverted.pink.buttons .button,
2159
+ .ui.inverted.pink.button {
2160
+ background-color: transparent;
2161
+ box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
2162
+ color: #FF8EDF;
2163
+ }
2164
+ .ui.inverted.pink.buttons .button:hover,
2165
+ .ui.inverted.pink.button:hover,
2166
+ .ui.inverted.pink.buttons .button:focus,
2167
+ .ui.inverted.pink.button:focus,
2168
+ .ui.inverted.pink.buttons .button.active,
2169
+ .ui.inverted.pink.button.active,
2170
+ .ui.inverted.pink.buttons .button:active,
2171
+ .ui.inverted.pink.button:active {
2172
+ box-shadow: none !important;
2173
+ color: #FFFFFF;
2174
+ }
2175
+ .ui.inverted.pink.buttons .button:hover,
2176
+ .ui.inverted.pink.button:hover {
2177
+ background-color: #ff74d8;
2178
+ }
2179
+ .ui.inverted.pink.buttons .button:focus,
2180
+ .ui.inverted.pink.button:focus {
2181
+ background-color: #ff65d3;
2182
+ }
2183
+ .ui.inverted.pink.buttons .active.button,
2184
+ .ui.inverted.pink.active.button {
2185
+ background-color: #ff74d8;
2186
+ }
2187
+ .ui.inverted.pink.buttons .button:active,
2188
+ .ui.inverted.pink.button:active {
2189
+ background-color: #ff5bd1;
2190
+ }
2191
+
2192
+ /* Inverted Basic */
2193
+ .ui.inverted.pink.basic.buttons .button,
2194
+ .ui.inverted.pink.buttons .basic.button,
2195
+ .ui.inverted.pink.basic.button {
2196
+ background-color: transparent;
2197
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2198
+ color: #FFFFFF !important;
2199
+ }
2200
+ .ui.inverted.pink.basic.buttons .button:hover,
2201
+ .ui.inverted.pink.buttons .basic.button:hover,
2202
+ .ui.inverted.pink.basic.button:hover {
2203
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2204
+ color: #FF8EDF !important;
2205
+ }
2206
+ .ui.inverted.pink.basic.buttons .button:focus,
2207
+ .ui.inverted.pink.basic.buttons .button:focus,
2208
+ .ui.inverted.pink.basic.button:focus {
2209
+ box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
2210
+ color: #FF8EDF !important;
2211
+ }
2212
+ .ui.inverted.pink.basic.buttons .active.button,
2213
+ .ui.inverted.pink.buttons .basic.active.button,
2214
+ .ui.inverted.pink.basic.active.button {
2215
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2216
+ color: #FF8EDF !important;
2217
+ }
2218
+ .ui.inverted.pink.basic.buttons .button:active,
2219
+ .ui.inverted.pink.buttons .basic.button:active,
2220
+ .ui.inverted.pink.basic.button:active {
2221
+ box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
2222
+ color: #FF8EDF !important;
2223
+ }
2224
+
2225
+ /*--- Violet ---*/
2226
+
2227
+ .ui.violet.buttons .button,
2228
+ .ui.violet.button {
2229
+ background-color: #6435C9;
2230
+ color: #FFFFFF;
2231
+ text-shadow: none;
2232
+ background-image: none;
2233
+ }
2234
+ .ui.violet.button {
2235
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2236
+ }
2237
+ .ui.violet.buttons .button:hover,
2238
+ .ui.violet.button:hover {
2239
+ background-color: #5829bb;
2240
+ color: #FFFFFF;
2241
+ text-shadow: none;
2242
+ }
2243
+ .ui.violet.buttons .button:focus,
2244
+ .ui.violet.button:focus {
2245
+ background-color: #4f20b5;
2246
+ color: #FFFFFF;
2247
+ text-shadow: none;
2248
+ }
2249
+ .ui.violet.buttons .button:active,
2250
+ .ui.violet.button:active {
2251
+ background-color: #502aa1;
2252
+ color: #FFFFFF;
2253
+ text-shadow: none;
2254
+ }
2255
+ .ui.violet.buttons .active.button,
2256
+ .ui.violet.buttons .active.button:active,
2257
+ .ui.violet.active.button,
2258
+ .ui.violet.button .active.button:active {
2259
+ background-color: #5626bf;
2260
+ color: #FFFFFF;
2261
+ text-shadow: none;
2262
+ }
2263
+
2264
+ /* Basic */
2265
+ .ui.basic.violet.buttons .button,
2266
+ .ui.basic.violet.button {
2267
+ box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
2268
+ color: #6435C9 !important;
2269
+ }
2270
+ .ui.basic.violet.buttons .button:hover,
2271
+ .ui.basic.violet.button:hover {
2272
+ background: transparent !important;
2273
+ box-shadow: 0px 0px 0px 1px #5829bb inset !important;
2274
+ color: #5829bb !important;
2275
+ }
2276
+ .ui.basic.violet.buttons .button:focus,
2277
+ .ui.basic.violet.button:focus {
2278
+ background: transparent !important;
2279
+ box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
2280
+ color: #5829bb !important;
2281
+ }
2282
+ .ui.basic.violet.buttons .active.button,
2283
+ .ui.basic.violet.active.button {
2284
+ background: transparent !important;
2285
+ box-shadow: 0px 0px 0px 1px #5626bf inset !important;
2286
+ color: #502aa1 !important;
2287
+ }
2288
+ .ui.basic.violet.buttons .button:active,
2289
+ .ui.basic.violet.button:active {
2290
+ box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
2291
+ color: #502aa1 !important;
2292
+ }
2293
+ .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
2294
+ margin-left: -1px;
2295
+ }
2296
+
2297
+ /* Inverted */
2298
+ .ui.inverted.violet.buttons .button,
2299
+ .ui.inverted.violet.button {
2300
+ background-color: transparent;
2301
+ box-shadow: 0px 0px 0px 2px #A291FB inset !important;
2302
+ color: #A291FB;
2303
+ }
2304
+ .ui.inverted.violet.buttons .button:hover,
2305
+ .ui.inverted.violet.button:hover,
2306
+ .ui.inverted.violet.buttons .button:focus,
2307
+ .ui.inverted.violet.button:focus,
2308
+ .ui.inverted.violet.buttons .button.active,
2309
+ .ui.inverted.violet.button.active,
2310
+ .ui.inverted.violet.buttons .button:active,
2311
+ .ui.inverted.violet.button:active {
2312
+ box-shadow: none !important;
2313
+ color: #FFFFFF;
2314
+ }
2315
+ .ui.inverted.violet.buttons .button:hover,
2316
+ .ui.inverted.violet.button:hover {
2317
+ background-color: #8a73ff;
2318
+ }
2319
+ .ui.inverted.violet.buttons .button:focus,
2320
+ .ui.inverted.violet.button:focus {
2321
+ background-color: #7d64ff;
2322
+ }
2323
+ .ui.inverted.violet.buttons .active.button,
2324
+ .ui.inverted.violet.active.button {
2325
+ background-color: #8a73ff;
2326
+ }
2327
+ .ui.inverted.violet.buttons .button:active,
2328
+ .ui.inverted.violet.button:active {
2329
+ background-color: #7860f9;
2330
+ }
2331
+
2332
+ /* Inverted Basic */
2333
+ .ui.inverted.violet.basic.buttons .button,
2334
+ .ui.inverted.violet.buttons .basic.button,
2335
+ .ui.inverted.violet.basic.button {
2336
+ background-color: transparent;
2337
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2338
+ color: #FFFFFF !important;
2339
+ }
2340
+ .ui.inverted.violet.basic.buttons .button:hover,
2341
+ .ui.inverted.violet.buttons .basic.button:hover,
2342
+ .ui.inverted.violet.basic.button:hover {
2343
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2344
+ color: #A291FB !important;
2345
+ }
2346
+ .ui.inverted.violet.basic.buttons .button:focus,
2347
+ .ui.inverted.violet.basic.buttons .button:focus,
2348
+ .ui.inverted.violet.basic.button:focus {
2349
+ box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
2350
+ color: #A291FB !important;
2351
+ }
2352
+ .ui.inverted.violet.basic.buttons .active.button,
2353
+ .ui.inverted.violet.buttons .basic.active.button,
2354
+ .ui.inverted.violet.basic.active.button {
2355
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2356
+ color: #A291FB !important;
2357
+ }
2358
+ .ui.inverted.violet.basic.buttons .button:active,
2359
+ .ui.inverted.violet.buttons .basic.button:active,
2360
+ .ui.inverted.violet.basic.button:active {
2361
+ box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
2362
+ color: #A291FB !important;
2363
+ }
2364
+
2365
+ /*--- Purple ---*/
2366
+
2367
+ .ui.purple.buttons .button,
2368
+ .ui.purple.button {
2369
+ background-color: #A333C8;
2370
+ color: #FFFFFF;
2371
+ text-shadow: none;
2372
+ background-image: none;
2373
+ }
2374
+ .ui.purple.button {
2375
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2376
+ }
2377
+ .ui.purple.buttons .button:hover,
2378
+ .ui.purple.button:hover {
2379
+ background-color: #9627ba;
2380
+ color: #FFFFFF;
2381
+ text-shadow: none;
2382
+ }
2383
+ .ui.purple.buttons .button:focus,
2384
+ .ui.purple.button:focus {
2385
+ background-color: #8f1eb4;
2386
+ color: #FFFFFF;
2387
+ text-shadow: none;
2388
+ }
2389
+ .ui.purple.buttons .button:active,
2390
+ .ui.purple.button:active {
2391
+ background-color: #82299f;
2392
+ color: #FFFFFF;
2393
+ text-shadow: none;
2394
+ }
2395
+ .ui.purple.buttons .active.button,
2396
+ .ui.purple.buttons .active.button:active,
2397
+ .ui.purple.active.button,
2398
+ .ui.purple.button .active.button:active {
2399
+ background-color: #9724be;
2400
+ color: #FFFFFF;
2401
+ text-shadow: none;
2402
+ }
2403
+
2404
+ /* Basic */
2405
+ .ui.basic.purple.buttons .button,
2406
+ .ui.basic.purple.button {
2407
+ box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
2408
+ color: #A333C8 !important;
2409
+ }
2410
+ .ui.basic.purple.buttons .button:hover,
2411
+ .ui.basic.purple.button:hover {
2412
+ background: transparent !important;
2413
+ box-shadow: 0px 0px 0px 1px #9627ba inset !important;
2414
+ color: #9627ba !important;
2415
+ }
2416
+ .ui.basic.purple.buttons .button:focus,
2417
+ .ui.basic.purple.button:focus {
2418
+ background: transparent !important;
2419
+ box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
2420
+ color: #9627ba !important;
2421
+ }
2422
+ .ui.basic.purple.buttons .active.button,
2423
+ .ui.basic.purple.active.button {
2424
+ background: transparent !important;
2425
+ box-shadow: 0px 0px 0px 1px #9724be inset !important;
2426
+ color: #82299f !important;
2427
+ }
2428
+ .ui.basic.purple.buttons .button:active,
2429
+ .ui.basic.purple.button:active {
2430
+ box-shadow: 0px 0px 0px 1px #82299f inset !important;
2431
+ color: #82299f !important;
2432
+ }
2433
+ .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
2434
+ margin-left: -1px;
2435
+ }
2436
+
2437
+ /* Inverted */
2438
+ .ui.inverted.purple.buttons .button,
2439
+ .ui.inverted.purple.button {
2440
+ background-color: transparent;
2441
+ box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
2442
+ color: #DC73FF;
2443
+ }
2444
+ .ui.inverted.purple.buttons .button:hover,
2445
+ .ui.inverted.purple.button:hover,
2446
+ .ui.inverted.purple.buttons .button:focus,
2447
+ .ui.inverted.purple.button:focus,
2448
+ .ui.inverted.purple.buttons .button.active,
2449
+ .ui.inverted.purple.button.active,
2450
+ .ui.inverted.purple.buttons .button:active,
2451
+ .ui.inverted.purple.button:active {
2452
+ box-shadow: none !important;
2453
+ color: #FFFFFF;
2454
+ }
2455
+ .ui.inverted.purple.buttons .button:hover,
2456
+ .ui.inverted.purple.button:hover {
2457
+ background-color: #d65aff;
2458
+ }
2459
+ .ui.inverted.purple.buttons .button:focus,
2460
+ .ui.inverted.purple.button:focus {
2461
+ background-color: #d24aff;
2462
+ }
2463
+ .ui.inverted.purple.buttons .active.button,
2464
+ .ui.inverted.purple.active.button {
2465
+ background-color: #d65aff;
2466
+ }
2467
+ .ui.inverted.purple.buttons .button:active,
2468
+ .ui.inverted.purple.button:active {
2469
+ background-color: #cf40ff;
2470
+ }
2471
+
2472
+ /* Inverted Basic */
2473
+ .ui.inverted.purple.basic.buttons .button,
2474
+ .ui.inverted.purple.buttons .basic.button,
2475
+ .ui.inverted.purple.basic.button {
2476
+ background-color: transparent;
2477
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2478
+ color: #FFFFFF !important;
2479
+ }
2480
+ .ui.inverted.purple.basic.buttons .button:hover,
2481
+ .ui.inverted.purple.buttons .basic.button:hover,
2482
+ .ui.inverted.purple.basic.button:hover {
2483
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2484
+ color: #DC73FF !important;
2485
+ }
2486
+ .ui.inverted.purple.basic.buttons .button:focus,
2487
+ .ui.inverted.purple.basic.buttons .button:focus,
2488
+ .ui.inverted.purple.basic.button:focus {
2489
+ box-shadow: 0px 0px 0px 2px #d24aff inset !important;
2490
+ color: #DC73FF !important;
2491
+ }
2492
+ .ui.inverted.purple.basic.buttons .active.button,
2493
+ .ui.inverted.purple.buttons .basic.active.button,
2494
+ .ui.inverted.purple.basic.active.button {
2495
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2496
+ color: #DC73FF !important;
2497
+ }
2498
+ .ui.inverted.purple.basic.buttons .button:active,
2499
+ .ui.inverted.purple.buttons .basic.button:active,
2500
+ .ui.inverted.purple.basic.button:active {
2501
+ box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
2502
+ color: #DC73FF !important;
2503
+ }
2504
+
2505
+ /*--- Red ---*/
2506
+
2507
+ .ui.red.buttons .button,
2508
+ .ui.red.button {
2509
+ background-color: #DB2828;
2510
+ color: #FFFFFF;
2511
+ text-shadow: none;
2512
+ background-image: none;
2513
+ }
2514
+ .ui.red.button {
2515
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2516
+ }
2517
+ .ui.red.buttons .button:hover,
2518
+ .ui.red.button:hover {
2519
+ background-color: #d01919;
2520
+ color: #FFFFFF;
2521
+ text-shadow: none;
2522
+ }
2523
+ .ui.red.buttons .button:focus,
2524
+ .ui.red.button:focus {
2525
+ background-color: #ca1010;
2526
+ color: #FFFFFF;
2527
+ text-shadow: none;
2528
+ }
2529
+ .ui.red.buttons .button:active,
2530
+ .ui.red.button:active {
2531
+ background-color: #b21e1e;
2532
+ color: #FFFFFF;
2533
+ text-shadow: none;
2534
+ }
2535
+ .ui.red.buttons .active.button,
2536
+ .ui.red.buttons .active.button:active,
2537
+ .ui.red.active.button,
2538
+ .ui.red.button .active.button:active {
2539
+ background-color: #d41515;
2540
+ color: #FFFFFF;
2541
+ text-shadow: none;
2542
+ }
2543
+
2544
+ /* Basic */
2545
+ .ui.basic.red.buttons .button,
2546
+ .ui.basic.red.button {
2547
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
2548
+ color: #DB2828 !important;
2549
+ }
2550
+ .ui.basic.red.buttons .button:hover,
2551
+ .ui.basic.red.button:hover {
2552
+ background: transparent !important;
2553
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
2554
+ color: #d01919 !important;
2555
+ }
2556
+ .ui.basic.red.buttons .button:focus,
2557
+ .ui.basic.red.button:focus {
2558
+ background: transparent !important;
2559
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
2560
+ color: #d01919 !important;
2561
+ }
2562
+ .ui.basic.red.buttons .active.button,
2563
+ .ui.basic.red.active.button {
2564
+ background: transparent !important;
2565
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
2566
+ color: #b21e1e !important;
2567
+ }
2568
+ .ui.basic.red.buttons .button:active,
2569
+ .ui.basic.red.button:active {
2570
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
2571
+ color: #b21e1e !important;
2572
+ }
2573
+ .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
2574
+ margin-left: -1px;
2575
+ }
2576
+
2577
+ /* Inverted */
2578
+ .ui.inverted.red.buttons .button,
2579
+ .ui.inverted.red.button {
2580
+ background-color: transparent;
2581
+ box-shadow: 0px 0px 0px 2px #FF695E inset !important;
2582
+ color: #FF695E;
2583
+ }
2584
+ .ui.inverted.red.buttons .button:hover,
2585
+ .ui.inverted.red.button:hover,
2586
+ .ui.inverted.red.buttons .button:focus,
2587
+ .ui.inverted.red.button:focus,
2588
+ .ui.inverted.red.buttons .button.active,
2589
+ .ui.inverted.red.button.active,
2590
+ .ui.inverted.red.buttons .button:active,
2591
+ .ui.inverted.red.button:active {
2592
+ box-shadow: none !important;
2593
+ color: #FFFFFF;
2594
+ }
2595
+ .ui.inverted.red.buttons .button:hover,
2596
+ .ui.inverted.red.button:hover {
2597
+ background-color: #ff5144;
2598
+ }
2599
+ .ui.inverted.red.buttons .button:focus,
2600
+ .ui.inverted.red.button:focus {
2601
+ background-color: #ff4335;
2602
+ }
2603
+ .ui.inverted.red.buttons .active.button,
2604
+ .ui.inverted.red.active.button {
2605
+ background-color: #ff5144;
2606
+ }
2607
+ .ui.inverted.red.buttons .button:active,
2608
+ .ui.inverted.red.button:active {
2609
+ background-color: #ff392b;
2610
+ }
2611
+
2612
+ /* Inverted Basic */
2613
+ .ui.inverted.red.basic.buttons .button,
2614
+ .ui.inverted.red.buttons .basic.button,
2615
+ .ui.inverted.red.basic.button {
2616
+ background-color: transparent;
2617
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2618
+ color: #FFFFFF !important;
2619
+ }
2620
+ .ui.inverted.red.basic.buttons .button:hover,
2621
+ .ui.inverted.red.buttons .basic.button:hover,
2622
+ .ui.inverted.red.basic.button:hover {
2623
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2624
+ color: #FF695E !important;
2625
+ }
2626
+ .ui.inverted.red.basic.buttons .button:focus,
2627
+ .ui.inverted.red.basic.buttons .button:focus,
2628
+ .ui.inverted.red.basic.button:focus {
2629
+ box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
2630
+ color: #FF695E !important;
2631
+ }
2632
+ .ui.inverted.red.basic.buttons .active.button,
2633
+ .ui.inverted.red.buttons .basic.active.button,
2634
+ .ui.inverted.red.basic.active.button {
2635
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2636
+ color: #FF695E !important;
2637
+ }
2638
+ .ui.inverted.red.basic.buttons .button:active,
2639
+ .ui.inverted.red.buttons .basic.button:active,
2640
+ .ui.inverted.red.basic.button:active {
2641
+ box-shadow: 0px 0px 0px 2px #ff392b inset !important;
2642
+ color: #FF695E !important;
2643
+ }
2644
+
2645
+ /*--- Teal ---*/
2646
+
2647
+ .ui.teal.buttons .button,
2648
+ .ui.teal.button {
2649
+ background-color: #00B5AD;
2650
+ color: #FFFFFF;
2651
+ text-shadow: none;
2652
+ background-image: none;
2653
+ }
2654
+ .ui.teal.button {
2655
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2656
+ }
2657
+ .ui.teal.buttons .button:hover,
2658
+ .ui.teal.button:hover {
2659
+ background-color: #009c95;
2660
+ color: #FFFFFF;
2661
+ text-shadow: none;
2662
+ }
2663
+ .ui.teal.buttons .button:focus,
2664
+ .ui.teal.button:focus {
2665
+ background-color: #008c86;
2666
+ color: #FFFFFF;
2667
+ text-shadow: none;
2668
+ }
2669
+ .ui.teal.buttons .button:active,
2670
+ .ui.teal.button:active {
2671
+ background-color: #00827c;
2672
+ color: #FFFFFF;
2673
+ text-shadow: none;
2674
+ }
2675
+ .ui.teal.buttons .active.button,
2676
+ .ui.teal.buttons .active.button:active,
2677
+ .ui.teal.active.button,
2678
+ .ui.teal.button .active.button:active {
2679
+ background-color: #009c95;
2680
+ color: #FFFFFF;
2681
+ text-shadow: none;
2682
+ }
2683
+
2684
+ /* Basic */
2685
+ .ui.basic.teal.buttons .button,
2686
+ .ui.basic.teal.button {
2687
+ box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
2688
+ color: #00B5AD !important;
2689
+ }
2690
+ .ui.basic.teal.buttons .button:hover,
2691
+ .ui.basic.teal.button:hover {
2692
+ background: transparent !important;
2693
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2694
+ color: #009c95 !important;
2695
+ }
2696
+ .ui.basic.teal.buttons .button:focus,
2697
+ .ui.basic.teal.button:focus {
2698
+ background: transparent !important;
2699
+ box-shadow: 0px 0px 0px 1px #008c86 inset !important;
2700
+ color: #009c95 !important;
2701
+ }
2702
+ .ui.basic.teal.buttons .active.button,
2703
+ .ui.basic.teal.active.button {
2704
+ background: transparent !important;
2705
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2706
+ color: #00827c !important;
2707
+ }
2708
+ .ui.basic.teal.buttons .button:active,
2709
+ .ui.basic.teal.button:active {
2710
+ box-shadow: 0px 0px 0px 1px #00827c inset !important;
2711
+ color: #00827c !important;
2712
+ }
2713
+ .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
2714
+ margin-left: -1px;
2715
+ }
2716
+
2717
+ /* Inverted */
2718
+ .ui.inverted.teal.buttons .button,
2719
+ .ui.inverted.teal.button {
2720
+ background-color: transparent;
2721
+ box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
2722
+ color: #6DFFFF;
2723
+ }
2724
+ .ui.inverted.teal.buttons .button:hover,
2725
+ .ui.inverted.teal.button:hover,
2726
+ .ui.inverted.teal.buttons .button:focus,
2727
+ .ui.inverted.teal.button:focus,
2728
+ .ui.inverted.teal.buttons .button.active,
2729
+ .ui.inverted.teal.button.active,
2730
+ .ui.inverted.teal.buttons .button:active,
2731
+ .ui.inverted.teal.button:active {
2732
+ box-shadow: none !important;
2733
+ color: rgba(0, 0, 0, 0.6);
2734
+ }
2735
+ .ui.inverted.teal.buttons .button:hover,
2736
+ .ui.inverted.teal.button:hover {
2737
+ background-color: #54ffff;
2738
+ }
2739
+ .ui.inverted.teal.buttons .button:focus,
2740
+ .ui.inverted.teal.button:focus {
2741
+ background-color: #44ffff;
2742
+ }
2743
+ .ui.inverted.teal.buttons .active.button,
2744
+ .ui.inverted.teal.active.button {
2745
+ background-color: #54ffff;
2746
+ }
2747
+ .ui.inverted.teal.buttons .button:active,
2748
+ .ui.inverted.teal.button:active {
2749
+ background-color: #3affff;
2750
+ }
2751
+
2752
+ /* Inverted Basic */
2753
+ .ui.inverted.teal.basic.buttons .button,
2754
+ .ui.inverted.teal.buttons .basic.button,
2755
+ .ui.inverted.teal.basic.button {
2756
+ background-color: transparent;
2757
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2758
+ color: #FFFFFF !important;
2759
+ }
2760
+ .ui.inverted.teal.basic.buttons .button:hover,
2761
+ .ui.inverted.teal.buttons .basic.button:hover,
2762
+ .ui.inverted.teal.basic.button:hover {
2763
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2764
+ color: #6DFFFF !important;
2765
+ }
2766
+ .ui.inverted.teal.basic.buttons .button:focus,
2767
+ .ui.inverted.teal.basic.buttons .button:focus,
2768
+ .ui.inverted.teal.basic.button:focus {
2769
+ box-shadow: 0px 0px 0px 2px #44ffff inset !important;
2770
+ color: #6DFFFF !important;
2771
+ }
2772
+ .ui.inverted.teal.basic.buttons .active.button,
2773
+ .ui.inverted.teal.buttons .basic.active.button,
2774
+ .ui.inverted.teal.basic.active.button {
2775
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2776
+ color: #6DFFFF !important;
2777
+ }
2778
+ .ui.inverted.teal.basic.buttons .button:active,
2779
+ .ui.inverted.teal.buttons .basic.button:active,
2780
+ .ui.inverted.teal.basic.button:active {
2781
+ box-shadow: 0px 0px 0px 2px #3affff inset !important;
2782
+ color: #6DFFFF !important;
2783
+ }
2784
+
2785
+ /*--- Olive ---*/
2786
+
2787
+ .ui.olive.buttons .button,
2788
+ .ui.olive.button {
2789
+ background-color: #B5CC18;
2790
+ color: #FFFFFF;
2791
+ text-shadow: none;
2792
+ background-image: none;
2793
+ }
2794
+ .ui.olive.button {
2795
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2796
+ }
2797
+ .ui.olive.buttons .button:hover,
2798
+ .ui.olive.button:hover {
2799
+ background-color: #a7bd0d;
2800
+ color: #FFFFFF;
2801
+ text-shadow: none;
2802
+ }
2803
+ .ui.olive.buttons .button:focus,
2804
+ .ui.olive.button:focus {
2805
+ background-color: #a0b605;
2806
+ color: #FFFFFF;
2807
+ text-shadow: none;
2808
+ }
2809
+ .ui.olive.buttons .button:active,
2810
+ .ui.olive.button:active {
2811
+ background-color: #8d9e13;
2812
+ color: #FFFFFF;
2813
+ text-shadow: none;
2814
+ }
2815
+ .ui.olive.buttons .active.button,
2816
+ .ui.olive.buttons .active.button:active,
2817
+ .ui.olive.active.button,
2818
+ .ui.olive.button .active.button:active {
2819
+ background-color: #aac109;
2820
+ color: #FFFFFF;
2821
+ text-shadow: none;
2822
+ }
2823
+
2824
+ /* Basic */
2825
+ .ui.basic.olive.buttons .button,
2826
+ .ui.basic.olive.button {
2827
+ box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
2828
+ color: #B5CC18 !important;
2829
+ }
2830
+ .ui.basic.olive.buttons .button:hover,
2831
+ .ui.basic.olive.button:hover {
2832
+ background: transparent !important;
2833
+ box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
2834
+ color: #a7bd0d !important;
2835
+ }
2836
+ .ui.basic.olive.buttons .button:focus,
2837
+ .ui.basic.olive.button:focus {
2838
+ background: transparent !important;
2839
+ box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
2840
+ color: #a7bd0d !important;
2841
+ }
2842
+ .ui.basic.olive.buttons .active.button,
2843
+ .ui.basic.olive.active.button {
2844
+ background: transparent !important;
2845
+ box-shadow: 0px 0px 0px 1px #aac109 inset !important;
2846
+ color: #8d9e13 !important;
2847
+ }
2848
+ .ui.basic.olive.buttons .button:active,
2849
+ .ui.basic.olive.button:active {
2850
+ box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
2851
+ color: #8d9e13 !important;
2852
+ }
2853
+ .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
2854
+ margin-left: -1px;
2855
+ }
2856
+
2857
+ /* Inverted */
2858
+ .ui.inverted.olive.buttons .button,
2859
+ .ui.inverted.olive.button {
2860
+ background-color: transparent;
2861
+ box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
2862
+ color: #D9E778;
2863
+ }
2864
+ .ui.inverted.olive.buttons .button:hover,
2865
+ .ui.inverted.olive.button:hover,
2866
+ .ui.inverted.olive.buttons .button:focus,
2867
+ .ui.inverted.olive.button:focus,
2868
+ .ui.inverted.olive.buttons .button.active,
2869
+ .ui.inverted.olive.button.active,
2870
+ .ui.inverted.olive.buttons .button:active,
2871
+ .ui.inverted.olive.button:active {
2872
+ box-shadow: none !important;
2873
+ color: rgba(0, 0, 0, 0.6);
2874
+ }
2875
+ .ui.inverted.olive.buttons .button:hover,
2876
+ .ui.inverted.olive.button:hover {
2877
+ background-color: #d8ea5c;
2878
+ }
2879
+ .ui.inverted.olive.buttons .button:focus,
2880
+ .ui.inverted.olive.button:focus {
2881
+ background-color: #daef47;
2882
+ }
2883
+ .ui.inverted.olive.buttons .active.button,
2884
+ .ui.inverted.olive.active.button {
2885
+ background-color: #daed59;
2886
+ }
2887
+ .ui.inverted.olive.buttons .button:active,
2888
+ .ui.inverted.olive.button:active {
2889
+ background-color: #cddf4d;
2890
+ }
2891
+
2892
+ /* Inverted Basic */
2893
+ .ui.inverted.olive.basic.buttons .button,
2894
+ .ui.inverted.olive.buttons .basic.button,
2895
+ .ui.inverted.olive.basic.button {
2896
+ background-color: transparent;
2897
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2898
+ color: #FFFFFF !important;
2899
+ }
2900
+ .ui.inverted.olive.basic.buttons .button:hover,
2901
+ .ui.inverted.olive.buttons .basic.button:hover,
2902
+ .ui.inverted.olive.basic.button:hover {
2903
+ box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
2904
+ color: #D9E778 !important;
2905
+ }
2906
+ .ui.inverted.olive.basic.buttons .button:focus,
2907
+ .ui.inverted.olive.basic.buttons .button:focus,
2908
+ .ui.inverted.olive.basic.button:focus {
2909
+ box-shadow: 0px 0px 0px 2px #daef47 inset !important;
2910
+ color: #D9E778 !important;
2911
+ }
2912
+ .ui.inverted.olive.basic.buttons .active.button,
2913
+ .ui.inverted.olive.buttons .basic.active.button,
2914
+ .ui.inverted.olive.basic.active.button {
2915
+ box-shadow: 0px 0px 0px 2px #daed59 inset !important;
2916
+ color: #D9E778 !important;
2917
+ }
2918
+ .ui.inverted.olive.basic.buttons .button:active,
2919
+ .ui.inverted.olive.buttons .basic.button:active,
2920
+ .ui.inverted.olive.basic.button:active {
2921
+ box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
2922
+ color: #D9E778 !important;
2923
+ }
2924
+
2925
+ /*--- Yellow ---*/
2926
+
2927
+ .ui.yellow.buttons .button,
2928
+ .ui.yellow.button {
2929
+ background-color: #FBBD08;
2930
+ color: #FFFFFF;
2931
+ text-shadow: none;
2932
+ background-image: none;
2933
+ }
2934
+ .ui.yellow.button {
2935
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
2936
+ }
2937
+ .ui.yellow.buttons .button:hover,
2938
+ .ui.yellow.button:hover {
2939
+ background-color: #eaae00;
2940
+ color: #FFFFFF;
2941
+ text-shadow: none;
2942
+ }
2943
+ .ui.yellow.buttons .button:focus,
2944
+ .ui.yellow.button:focus {
2945
+ background-color: #daa300;
2946
+ color: #FFFFFF;
2947
+ text-shadow: none;
2948
+ }
2949
+ .ui.yellow.buttons .button:active,
2950
+ .ui.yellow.button:active {
2951
+ background-color: #cd9903;
2952
+ color: #FFFFFF;
2953
+ text-shadow: none;
2954
+ }
2955
+ .ui.yellow.buttons .active.button,
2956
+ .ui.yellow.buttons .active.button:active,
2957
+ .ui.yellow.active.button,
2958
+ .ui.yellow.button .active.button:active {
2959
+ background-color: #eaae00;
2960
+ color: #FFFFFF;
2961
+ text-shadow: none;
2962
+ }
2963
+
2964
+ /* Basic */
2965
+ .ui.basic.yellow.buttons .button,
2966
+ .ui.basic.yellow.button {
2967
+ box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
2968
+ color: #FBBD08 !important;
2969
+ }
2970
+ .ui.basic.yellow.buttons .button:hover,
2971
+ .ui.basic.yellow.button:hover {
2972
+ background: transparent !important;
2973
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2974
+ color: #eaae00 !important;
2975
+ }
2976
+ .ui.basic.yellow.buttons .button:focus,
2977
+ .ui.basic.yellow.button:focus {
2978
+ background: transparent !important;
2979
+ box-shadow: 0px 0px 0px 1px #daa300 inset !important;
2980
+ color: #eaae00 !important;
2981
+ }
2982
+ .ui.basic.yellow.buttons .active.button,
2983
+ .ui.basic.yellow.active.button {
2984
+ background: transparent !important;
2985
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2986
+ color: #cd9903 !important;
2987
+ }
2988
+ .ui.basic.yellow.buttons .button:active,
2989
+ .ui.basic.yellow.button:active {
2990
+ box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
2991
+ color: #cd9903 !important;
2992
+ }
2993
+ .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
2994
+ margin-left: -1px;
2995
+ }
2996
+
2997
+ /* Inverted */
2998
+ .ui.inverted.yellow.buttons .button,
2999
+ .ui.inverted.yellow.button {
3000
+ background-color: transparent;
3001
+ box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
3002
+ color: #FFE21F;
3003
+ }
3004
+ .ui.inverted.yellow.buttons .button:hover,
3005
+ .ui.inverted.yellow.button:hover,
3006
+ .ui.inverted.yellow.buttons .button:focus,
3007
+ .ui.inverted.yellow.button:focus,
3008
+ .ui.inverted.yellow.buttons .button.active,
3009
+ .ui.inverted.yellow.button.active,
3010
+ .ui.inverted.yellow.buttons .button:active,
3011
+ .ui.inverted.yellow.button:active {
3012
+ box-shadow: none !important;
3013
+ color: rgba(0, 0, 0, 0.6);
3014
+ }
3015
+ .ui.inverted.yellow.buttons .button:hover,
3016
+ .ui.inverted.yellow.button:hover {
3017
+ background-color: #ffdf05;
3018
+ }
3019
+ .ui.inverted.yellow.buttons .button:focus,
3020
+ .ui.inverted.yellow.button:focus {
3021
+ background-color: #f5d500;
3022
+ }
3023
+ .ui.inverted.yellow.buttons .active.button,
3024
+ .ui.inverted.yellow.active.button {
3025
+ background-color: #ffdf05;
3026
+ }
3027
+ .ui.inverted.yellow.buttons .button:active,
3028
+ .ui.inverted.yellow.button:active {
3029
+ background-color: #ebcd00;
3030
+ }
3031
+
3032
+ /* Inverted Basic */
3033
+ .ui.inverted.yellow.basic.buttons .button,
3034
+ .ui.inverted.yellow.buttons .basic.button,
3035
+ .ui.inverted.yellow.basic.button {
3036
+ background-color: transparent;
3037
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
3038
+ color: #FFFFFF !important;
3039
+ }
3040
+ .ui.inverted.yellow.basic.buttons .button:hover,
3041
+ .ui.inverted.yellow.buttons .basic.button:hover,
3042
+ .ui.inverted.yellow.basic.button:hover {
3043
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3044
+ color: #FFE21F !important;
3045
+ }
3046
+ .ui.inverted.yellow.basic.buttons .button:focus,
3047
+ .ui.inverted.yellow.basic.buttons .button:focus,
3048
+ .ui.inverted.yellow.basic.button:focus {
3049
+ box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
3050
+ color: #FFE21F !important;
3051
+ }
3052
+ .ui.inverted.yellow.basic.buttons .active.button,
3053
+ .ui.inverted.yellow.buttons .basic.active.button,
3054
+ .ui.inverted.yellow.basic.active.button {
3055
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
3056
+ color: #FFE21F !important;
3057
+ }
3058
+ .ui.inverted.yellow.basic.buttons .button:active,
3059
+ .ui.inverted.yellow.buttons .basic.button:active,
3060
+ .ui.inverted.yellow.basic.button:active {
3061
+ box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
3062
+ color: #FFE21F !important;
3063
+ }
3064
+
3065
+ /*-------------------
3066
+ Primary
3067
+ --------------------*/
3068
+
3069
+
3070
+ /*--- Standard ---*/
3071
+
3072
+ .ui.primary.buttons .button,
3073
+ .ui.primary.button {
3074
+ background-color: #2185D0;
3075
+ color: #FFFFFF;
3076
+ text-shadow: none;
3077
+ background-image: none;
3078
+ }
3079
+ .ui.primary.button {
3080
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3081
+ }
3082
+ .ui.primary.buttons .button:hover,
3083
+ .ui.primary.button:hover {
3084
+ background-color: #1678c2;
3085
+ color: #FFFFFF;
3086
+ text-shadow: none;
3087
+ }
3088
+ .ui.primary.buttons .button:focus,
3089
+ .ui.primary.button:focus {
3090
+ background-color: #0d71bb;
3091
+ color: #FFFFFF;
3092
+ text-shadow: none;
3093
+ }
3094
+ .ui.primary.buttons .button:active,
3095
+ .ui.primary.button:active {
3096
+ background-color: #1a69a4;
3097
+ color: #FFFFFF;
3098
+ text-shadow: none;
3099
+ }
3100
+ .ui.primary.buttons .active.button,
3101
+ .ui.primary.buttons .active.button:active,
3102
+ .ui.primary.active.button,
3103
+ .ui.primary.button .active.button:active {
3104
+ background-color: #1279c6;
3105
+ color: #FFFFFF;
3106
+ text-shadow: none;
3107
+ }
3108
+
3109
+ /* Basic */
3110
+ .ui.basic.primary.buttons .button,
3111
+ .ui.basic.primary.button {
3112
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
3113
+ color: #2185D0 !important;
3114
+ }
3115
+ .ui.basic.primary.buttons .button:hover,
3116
+ .ui.basic.primary.button:hover {
3117
+ background: transparent !important;
3118
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
3119
+ color: #1678c2 !important;
3120
+ }
3121
+ .ui.basic.primary.buttons .button:focus,
3122
+ .ui.basic.primary.button:focus {
3123
+ background: transparent !important;
3124
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
3125
+ color: #1678c2 !important;
3126
+ }
3127
+ .ui.basic.primary.buttons .active.button,
3128
+ .ui.basic.primary.active.button {
3129
+ background: transparent !important;
3130
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
3131
+ color: #1a69a4 !important;
3132
+ }
3133
+ .ui.basic.primary.buttons .button:active,
3134
+ .ui.basic.primary.button:active {
3135
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
3136
+ color: #1a69a4 !important;
3137
+ }
3138
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3139
+ margin-left: -1px;
3140
+ }
3141
+
3142
+ /*-------------------
3143
+ Secondary
3144
+ --------------------*/
3145
+
3146
+
3147
+ /* Standard */
3148
+ .ui.secondary.buttons .button,
3149
+ .ui.secondary.button {
3150
+ background-color: #1B1C1D;
3151
+ color: #FFFFFF;
3152
+ text-shadow: none;
3153
+ background-image: none;
3154
+ }
3155
+ .ui.secondary.button {
3156
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3157
+ }
3158
+ .ui.secondary.buttons .button:hover,
3159
+ .ui.secondary.button:hover {
3160
+ background-color: #27292a;
3161
+ color: #FFFFFF;
3162
+ text-shadow: none;
3163
+ }
3164
+ .ui.secondary.buttons .button:focus,
3165
+ .ui.secondary.button:focus {
3166
+ background-color: #2e3032;
3167
+ color: #FFFFFF;
3168
+ text-shadow: none;
3169
+ }
3170
+ .ui.secondary.buttons .button:active,
3171
+ .ui.secondary.button:active {
3172
+ background-color: #343637;
3173
+ color: #FFFFFF;
3174
+ text-shadow: none;
3175
+ }
3176
+ .ui.secondary.buttons .active.button,
3177
+ .ui.secondary.buttons .active.button:active,
3178
+ .ui.secondary.active.button,
3179
+ .ui.secondary.button .active.button:active {
3180
+ background-color: #27292a;
3181
+ color: #FFFFFF;
3182
+ text-shadow: none;
3183
+ }
3184
+
3185
+ /* Basic */
3186
+ .ui.basic.secondary.buttons .button,
3187
+ .ui.basic.secondary.button {
3188
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
3189
+ color: #1B1C1D !important;
3190
+ }
3191
+ .ui.basic.secondary.buttons .button:hover,
3192
+ .ui.basic.secondary.button:hover {
3193
+ background: transparent !important;
3194
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3195
+ color: #27292a !important;
3196
+ }
3197
+ .ui.basic.secondary.buttons .button:focus,
3198
+ .ui.basic.secondary.button:focus {
3199
+ background: transparent !important;
3200
+ box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
3201
+ color: #27292a !important;
3202
+ }
3203
+ .ui.basic.secondary.buttons .active.button,
3204
+ .ui.basic.secondary.active.button {
3205
+ background: transparent !important;
3206
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3207
+ color: #343637 !important;
3208
+ }
3209
+ .ui.basic.secondary.buttons .button:active,
3210
+ .ui.basic.secondary.button:active {
3211
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
3212
+ color: #343637 !important;
3213
+ }
3214
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3215
+ margin-left: -1px;
3216
+ }
3217
+
3218
+ /*---------------
3219
+ Positive
3220
+ ----------------*/
3221
+
3222
+
3223
+ /* Standard */
3224
+ .ui.positive.buttons .button,
3225
+ .ui.positive.button {
3226
+ background-color: #21BA45;
3227
+ color: #FFFFFF;
3228
+ text-shadow: none;
3229
+ background-image: none;
3230
+ }
3231
+ .ui.positive.button {
3232
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3233
+ }
3234
+ .ui.positive.buttons .button:hover,
3235
+ .ui.positive.button:hover {
3236
+ background-color: #16ab39;
3237
+ color: #FFFFFF;
3238
+ text-shadow: none;
3239
+ }
3240
+ .ui.positive.buttons .button:focus,
3241
+ .ui.positive.button:focus {
3242
+ background-color: #0ea432;
3243
+ color: #FFFFFF;
3244
+ text-shadow: none;
3245
+ }
3246
+ .ui.positive.buttons .button:active,
3247
+ .ui.positive.button:active {
3248
+ background-color: #198f35;
3249
+ color: #FFFFFF;
3250
+ text-shadow: none;
3251
+ }
3252
+ .ui.positive.buttons .active.button,
3253
+ .ui.positive.buttons .active.button:active,
3254
+ .ui.positive.active.button,
3255
+ .ui.positive.button .active.button:active {
3256
+ background-color: #13ae38;
3257
+ color: #FFFFFF;
3258
+ text-shadow: none;
3259
+ }
3260
+
3261
+ /* Basic */
3262
+ .ui.basic.positive.buttons .button,
3263
+ .ui.basic.positive.button {
3264
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
3265
+ color: #21BA45 !important;
3266
+ }
3267
+ .ui.basic.positive.buttons .button:hover,
3268
+ .ui.basic.positive.button:hover {
3269
+ background: transparent !important;
3270
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
3271
+ color: #16ab39 !important;
3272
+ }
3273
+ .ui.basic.positive.buttons .button:focus,
3274
+ .ui.basic.positive.button:focus {
3275
+ background: transparent !important;
3276
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
3277
+ color: #16ab39 !important;
3278
+ }
3279
+ .ui.basic.positive.buttons .active.button,
3280
+ .ui.basic.positive.active.button {
3281
+ background: transparent !important;
3282
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
3283
+ color: #198f35 !important;
3284
+ }
3285
+ .ui.basic.positive.buttons .button:active,
3286
+ .ui.basic.positive.button:active {
3287
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
3288
+ color: #198f35 !important;
3289
+ }
3290
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3291
+ margin-left: -1px;
3292
+ }
3293
+
3294
+ /*---------------
3295
+ Negative
3296
+ ----------------*/
3297
+
3298
+
3299
+ /* Standard */
3300
+ .ui.negative.buttons .button,
3301
+ .ui.negative.button {
3302
+ background-color: #DB2828;
3303
+ color: #FFFFFF;
3304
+ text-shadow: none;
3305
+ background-image: none;
3306
+ }
3307
+ .ui.negative.button {
3308
+ box-shadow: 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3309
+ }
3310
+ .ui.negative.buttons .button:hover,
3311
+ .ui.negative.button:hover {
3312
+ background-color: #d01919;
3313
+ color: #FFFFFF;
3314
+ text-shadow: none;
3315
+ }
3316
+ .ui.negative.buttons .button:focus,
3317
+ .ui.negative.button:focus {
3318
+ background-color: #ca1010;
3319
+ color: #FFFFFF;
3320
+ text-shadow: none;
3321
+ }
3322
+ .ui.negative.buttons .button:active,
3323
+ .ui.negative.button:active {
3324
+ background-color: #b21e1e;
3325
+ color: #FFFFFF;
3326
+ text-shadow: none;
3327
+ }
3328
+ .ui.negative.buttons .active.button,
3329
+ .ui.negative.buttons .active.button:active,
3330
+ .ui.negative.active.button,
3331
+ .ui.negative.button .active.button:active {
3332
+ background-color: #d41515;
3333
+ color: #FFFFFF;
3334
+ text-shadow: none;
3335
+ }
3336
+
3337
+ /* Basic */
3338
+ .ui.basic.negative.buttons .button,
3339
+ .ui.basic.negative.button {
3340
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
3341
+ color: #DB2828 !important;
3342
+ }
3343
+ .ui.basic.negative.buttons .button:hover,
3344
+ .ui.basic.negative.button:hover {
3345
+ background: transparent !important;
3346
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3347
+ color: #d01919 !important;
3348
+ }
3349
+ .ui.basic.negative.buttons .button:focus,
3350
+ .ui.basic.negative.button:focus {
3351
+ background: transparent !important;
3352
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3353
+ color: #d01919 !important;
3354
+ }
3355
+ .ui.basic.negative.buttons .active.button,
3356
+ .ui.basic.negative.active.button {
3357
+ background: transparent !important;
3358
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3359
+ color: #b21e1e !important;
3360
+ }
3361
+ .ui.basic.negative.buttons .button:active,
3362
+ .ui.basic.negative.button:active {
3363
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3364
+ color: #b21e1e !important;
3365
+ }
3366
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3367
+ margin-left: -1px;
3368
+ }
3369
+
3370
+
3371
+ /*******************************
3372
+ Groups
3373
+ *******************************/
3374
+
3375
+ .ui.buttons {
3376
+ display: -webkit-inline-box;
3377
+ display: -webkit-inline-flex;
3378
+ display: -ms-inline-flexbox;
3379
+ display: inline-flex;
3380
+ -webkit-box-orient: horizontal;
3381
+ -webkit-box-direction: normal;
3382
+ -webkit-flex-direction: row;
3383
+ -ms-flex-direction: row;
3384
+ flex-direction: row;
3385
+ font-size: 0em;
3386
+ vertical-align: baseline;
3387
+ margin: 0em 0.25em 0em 0em;
3388
+ }
3389
+ .ui.buttons:not(.basic):not(.inverted) {
3390
+ box-shadow: none;
3391
+ }
3392
+
3393
+ /* Clearfix */
3394
+ .ui.buttons:after {
3395
+ content: ".";
3396
+ display: block;
3397
+ height: 0;
3398
+ clear: both;
3399
+ visibility: hidden;
3400
+ }
3401
+
3402
+ /* Standard Group */
3403
+ .ui.buttons .button {
3404
+ -webkit-box-flex: 1;
3405
+ -webkit-flex: 1 0 auto;
3406
+ -ms-flex: 1 0 auto;
3407
+ flex: 1 0 auto;
3408
+ margin: 0em;
3409
+ border-radius: 0em;
3410
+ margin: 0px 0px 0px 0px;
3411
+ }
3412
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
3413
+ .ui.buttons:not(.basic):not(.inverted) > .button {
3414
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(34, 36, 38, 0.15) inset;
3415
+ }
3416
+ .ui.buttons .button:first-child {
3417
+ border-left: none;
3418
+ margin-left: 0em;
3419
+ border-top-left-radius: 0.28571429rem;
3420
+ border-bottom-left-radius: 0.28571429rem;
3421
+ }
3422
+ .ui.buttons .button:last-child {
3423
+ border-top-right-radius: 0.28571429rem;
3424
+ border-bottom-right-radius: 0.28571429rem;
3425
+ }
3426
+
3427
+ /* Vertical Style */
3428
+ .ui.vertical.buttons {
3429
+ display: -webkit-inline-box;
3430
+ display: -webkit-inline-flex;
3431
+ display: -ms-inline-flexbox;
3432
+ display: inline-flex;
3433
+ -webkit-box-orient: vertical;
3434
+ -webkit-box-direction: normal;
3435
+ -webkit-flex-direction: column;
3436
+ -ms-flex-direction: column;
3437
+ flex-direction: column;
3438
+ }
3439
+ .ui.vertical.buttons .button {
3440
+ display: block;
3441
+ float: none;
3442
+ width: 100%;
3443
+ margin: 0px 0px 0px 0px;
3444
+ box-shadow: none;
3445
+ border-radius: 0em;
3446
+ }
3447
+ .ui.vertical.buttons .button:first-child {
3448
+ border-top-left-radius: 0.28571429rem;
3449
+ border-top-right-radius: 0.28571429rem;
3450
+ }
3451
+ .ui.vertical.buttons .button:last-child {
3452
+ margin-bottom: 0px;
3453
+ border-bottom-left-radius: 0.28571429rem;
3454
+ border-bottom-right-radius: 0.28571429rem;
3455
+ }
3456
+ .ui.vertical.buttons .button:only-child {
3457
+ border-radius: 0.28571429rem;
3458
+ }
3459
+
3460
+
3461
+ /*******************************
3462
+ Theme Overrides
3463
+ *******************************/
3464
+
3465
+
3466
+
3467
+ /*******************************
3468
+ Site Overrides
3469
+ *******************************/
3470
+