semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,13 +1,14 @@
1
- @import 'basic.icon';
2
1
  @import 'button';
3
2
  @import 'divider';
3
+ @import 'flag';
4
4
  @import 'header';
5
5
  @import 'icon';
6
6
  @import 'image';
7
7
  @import 'input';
8
8
  @import 'label';
9
+ @import 'list';
9
10
  @import 'loader';
10
- @import 'progress';
11
+ @import 'rail';
11
12
  @import 'reveal';
12
13
  @import 'segment';
13
14
  @import 'step';
@@ -1,8 +1,7 @@
1
- @import '../depends/loader';
2
- /*
3
- * # Semantic - Button
4
- * http://github.com/jlukic/semantic-ui/
5
- *
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
6
5
  *
7
6
  * Copyright 2014 Contributors
8
7
  * Released under the MIT license
@@ -10,91 +9,75 @@
10
9
  *
11
10
  */
12
11
 
12
+
13
+
13
14
  /*******************************
14
15
  Button
15
16
  *******************************/
16
17
 
17
- /* Prototype */
18
-
19
18
  .ui.button {
20
19
  cursor: pointer;
21
20
  display: inline-block;
22
- vertical-align: middle;
23
21
  min-height: 1em;
24
22
  outline: none;
25
23
  border: none;
26
- background-color: #FAFAFA;
27
- color: #808080;
28
- margin: 0em;
29
- padding: 0.8em 1.5em;
30
- font-size: 1rem;
31
- text-transform: uppercase;
32
- line-height: 1;
24
+ vertical-align: baseline;
25
+ background-color: #e0e0e0;
26
+ color: rgba(0, 0, 0, 0.6);
27
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
28
+ margin: 0em 0.25em 0em 0em;
29
+ padding: 0.78571em 1.5em 0.78571em;
30
+ text-transform: none;
31
+ text-shadow: none;
33
32
  font-weight: bold;
33
+ line-height: 1;
34
34
  font-style: normal;
35
35
  text-align: center;
36
36
  text-decoration: none;
37
- background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
38
- background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
39
- background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
40
- border-radius: 0.25em;
41
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08) inset;
42
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08) inset;
37
+ background-image: none;
38
+ border-radius: 0.2857rem;
39
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
43
40
  -webkit-user-select: none;
44
- -moz-user-select: none;
45
- -ms-user-select: none;
46
- user-select: none;
47
- -webkit-box-sizing: border-box;
48
- -moz-box-sizing: border-box;
49
- -ms-box-sizing: border-box;
50
- box-sizing: border-box;
51
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
52
- -webkit-transition: opacity 0.25s ease,
53
- background-color 0.25s ease,
54
- color 0.25s ease,
55
- background 0.25s ease,
56
- -webkit-box-shadow 0.25s ease;
57
- transition: opacity 0.25s ease,
58
- background-color 0.25s ease,
59
- color 0.25s ease,
60
- background 0.25s ease,
61
- box-shadow 0.25s ease;
41
+ -moz-user-select: none;
42
+ -ms-user-select: none;
43
+ user-select: none;
44
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
45
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
46
+ will-change: '';
47
+ -webkit-tap-highlight-color: transparent;
62
48
  }
63
49
 
50
+
64
51
  /*******************************
65
52
  States
66
53
  *******************************/
67
54
 
55
+
68
56
  /*--------------
69
- Active
57
+ Hover
70
58
  ---------------*/
71
59
 
72
- .ui.buttons .active.button,
73
- .ui.active.button {
74
- background-color: #EAEAEA;
60
+ .ui.button:hover {
61
+ background-color: #e8e8e8;
75
62
  background-image: none;
76
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
77
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
78
- color: rgba(0, 0, 0, 0.7);
63
+ box-shadow: '';
64
+ color: rgba(0, 0, 0, 0.8);
65
+ }
66
+ .ui.button:hover .icon {
67
+ opacity: 0.85;
79
68
  }
80
69
 
81
70
  /*--------------
82
- Hover
71
+ Focus
83
72
  ---------------*/
84
73
 
85
- .ui.button:hover {
86
- background-image: -webkit-gradient(linear, top left, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
87
- background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
88
- background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
89
- color: rgba(0, 0, 0, 0.7);
90
- }
91
-
92
- .ui.button.active:hover {
93
- background-image: none;
74
+ .ui.button:focus {
75
+ background-color: '';
76
+ background-image: '';
77
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0px 1px rgba(81, 167, 232, 0.8) inset, 0px 0px 3px 2px rgba(81, 167, 232, 0.8);
78
+ color: rgba(0, 0, 0, 0.8);
94
79
  }
95
-
96
- .ui.button:hover .icon,
97
- .ui.button.hover .icon {
80
+ .ui.button:focus .icon {
98
81
  opacity: 0.85;
99
82
  }
100
83
 
@@ -104,61 +87,130 @@
104
87
 
105
88
  .ui.button:active,
106
89
  .ui.active.button:active {
107
- background-color: #F1F1F1;
108
- color: rgba(0, 0, 0, 0.7);
109
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
110
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;
90
+ background-color: #cccccc;
91
+ background-image: '';
92
+ color: rgba(0, 0, 0, 0.8);
93
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
94
+ }
95
+
96
+ /*--------------
97
+ Active
98
+ ---------------*/
99
+
100
+ .ui.active.button {
101
+ background-color: #d0d0d0;
102
+ background-image: none;
103
+ box-shadow: 0px 0px 0px 1px transparent inset;
104
+ color: rgba(0, 0, 0, 0.8);
105
+ }
106
+ .ui.button.active:hover {
107
+ background-color: #d0d0d0;
108
+ background-image: none;
109
+ color: rgba(0, 0, 0, 0.8);
110
+ }
111
+ .ui.button.active:active {
112
+ background-color: #d0d0d0;
113
+ background-image: none;
111
114
  }
112
115
 
113
116
  /*--------------
114
117
  Loading
115
118
  ---------------*/
116
119
 
117
- .ui.loading.button {
120
+
121
+ /* Specificity hack */
122
+ .ui.loading.loading.loading.loading.loading.loading.button {
118
123
  position: relative;
119
124
  cursor: default;
120
- background-color: #FFFFFF !important;
125
+ point-events: none;
126
+ text-shadow: none !important;
121
127
  color: transparent !important;
122
128
  -webkit-transition: all 0s linear;
123
- transition: all 0s linear;
129
+ transition: all 0s linear;
130
+ }
131
+ .ui.loading.button:before {
132
+ position: absolute;
133
+ content: '';
134
+ top: 50%;
135
+ left: 50%;
136
+ margin: -0.64285em 0em 0em -0.64285em;
137
+ width: 1.2857em;
138
+ height: 1.2857em;
139
+ border-radius: 500rem;
140
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
124
141
  }
125
-
126
142
  .ui.loading.button:after {
127
143
  position: absolute;
128
- top: 0em;
129
- left: 0em;
130
- width: 100%;
131
- height: 100%;
132
144
  content: '';
133
- background: transparent image-url("semantic-ui/loader-mini.gif") no-repeat 50% 50%;
145
+ top: 50%;
146
+ left: 50%;
147
+ margin: -0.64285em 0em 0em -0.64285em;
148
+ width: 1.2857em;
149
+ height: 1.2857em;
150
+ -webkit-animation: button-spin 0.6s linear;
151
+ animation: button-spin 0.6s linear;
152
+ -webkit-animation-iteration-count: infinite;
153
+ animation-iteration-count: infinite;
154
+ border-radius: 500rem;
155
+ border-color: #ffffff transparent transparent;
156
+ border-style: solid;
157
+ border-width: 0.2em;
158
+ box-shadow: 0px 0px 0px 1px transparent;
134
159
  }
135
-
136
160
  .ui.labeled.icon.loading.button .icon {
137
161
  background-color: transparent;
138
- -webkit-box-shadow: none;
139
162
  box-shadow: none;
140
163
  }
164
+ @-webkit-keyframes button-spin {
165
+ from {
166
+ -webkit-transform: rotate(0deg);
167
+ transform: rotate(0deg);
168
+ }
169
+ to {
170
+ -webkit-transform: rotate(360deg);
171
+ transform: rotate(360deg);
172
+ }
173
+ }
174
+ @keyframes button-spin {
175
+ from {
176
+ -webkit-transform: rotate(0deg);
177
+ transform: rotate(0deg);
178
+ }
179
+ to {
180
+ -webkit-transform: rotate(360deg);
181
+ transform: rotate(360deg);
182
+ }
183
+ }
184
+ .ui.basic.loading.button:not(.inverted):before {
185
+ border-color: rgba(0, 0, 0, 0.1);
186
+ }
187
+ .ui.basic.loading.button:not(.inverted):after {
188
+ border-top-color: #aaaaaa;
189
+ }
141
190
 
142
191
  /*-------------------
143
192
  Disabled
144
193
  --------------------*/
145
194
 
195
+ .ui.buttons .disabled.button,
146
196
  .ui.disabled.button,
147
197
  .ui.disabled.button:hover,
148
198
  .ui.disabled.button.active {
149
- background-color: #DDDDDD !important;
150
199
  cursor: default;
151
- color: rgba(0, 0, 0, 0.5) !important;
200
+ background-color: #dcddde !important;
201
+ color: rgba(0, 0, 0, 0.4) !important;
152
202
  opacity: 0.3 !important;
153
203
  background-image: none !important;
154
- -webkit-box-shadow: none !important;
155
204
  box-shadow: none !important;
205
+ pointer-events: none;
156
206
  }
157
207
 
208
+
158
209
  /*******************************
159
210
  Types
160
211
  *******************************/
161
212
 
213
+
162
214
  /*-------------------
163
215
  Animated
164
216
  --------------------*/
@@ -166,310 +218,293 @@
166
218
  .ui.animated.button {
167
219
  position: relative;
168
220
  overflow: hidden;
221
+ padding-right: 0em !important;
222
+ }
223
+ .ui.animated.button .content {
224
+ will-change: transform, opacity;
169
225
  }
170
-
171
226
  .ui.animated.button .visible.content {
172
227
  position: relative;
228
+ margin-right: 1.5em;
173
229
  }
174
-
175
230
  .ui.animated.button .hidden.content {
176
231
  position: absolute;
177
232
  width: 100%;
178
233
  }
179
234
 
180
235
  /* Horizontal */
181
-
182
236
  .ui.animated.button .visible.content,
183
237
  .ui.animated.button .hidden.content {
184
238
  -webkit-transition: right 0.3s ease 0s;
185
- transition: right 0.3s ease 0s;
239
+ transition: right 0.3s ease 0s;
186
240
  }
187
-
188
241
  .ui.animated.button .visible.content {
189
242
  left: auto;
190
243
  right: 0%;
191
244
  }
192
-
193
245
  .ui.animated.button .hidden.content {
194
246
  top: 50%;
195
247
  left: auto;
196
248
  right: -100%;
197
- margin-top: -0.55em;
249
+ margin-top: -0.5em;
198
250
  }
199
-
200
251
  .ui.animated.button:hover .visible.content {
201
252
  left: auto;
202
253
  right: 200%;
203
254
  }
204
-
205
255
  .ui.animated.button:hover .hidden.content {
206
256
  left: auto;
207
257
  right: 0%;
208
258
  }
209
259
 
210
260
  /* Vertical */
211
-
212
261
  .ui.vertical.animated.button .visible.content,
213
262
  .ui.vertical.animated.button .hidden.content {
214
- -webkit-transition: top 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
215
- transition: top 0.3s ease 0s, transform 0.3s ease 0s;
263
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
264
+ transition: top 0.3s ease, transform 0.3s ease;
216
265
  }
217
-
218
266
  .ui.vertical.animated.button .visible.content {
219
267
  -webkit-transform: translateY(0%);
220
- -ms-transform: translateY(0%);
221
- transform: translateY(0%);
268
+ -ms-transform: translateY(0%);
269
+ transform: translateY(0%);
222
270
  right: auto;
223
271
  }
224
-
225
272
  .ui.vertical.animated.button .hidden.content {
226
- top: -100%;
273
+ top: -50%;
227
274
  left: 0%;
228
275
  right: auto;
229
276
  }
230
-
231
277
  .ui.vertical.animated.button:hover .visible.content {
232
278
  -webkit-transform: translateY(200%);
233
- -ms-transform: translateY(200%);
234
- transform: translateY(200%);
279
+ -ms-transform: translateY(200%);
280
+ transform: translateY(200%);
235
281
  right: auto;
236
282
  }
237
-
238
283
  .ui.vertical.animated.button:hover .hidden.content {
239
284
  top: 50%;
240
285
  right: auto;
241
286
  }
242
287
 
243
288
  /* Fade */
244
-
245
289
  .ui.fade.animated.button .visible.content,
246
290
  .ui.fade.animated.button .hidden.content {
247
- -webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
248
- transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
291
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
292
+ transition: opacity 0.3s ease, transform 0.3s ease;
249
293
  }
250
-
251
294
  .ui.fade.animated.button .visible.content {
252
295
  left: auto;
253
296
  right: auto;
254
297
  opacity: 1;
255
298
  -webkit-transform: scale(1);
256
- -ms-transform: scale(1);
257
- transform: scale(1);
299
+ -ms-transform: scale(1);
300
+ transform: scale(1);
258
301
  }
259
-
260
302
  .ui.fade.animated.button .hidden.content {
261
303
  opacity: 0;
262
304
  left: 0%;
263
305
  right: auto;
264
- -webkit-transform: scale(1.2);
265
- -ms-transform: scale(1.2);
266
- transform: scale(1.2);
306
+ -webkit-transform: scale(1.5);
307
+ -ms-transform: scale(1.5);
308
+ transform: scale(1.5);
267
309
  }
268
-
269
310
  .ui.fade.animated.button:hover .visible.content {
270
311
  left: auto;
271
312
  right: auto;
272
313
  opacity: 0;
273
- -webkit-transform: scale(0.7);
274
- -ms-transform: scale(0.7);
275
- transform: scale(0.7);
314
+ -webkit-transform: scale(0.75);
315
+ -ms-transform: scale(0.75);
316
+ transform: scale(0.75);
276
317
  }
277
-
278
318
  .ui.fade.animated.button:hover .hidden.content {
279
319
  left: 0%;
280
320
  right: auto;
281
321
  opacity: 1;
282
322
  -webkit-transform: scale(1);
283
- -ms-transform: scale(1);
284
- transform: scale(1);
323
+ -ms-transform: scale(1);
324
+ transform: scale(1);
285
325
  }
286
326
 
287
327
  /*-------------------
288
- Primary
328
+ Inverted
289
329
  --------------------*/
290
330
 
291
- .ui.primary.buttons .button,
292
- .ui.primary.button {
293
- background-color: #D95C5C;
294
- color: #FFFFFF;
331
+ .ui.inverted.button {
332
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
333
+ background: transparent none;
334
+ color: #ffffff;
335
+ text-shadow: none !important;
295
336
  }
296
-
297
- .ui.primary.buttons .button:hover,
298
- .ui.primary.button:hover,
299
- .ui.primary.buttons .active.button,
300
- .ui.primary.button.active {
301
- background-color: #E75859;
302
- color: #FFFFFF;
337
+ .ui.inverted.buttons .button {
338
+ margin: 0px 0px 0px -2px;
303
339
  }
304
-
305
- .ui.primary.buttons .button:active,
306
- .ui.primary.button:active {
307
- background-color: #D24B4C;
308
- color: #FFFFFF;
340
+ .ui.inverted.buttons .button:first-child {
341
+ margin-left: 0em;
309
342
  }
310
-
311
- /*-------------------
312
- Secondary
313
- --------------------*/
314
-
315
- .ui.secondary.buttons .button,
316
- .ui.secondary.button {
317
- background-color: #00B5AD;
318
- color: #FFFFFF;
343
+ .ui.inverted.vertical.buttons .button {
344
+ margin: 0px 0px -2px 0px;
319
345
  }
320
-
321
- .ui.secondary.buttons .button:hover,
322
- .ui.secondary.button:hover,
323
- .ui.secondary.buttons .active.button,
324
- .ui.secondary.button.active {
325
- background-color: #009A93;
326
- color: #FFFFFF;
346
+ .ui.inverted.vertical.buttons .button:first-child {
347
+ margin-top: 0em;
327
348
  }
328
-
329
- .ui.secondary.buttons .button:active,
330
- .ui.secondary.button:active {
331
- background-color: #00847E;
332
- color: #FFFFFF;
349
+ .ui.inverted.buttons .button:hover {
350
+ position: relative;
351
+ }
352
+ .ui.inverted.button:hover {
353
+ background: #ffffff;
354
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
355
+ color: rgba(0, 0, 0, 0.8);
333
356
  }
334
357
 
335
358
  /*-------------------
336
359
  Social
337
360
  --------------------*/
338
361
 
339
- /* Facebook */
340
362
 
363
+ /* Facebook */
341
364
  .ui.facebook.button {
342
- background-color: #3B579D;
343
- color: #FFFFFF;
365
+ background-color: #3b579d;
366
+ color: #ffffff;
367
+ text-shadow: none;
368
+ background-image: none;
369
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
344
370
  }
345
-
346
371
  .ui.facebook.button:hover {
347
- background-color: #3A59A9;
348
- color: #FFFFFF;
372
+ background-color: #3f5da8;
373
+ color: #ffffff;
374
+ text-shadow: none;
349
375
  }
350
-
351
376
  .ui.facebook.button:active {
352
- background-color: #334F95;
353
- color: #FFFFFF;
377
+ background-color: #314983;
378
+ color: #ffffff;
379
+ text-shadow: none;
354
380
  }
355
381
 
356
382
  /* Twitter */
357
-
358
383
  .ui.twitter.button {
359
- background-color: #4092CC;
360
- color: #FFFFFF;
384
+ background-color: #4092cc;
385
+ color: #ffffff;
386
+ text-shadow: none;
387
+ background-image: none;
388
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
361
389
  }
362
-
363
390
  .ui.twitter.button:hover {
364
- background-color: #399ADE;
365
- color: #FFFFFF;
391
+ background-color: #4c99cf;
392
+ color: #ffffff;
393
+ text-shadow: none;
366
394
  }
367
-
368
395
  .ui.twitter.button:active {
369
- background-color: #3283BC;
370
- color: #FFFFFF;
396
+ background-color: #3180b7;
397
+ color: #ffffff;
398
+ text-shadow: none;
371
399
  }
372
400
 
373
401
  /* Google Plus */
374
-
375
402
  .ui.google.plus.button {
376
- background-color: #D34836;
377
- color: #FFFFFF;
403
+ background-color: #d34836;
404
+ color: #ffffff;
405
+ text-shadow: none;
406
+ background-image: none;
407
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
378
408
  }
379
-
380
409
  .ui.google.plus.button:hover {
381
- background-color: #E3432E;
382
- color: #FFFFFF;
410
+ background-color: #d65343;
411
+ color: #ffffff;
412
+ text-shadow: none;
383
413
  }
384
-
385
414
  .ui.google.plus.button:active {
386
- background-color: #CA3A27;
387
- color: #FFFFFF;
415
+ background-color: #bc3a29;
416
+ color: #ffffff;
417
+ text-shadow: none;
388
418
  }
389
419
 
390
420
  /* Linked In */
391
-
392
421
  .ui.linkedin.button {
393
- background-color: #1F88BE;
394
- color: #FFFFFF;
422
+ background-color: #1f88be;
423
+ color: #ffffff;
424
+ text-shadow: none;
395
425
  }
396
-
397
426
  .ui.linkedin.button:hover {
398
- background-color: #1394D6;
399
- color: #FFFFFF;
427
+ background-color: #2191cb;
428
+ color: #ffffff;
429
+ text-shadow: none;
400
430
  }
401
-
402
431
  .ui.linkedin.button:active {
403
- background-color: #1179AE;
404
- color: #FFFFFF;
432
+ background-color: #1a729f;
433
+ color: #ffffff;
434
+ text-shadow: none;
405
435
  }
406
436
 
407
437
  /* YouTube */
408
-
409
438
  .ui.youtube.button {
410
- background-color: #CC181E;
411
- color: #FFFFFF;
439
+ background-color: #cc181e;
440
+ color: #ffffff;
441
+ text-shadow: none;
442
+ background-image: none;
443
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
412
444
  }
413
-
414
445
  .ui.youtube.button:hover {
415
- background-color: #DF0209;
416
- color: #FFFFFF;
446
+ background-color: #da1a20;
447
+ color: #ffffff;
448
+ text-shadow: none;
417
449
  }
418
-
419
450
  .ui.youtube.button:active {
420
- background-color: #A50006;
421
- color: #FFFFFF;
451
+ background-color: #ac1419;
452
+ color: #ffffff;
453
+ text-shadow: none;
422
454
  }
423
455
 
424
456
  /* Instagram */
425
-
426
457
  .ui.instagram.button {
427
- background-color: #49769C;
428
- color: #FFFFFF;
458
+ background-color: #49769c;
459
+ color: #ffffff;
460
+ text-shadow: none;
461
+ background-image: none;
462
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
429
463
  }
430
-
431
464
  .ui.instagram.button:hover {
432
- background-color: #4781B1;
433
- color: #FFFFFF;
465
+ background-color: #4e7ea6;
466
+ color: #ffffff;
467
+ text-shadow: none;
434
468
  }
435
-
436
469
  .ui.instagram.button:active {
437
- background-color: #38658A;
438
- color: #FFFFFF;
470
+ background-color: #3e6484;
471
+ color: #ffffff;
472
+ text-shadow: none;
439
473
  }
440
474
 
441
475
  /* Pinterest */
442
-
443
476
  .ui.pinterest.button {
444
- background-color: #00ACED;
445
- color: #FFFFFF;
477
+ background-color: #00aced;
478
+ color: #ffffff;
479
+ text-shadow: none;
480
+ background-image: none;
481
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
446
482
  }
447
-
448
483
  .ui.pinterest.button:hover {
449
- background-color: #00B9FF;
450
- color: #FFFFFF;
484
+ background-color: #00b7fc;
485
+ color: #ffffff;
486
+ text-shadow: none;
451
487
  }
452
-
453
488
  .ui.pinterest.button:active {
454
- background-color: #009EDA;
455
- color: #FFFFFF;
489
+ background-color: #0092c9;
490
+ color: #ffffff;
491
+ text-shadow: none;
456
492
  }
457
493
 
458
- /* vk.com */
459
-
494
+ /* VK */
460
495
  .ui.vk.button {
461
496
  background-color: #4D7198;
462
- color: #FFFFFF;
497
+ color: #ffffff;
498
+ background-image: none;
499
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
463
500
  }
464
-
465
501
  .ui.vk.button:hover {
466
- background-color: #537AA5;
467
- color: #FFFFFF;
502
+ background-color: #5279a2;
503
+ color: #ffffff;
468
504
  }
469
-
470
505
  .ui.vk.button:active {
471
- background-color: #405E7E;
472
- color: #FFFFFF;
506
+ background-color: #415f80;
507
+ color: #ffffff;
473
508
  }
474
509
 
475
510
  /*--------------
@@ -477,148 +512,100 @@
477
512
  ---------------*/
478
513
 
479
514
  .ui.button > .icon {
480
- margin-right: 0.6em;
481
- line-height: 1;
482
- -webkit-transition: opacity 0.1s ease;
483
- transition: opacity 0.1s ease;
515
+ opacity: 0.8;
516
+ margin: 0em 0.4em 0em -0.2em;
517
+ -webkit-transition: opacity 0.2s ease;
518
+ transition: opacity 0.2s ease;
519
+ vertical-align: baseline;
520
+ color: '';
484
521
  }
522
+ .ui.button > .right.icon {
523
+ margin: 0em -0.2em 0em 0.4em;
524
+ }
525
+
485
526
 
486
527
  /*******************************
487
528
  Variations
488
529
  *******************************/
489
530
 
531
+
490
532
  /*-------------------
491
533
  Floated
492
534
  --------------------*/
493
535
 
494
- .ui.left.floated.buttons,
495
- .ui.left.floated.button {
536
+ .ui[class*="left floated"].buttons,
537
+ .ui[class*="left floated"].button {
496
538
  float: left;
539
+ margin-left: 0em;
497
540
  margin-right: 0.25em;
498
541
  }
499
-
500
- .ui.right.floated.buttons,
501
- .ui.right.floated.button {
542
+ .ui[class*="right floated"].buttons,
543
+ .ui[class*="right floated"].button {
502
544
  float: right;
545
+ margin-right: 0em;
503
546
  margin-left: 0.25em;
504
547
  }
505
548
 
506
549
  /*-------------------
507
- Sizes
550
+ Compact
508
551
  --------------------*/
509
552
 
510
- .ui.buttons .button,
511
- .ui.button {
512
- font-size: 1rem;
553
+ .ui.compact.buttons .button,
554
+ .ui.compact.button {
555
+ padding: 0.5892825em 1.125em 0.5892825em;
513
556
  }
514
-
515
- .ui.mini.buttons .button,
516
- .ui.mini.buttons .or,
517
- .ui.mini.button {
518
- font-size: 0.8rem;
557
+ .ui.compact.icon.buttons .button,
558
+ .ui.compact.icon.button {
559
+ padding: 0.5892825em 0.5892825em 0.5892825em;
560
+ }
561
+ .ui.compact.labeled.icon.buttons .button,
562
+ .ui.compact.labeled.icon.button {
563
+ padding: 0.5892825em 3.69642em 0.5892825em;
519
564
  }
520
565
 
566
+ /*-------------------
567
+ Sizes
568
+ --------------------*/
569
+
521
570
  .ui.mini.buttons .button,
571
+ .ui.mini.buttons .or,
522
572
  .ui.mini.button {
523
- padding: 0.6em 0.8em;
524
- }
525
-
526
- .ui.mini.icon.buttons .button,
527
- .ui.mini.buttons .icon.button {
528
- padding: 0.6em 0.6em;
573
+ font-size: 0.71428571rem;
529
574
  }
530
-
531
575
  .ui.tiny.buttons .button,
532
576
  .ui.tiny.buttons .or,
533
577
  .ui.tiny.button {
534
- font-size: 0.875em;
535
- }
536
-
537
- .ui.tiny.buttons .button,
538
- .ui.tiny.buttons .button,
539
- .ui.tiny.button {
540
- padding: 0.6em 0.8em;
541
- }
542
-
543
- .ui.tiny.icon.buttons .button,
544
- .ui.tiny.buttons .icon.button {
545
- padding: 0.6em 0.6em;
578
+ font-size: 0.85714286rem;
546
579
  }
547
-
548
580
  .ui.small.buttons .button,
549
581
  .ui.small.buttons .or,
550
582
  .ui.small.button {
551
- font-size: 0.875rem;
583
+ font-size: 0.92857143rem;
584
+ }
585
+ .ui.buttons .button,
586
+ .ui.buttons .or,
587
+ .ui.button {
588
+ font-size: 1rem;
552
589
  }
553
-
554
590
  .ui.large.buttons .button,
555
591
  .ui.large.buttons .or,
556
592
  .ui.large.button {
557
- font-size: 1.125rem;
593
+ font-size: 1.14285714rem;
558
594
  }
559
-
560
595
  .ui.big.buttons .button,
561
596
  .ui.big.buttons .or,
562
597
  .ui.big.button {
563
- font-size: 1.25rem;
598
+ font-size: 1.28571429rem;
564
599
  }
565
-
566
600
  .ui.huge.buttons .button,
567
601
  .ui.huge.buttons .or,
568
602
  .ui.huge.button {
569
- font-size: 1.375rem;
603
+ font-size: 1.42857143rem;
570
604
  }
571
-
572
605
  .ui.massive.buttons .button,
573
606
  .ui.massive.buttons .or,
574
607
  .ui.massive.button {
575
- font-size: 1.5rem;
576
- font-weight: bold;
577
- }
578
-
579
- /* Or resize */
580
-
581
- .ui.tiny.buttons .or:before,
582
- .ui.mini.buttons .or:before {
583
- width: 1.45em;
584
- height: 1.55em;
585
- line-height: 1.4;
586
- margin-left: -0.725em;
587
- margin-top: -0.25em;
588
- }
589
-
590
- .ui.tiny.buttons .or:after,
591
- .ui.mini.buttons .or:after {
592
- height: 1.45em;
593
- }
594
-
595
- /* loading */
596
-
597
- .ui.huge.loading.button:after {
598
- background-image: image-url("semantic-ui/loader-small.gif");
599
- }
600
-
601
- .ui.massive.buttons .loading.button:after,
602
- .ui.gigantic.buttons .loading.button:after,
603
- .ui.massive.loading.button:after,
604
- .ui.gigantic.loading.button:after {
605
- background-image: image-url("semantic-ui/loader-medium.gif");
606
- }
607
-
608
- .ui.huge.loading.button:after,
609
- .ui.huge.loading.button.active:after {
610
- background-image: image-url("semantic-ui/loader-small.gif");
611
- }
612
-
613
- .ui.massive.buttons .loading.button:after,
614
- .ui.gigantic.buttons .loading.button:after,
615
- .ui.massive.loading.button:after,
616
- .ui.gigantic.loading.button:after,
617
- .ui.massive.buttons .loading.button.active:after,
618
- .ui.gigantic.buttons .loading.button.active:after,
619
- .ui.massive.loading.button.active:after,
620
- .ui.gigantic.loading.button.active:after {
621
- background-image: image-url("semantic-ui/loader-medium.gif");
608
+ font-size: 1.71428571rem;
622
609
  }
623
610
 
624
611
  /*--------------
@@ -627,9 +614,8 @@
627
614
 
628
615
  .ui.icon.buttons .button,
629
616
  .ui.icon.button {
630
- padding: 0.8em;
617
+ padding: 0.78571em 0.78571em 0.78571em;
631
618
  }
632
-
633
619
  .ui.icon.buttons .button > .icon,
634
620
  .ui.icon.button > .icon {
635
621
  opacity: 0.9;
@@ -643,202 +629,196 @@
643
629
 
644
630
  .ui.basic.buttons .button,
645
631
  .ui.basic.button {
646
- background-color: transparent !important;
632
+ background: transparent !important;
647
633
  background-image: none;
648
- color: #808080 !important;
634
+ color: rgba(0, 0, 0, 0.6) !important;
649
635
  font-weight: normal;
636
+ border-radius: 0.2857rem;
650
637
  text-transform: none;
651
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
652
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
638
+ text-shadow: none !important;
639
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset;
653
640
  }
654
-
655
641
  .ui.basic.buttons {
656
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
657
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
658
- border-radius: 0.25em;
642
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15);
643
+ border-radius: 0.2857rem;
644
+ }
645
+ .ui.basic.buttons .button {
646
+ border-radius: 0em;
659
647
  }
660
-
661
648
  .ui.basic.buttons .button:hover,
662
649
  .ui.basic.button:hover {
663
- background-image: none;
664
- color: #7F7F7F !important;
665
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
666
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.18) inset;
650
+ background: #fafafa !important;
651
+ color: rgba(0, 0, 0, 0.8) !important;
652
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset;
667
653
  }
668
-
669
654
  .ui.basic.buttons .button:active,
670
655
  .ui.basic.button:active {
671
- background-color: rgba(0, 0, 0, 0.02) !important;
672
- color: #7F7F7F !important;
673
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
674
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
656
+ background: #f8f8f8 !important;
657
+ color: rgba(0, 0, 0, 0.8) !important;
658
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
675
659
  }
676
-
677
660
  .ui.basic.buttons .button.active,
678
661
  .ui.basic.button.active {
679
- background-color: rgba(0, 0, 0, 0.05);
680
- color: #7F7F7F;
681
- -webkit-box-shadow: 0px 0px 0px 1px #BDBDBD inset;
682
- box-shadow: 0px 0px 0px 1px #BDBDBD inset;
662
+ background: rgba(0, 0, 0, 0.05) !important;
663
+ box-shadow: '' !important;
664
+ color: rgba(0, 0, 0, 0.8);
665
+ box-shadow: rgba(39, 41, 43, 0.3);
683
666
  }
684
-
685
667
  .ui.basic.buttons .button.active:hover,
686
668
  .ui.basic.button.active:hover {
687
- background-color: rgba(0, 0, 0, 0.1);
669
+ background-color: rgba(0, 0, 0, 0.05);
688
670
  }
689
671
 
690
- /* Inverted */
672
+ /* Vertical */
673
+ .ui.basic.buttons .button:hover {
674
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset inset;
675
+ }
676
+ .ui.basic.buttons .button:active {
677
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset inset;
678
+ }
679
+ .ui.basic.buttons .button.active {
680
+ box-shadow: rgba(39, 41, 43, 0.3) inset;
681
+ }
691
682
 
683
+ /* Standard Basic Inverted */
692
684
  .ui.basic.inverted.buttons .button,
693
685
  .ui.basic.inverted.button {
694
- color: #FAFAFA !important;
695
- -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.3) inset;
696
- box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.3) inset;
686
+ background-color: transparent !important;
687
+ color: #fafafa !important;
688
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
697
689
  }
698
-
699
690
  .ui.basic.inverted.buttons .button:hover,
700
691
  .ui.basic.inverted.button:hover {
701
- background-image: none;
702
- color: #FFFFFF !important;
703
- -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.5) inset;
704
- box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.5) inset;
692
+ color: #ffffff !important;
693
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
705
694
  }
706
-
707
695
  .ui.basic.inverted.buttons .button:active,
708
696
  .ui.basic.inverted.button:active {
709
697
  background-color: rgba(255, 255, 255, 0.05) !important;
710
- color: #FFFFFF !important;
711
- -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.8) inset !important;
712
- box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.8) inset !important;
698
+ color: #ffffff !important;
699
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
713
700
  }
714
-
715
701
  .ui.basic.inverted.buttons .button.active,
716
702
  .ui.basic.inverted.button.active {
717
- background-color: rgba(255, 255, 255, 0.5);
718
- color: #FFFFFF;
719
- -webkit-box-shadow: none;
720
- box-shadow: none;
703
+ background-color: rgba(255, 255, 255, 0.05);
704
+ color: #ffffff;
705
+ text-shadow: none;
706
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
721
707
  }
722
-
723
708
  .ui.basic.inverted.buttons .button.active:hover,
724
709
  .ui.basic.inverted.button.active:hover {
725
- background-color: rgba(0, 0, 0, 0.1);
710
+ background-color: rgba(255, 255, 255, 0.07);
711
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
726
712
  }
727
713
 
728
714
  /* Basic Group */
729
-
730
715
  .ui.basic.buttons .button {
731
- border-left: 1px solid rgba(0, 0, 0, 0.1);
732
- -webkit-box-shadow: none;
733
- box-shadow: none;
734
- }
735
-
736
- .ui.basic.buttons .button:hover,
737
- .ui.basic.buttons .button:active {
738
- -webkit-box-shadow: none;
716
+ border-left: 1px solid rgba(39, 41, 43, 0.15);
739
717
  box-shadow: none;
740
718
  }
741
-
742
- .ui.basic.buttons .button.active,
743
- .ui.basic.buttons .button.active:hover {
744
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
745
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
719
+ .ui.basic.vertical.buttons .button {
720
+ border-left: none;
746
721
  }
747
722
 
748
723
  /*--------------
749
- Labeled Icon
724
+ Labeled Icon
750
725
  ---------------*/
751
726
 
752
727
  .ui.labeled.icon.buttons .button,
753
728
  .ui.labeled.icon.button {
754
729
  position: relative;
755
- padding-left: 4em !important;
756
- padding-right: 1.4em !important;
730
+ padding-left: 4.07142em !important;
731
+ padding-right: 1.5em !important;
757
732
  }
758
733
 
734
+ /* Left Labeled */
759
735
  .ui.labeled.icon.buttons > .button > .icon,
760
736
  .ui.labeled.icon.button > .icon {
761
737
  position: absolute;
762
- top: 0em;
763
- left: 0em;
764
- -webkit-box-sizing: border-box;
765
- -moz-box-sizing: border-box;
766
- -ms-box-sizing: border-box;
767
- box-sizing: border-box;
768
- width: 2.75em;
738
+ width: 2.57142em;
769
739
  height: 100%;
770
- padding-top: 0.8em;
771
740
  background-color: rgba(0, 0, 0, 0.05);
772
741
  text-align: center;
773
- border-radius: 0.25em 0px 0px 0.25em;
742
+ color: '';
743
+ border-radius: 0.2857rem 0px 0px 0.2857rem;
774
744
  line-height: 1;
775
- -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
776
- box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
745
+ box-shadow: -1px 0px 0px 0px transparent inset;
777
746
  }
778
747
 
748
+ /* Left Labeled */
749
+ .ui.labeled.icon.buttons > .button > .icon,
750
+ .ui.labeled.icon.button > .icon {
751
+ top: 0em;
752
+ left: 0em;
753
+ }
754
+
755
+ /* Right Labeled */
756
+ .ui[class*="right labeled"].icon.button {
757
+ padding-right: 4.07142em !important;
758
+ padding-left: 1.5em !important;
759
+ }
760
+ .ui[class*="right labeled"].icon.button > .icon {
761
+ left: auto;
762
+ right: 0em;
763
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
764
+ box-shadow: 1px 0px 0px 0px transparent inset;
765
+ }
766
+ .ui.labeled.icon.buttons > .button > .icon:before,
767
+ .ui.labeled.icon.button > .icon:before,
768
+ .ui.labeled.icon.buttons > .button > .icon:after,
769
+ .ui.labeled.icon.button > .icon:after {
770
+ display: block;
771
+ position: absolute;
772
+ width: 100%;
773
+ top: 50%;
774
+ text-align: center;
775
+ margin-top: -0.5em;
776
+ }
779
777
  .ui.labeled.icon.buttons .button > .icon {
780
778
  border-radius: 0em;
781
779
  }
782
-
783
780
  .ui.labeled.icon.buttons .button:first-child > .icon {
784
- border-top-left-radius: 0.25em;
785
- border-bottom-left-radius: 0.25em;
781
+ border-top-left-radius: 0.2857rem;
782
+ border-bottom-left-radius: 0.2857rem;
786
783
  }
787
-
788
784
  .ui.labeled.icon.buttons .button:last-child > .icon {
789
- border-top-right-radius: 0.25em;
790
- border-bottom-right-radius: 0.25em;
785
+ border-top-right-radius: 0.2857rem;
786
+ border-bottom-right-radius: 0.2857rem;
791
787
  }
792
-
793
788
  .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
794
789
  border-radius: 0em;
795
- border-top-left-radius: 0.25em;
790
+ border-top-left-radius: 0.2857rem;
796
791
  }
797
-
798
792
  .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
799
793
  border-radius: 0em;
800
- border-bottom-left-radius: 0.25em;
801
- }
802
-
803
- .ui.right.labeled.icon.button {
804
- padding-left: 1.4em !important;
805
- padding-right: 4em !important;
806
- }
807
-
808
- .ui.left.fluid.labeled.icon.button,
809
- .ui.right.fluid.labeled.icon.button {
810
- padding-left: 1.4em !important;
811
- padding-right: 1.4em !important;
794
+ border-bottom-left-radius: 0.2857rem;
812
795
  }
813
796
 
814
- .ui.right.labeled.icon.button .icon {
815
- left: auto;
816
- right: 0em;
817
- border-radius: 0em 0.25em 0.25em 0em;
818
- -webkit-box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
819
- box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
797
+ /* Fluid Labeled */
798
+ .ui.fluid[class*="left labeled"].icon.button,
799
+ .ui.fluid[class*="right labeled"].icon.button {
800
+ padding-left: 1.5em !important;
801
+ padding-right: 1.5em !important;
820
802
  }
821
803
 
822
804
  /*--------------
823
805
  Toggle
824
806
  ---------------*/
825
807
 
826
- /* Toggle (Modifies active state to give affordances) */
827
808
 
809
+ /* Toggle (Modifies active state to give affordances) */
828
810
  .ui.toggle.buttons .active.button,
829
811
  .ui.buttons .button.toggle.active,
830
812
  .ui.button.toggle.active {
831
- background-color: #5BBD72 !important;
832
- color: #FFFFFF !important;
833
- -webkit-box-shadow: none !important;
813
+ background-color: #5bbd72 !important;
834
814
  box-shadow: none !important;
815
+ text-shadow: none;
816
+ color: #ffffff !important;
835
817
  }
836
-
837
818
  .ui.button.toggle.active:hover {
838
- background-color: #58CB73 !important;
839
- color: #FFFFFF !important;
840
- -webkit-box-shadow: none !important;
841
- box-shadow: none !important;
819
+ background-color: #66c17b !important;
820
+ text-shadow: none;
821
+ color: #ffffff !important;
842
822
  }
843
823
 
844
824
  /*--------------
@@ -848,6 +828,10 @@
848
828
  .ui.circular.button {
849
829
  border-radius: 10em;
850
830
  }
831
+ .ui.circular.button > .icon {
832
+ width: 1em;
833
+ vertical-align: baseline;
834
+ }
851
835
 
852
836
  /*--------------
853
837
  Attached
@@ -855,31 +839,28 @@
855
839
 
856
840
  .ui.attached.button {
857
841
  display: block;
858
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
859
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
860
- }
861
-
842
+ margin: 0em;
843
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) !important;
844
+ border-radius: 0em;
845
+ }
862
846
  .ui.attached.top.button {
863
- border-radius: 0.25em 0.25em 0em 0em;
847
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
864
848
  }
865
-
866
849
  .ui.attached.bottom.button {
867
- border-radius: 0em 0em 0.25em 0.25em;
850
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
868
851
  }
869
-
870
852
  .ui.attached.left.button {
871
853
  display: inline-block;
872
854
  border-left: none;
873
855
  padding-right: 0.75em;
874
856
  text-align: right;
875
- border-radius: 0.25em 0em 0em 0.25em;
857
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
876
858
  }
877
-
878
859
  .ui.attached.right.button {
879
860
  display: inline-block;
880
861
  padding-left: 0.75em;
881
862
  text-align: left;
882
- border-radius: 0em 0.25em 0.25em 0em;
863
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
883
864
  }
884
865
 
885
866
  /*-------------------
@@ -890,56 +871,36 @@
890
871
  position: relative;
891
872
  float: left;
892
873
  width: 0.3em;
893
- height: 1.1em;
874
+ height: 2.57142em;
894
875
  z-index: 3;
895
876
  }
896
-
897
877
  .ui.buttons .or:before {
898
878
  position: absolute;
879
+ text-align: center;
880
+ border-radius: 500rem;
881
+ content: 'or';
899
882
  top: 50%;
900
883
  left: 50%;
901
- content: 'or';
902
- background-color: #FFFFFF;
903
- margin-top: -0.1em;
904
- margin-left: -0.9em;
905
- width: 1.8em;
906
- height: 1.8em;
907
- line-height: 1.55;
908
- color: #AAAAAA;
884
+ background-color: #ffffff;
885
+ text-shadow: none;
886
+ margin-top: -0.892855em;
887
+ margin-left: -0.892855em;
888
+ width: 1.78571em;
889
+ height: 1.78571em;
890
+ line-height: 1.78571em;
891
+ color: rgba(0, 0, 0, 0.4);
909
892
  font-style: normal;
910
- font-weight: normal;
911
- text-align: center;
912
- border-radius: 500px;
913
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
914
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
915
- -webkit-box-sizing: border-box;
916
- -moz-box-sizing: border-box;
917
- -ms-box-sizing: border-box;
918
- box-sizing: border-box;
893
+ font-weight: bold;
894
+ box-shadow: 0px 0px 0px 1px transparent inset;
919
895
  }
920
-
921
896
  .ui.buttons .or[data-text]:before {
922
897
  content: attr(data-text);
923
898
  }
924
899
 
925
- .ui.buttons .or:after {
926
- position: absolute;
927
- top: 0em;
928
- left: 0em;
929
- content: ' ';
930
- width: 0.3em;
931
- height: 1.7em;
932
- background-color: transparent;
933
- border-top: 0.5em solid #FFFFFF;
934
- border-bottom: 0.5em solid #FFFFFF;
935
- }
936
-
937
900
  /* Fluid Or */
938
-
939
901
  .ui.fluid.buttons .or {
940
902
  width: 0em !important;
941
903
  }
942
-
943
904
  .ui.fluid.buttons .or:after {
944
905
  display: none;
945
906
  }
@@ -948,197 +909,217 @@
948
909
  Attached
949
910
  --------------------*/
950
911
 
951
- /* Plural Attached */
952
912
 
913
+ /* Plural Attached */
953
914
  .attached.ui.buttons {
954
915
  margin: 0px;
955
- border-radius: 4px 4px 0px 0px;
916
+ border-radius: 0em 0em 0em 0em;
917
+ }
918
+ .attached.ui.buttons .button {
919
+ margin: 0em;
956
920
  }
957
-
958
921
  .attached.ui.buttons .button:first-child {
959
- border-radius: 4px 0px 0px 0px;
922
+ border-radius: 0em 0em 0em 0em;
960
923
  }
961
-
962
924
  .attached.ui.buttons .button:last-child {
963
- border-radius: 0px 4px 0px 0px;
925
+ border-radius: 0em 0em 0em 0em;
964
926
  }
965
927
 
966
- /* Bottom Side */
928
+ /* Top Side */
929
+ [class*="top attached"].ui.buttons {
930
+ margin-bottom: -1px;
931
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
932
+ }
933
+ [class*="top attached"].ui.buttons .button:first-child {
934
+ border-radius: 0.2857rem 0em 0em 0em;
935
+ }
936
+ [class*="top attached"].ui.buttons .button:last-child {
937
+ border-radius: 0em 0.2857rem 0em 0em;
938
+ }
967
939
 
968
- .bottom.attached.ui.buttons {
940
+ /* Bottom Side */
941
+ [class*="bottom attached"].ui.buttons {
969
942
  margin-top: -1px;
970
- border-radius: 0px 0px 4px 4px;
943
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
971
944
  }
972
-
973
- .bottom.attached.ui.buttons .button:first-child {
974
- border-radius: 0px 0px 0px 4px;
945
+ [class*="bottom attached"].ui.buttons .button:first-child {
946
+ border-radius: 0em 0em 0em 0.2857rem;
975
947
  }
976
-
977
- .bottom.attached.ui.buttons .button:last-child {
978
- border-radius: 0px 0px 4px 0px;
948
+ [class*="bottom attached"].ui.buttons .button:last-child {
949
+ border-radius: 0em 0em 0.2857rem 0em;
979
950
  }
980
951
 
981
952
  /* Left Side */
982
-
983
- .left.attached.ui.buttons {
953
+ [class*="left attached"].ui.buttons {
984
954
  margin-left: -1px;
985
- border-radius: 0px 4px 4px 0px;
955
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
986
956
  }
987
-
988
- .left.attached.ui.buttons .button:first-child {
957
+ [class*="left attached"].ui.buttons .button:first-child {
989
958
  margin-left: -1px;
990
- border-radius: 0px 4px 0px 0px;
959
+ border-radius: 0em 0.2857rem 0em 0em;
991
960
  }
992
-
993
- .left.attached.ui.buttons .button:last-child {
961
+ [class*="left attached"].ui.buttons .button:last-child {
994
962
  margin-left: -1px;
995
- border-radius: 0px 0px 4px 0px;
963
+ border-radius: 0em 0em 0.2857rem 0em;
996
964
  }
997
965
 
998
966
  /* Right Side */
999
-
1000
- .right.attached.ui.buttons,
1001
- .right.attached.ui.buttons .button {
967
+ [class*="right attached"].ui.buttons,
968
+ [class*="right attached"].ui.buttons .button {
1002
969
  margin-right: -1px;
1003
- border-radius: 4px 0px 0px 4px;
970
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
1004
971
  }
1005
-
1006
- .right.attached.ui.buttons .button:first-child {
972
+ [class*="right attached"].ui.buttons .button:first-child {
1007
973
  margin-left: -1px;
1008
- border-radius: 4px 0px 0px 0px;
974
+ border-radius: 0.2857rem 0em 0em 0em;
1009
975
  }
1010
-
1011
- .right.attached.ui.buttons .button:last-child {
976
+ [class*="right attached"].ui.buttons .button:last-child {
1012
977
  margin-left: -1px;
1013
- border-radius: 0px 0px 0px 4px;
978
+ border-radius: 0em 0em 0em 0.2857rem;
1014
979
  }
1015
980
 
1016
981
  /* Fluid */
1017
-
1018
982
  .ui.fluid.buttons,
1019
983
  .ui.button.fluid,
1020
984
  .ui.fluid.buttons > .button {
1021
985
  display: block;
1022
986
  width: 100%;
1023
987
  }
1024
-
988
+ .ui.\32.buttons,
989
+ .ui.two.buttons {
990
+ width: 100%;
991
+ }
1025
992
  .ui.\32.buttons > .button,
1026
993
  .ui.two.buttons > .button {
1027
994
  width: 50%;
1028
995
  }
1029
-
996
+ .ui.\33.buttons,
997
+ .ui.three.buttons {
998
+ width: 100%;
999
+ }
1030
1000
  .ui.\33.buttons > .button,
1031
1001
  .ui.three.buttons > .button {
1032
1002
  width: 33.333%;
1033
1003
  }
1034
-
1004
+ .ui.\34.buttons,
1005
+ .ui.four.buttons {
1006
+ width: 100%;
1007
+ }
1035
1008
  .ui.\34.buttons > .button,
1036
1009
  .ui.four.buttons > .button {
1037
1010
  width: 25%;
1038
1011
  }
1039
-
1012
+ .ui.\35.buttons,
1013
+ .ui.five.buttons {
1014
+ width: 100%;
1015
+ }
1040
1016
  .ui.\35.buttons > .button,
1041
1017
  .ui.five.buttons > .button {
1042
1018
  width: 20%;
1043
1019
  }
1044
-
1020
+ .ui.\36.buttons,
1021
+ .ui.six.buttons {
1022
+ width: 100%;
1023
+ }
1045
1024
  .ui.\36.buttons > .button,
1046
1025
  .ui.six.buttons > .button {
1047
1026
  width: 16.666%;
1048
1027
  }
1049
-
1028
+ .ui.\37.buttons,
1029
+ .ui.seven.buttons {
1030
+ width: 100%;
1031
+ }
1050
1032
  .ui.\37.buttons > .button,
1051
1033
  .ui.seven.buttons > .button {
1052
1034
  width: 14.285%;
1053
1035
  }
1054
-
1036
+ .ui.\38.buttons,
1037
+ .ui.eight.buttons {
1038
+ width: 100%;
1039
+ }
1055
1040
  .ui.\38.buttons > .button,
1056
1041
  .ui.eight.buttons > .button {
1057
1042
  width: 12.500%;
1058
1043
  }
1059
-
1044
+ .ui.\39.buttons,
1045
+ .ui.nine.buttons {
1046
+ width: 100%;
1047
+ }
1060
1048
  .ui.\39.buttons > .button,
1061
1049
  .ui.nine.buttons > .button {
1062
1050
  width: 11.11%;
1063
1051
  }
1064
-
1052
+ .ui.\31\30.buttons,
1053
+ .ui.ten.buttons {
1054
+ width: 100%;
1055
+ }
1065
1056
  .ui.\31\30.buttons > .button,
1066
1057
  .ui.ten.buttons > .button {
1067
1058
  width: 10%;
1068
1059
  }
1069
-
1060
+ .ui.\31\31.buttons,
1061
+ .ui.eleven.buttons {
1062
+ width: 100%;
1063
+ }
1070
1064
  .ui.\31\31.buttons > .button,
1071
1065
  .ui.eleven.buttons > .button {
1072
1066
  width: 9.09%;
1073
1067
  }
1074
-
1068
+ .ui.\31\32.buttons,
1069
+ .ui.twelve.buttons {
1070
+ width: 100%;
1071
+ }
1075
1072
  .ui.\31\32.buttons > .button,
1076
1073
  .ui.twelve.buttons > .button {
1077
1074
  width: 8.3333%;
1078
1075
  }
1079
1076
 
1080
1077
  /* Fluid Vertical Buttons */
1081
-
1082
1078
  .ui.fluid.vertical.buttons,
1083
1079
  .ui.fluid.vertical.buttons > .button {
1084
1080
  display: block;
1085
1081
  width: auto;
1086
- -webkit-box-sizing: border-box;
1087
- -moz-box-sizing: border-box;
1088
- -ms-box-sizing: border-box;
1089
- box-sizing: border-box;
1090
1082
  }
1091
-
1092
1083
  .ui.\32.vertical.buttons > .button,
1093
1084
  .ui.two.vertical.buttons > .button {
1094
1085
  height: 50%;
1095
1086
  }
1096
-
1097
1087
  .ui.\33.vertical.buttons > .button,
1098
1088
  .ui.three.vertical.buttons > .button {
1099
1089
  height: 33.333%;
1100
1090
  }
1101
-
1102
1091
  .ui.\34.vertical.buttons > .button,
1103
1092
  .ui.four.vertical.buttons > .button {
1104
1093
  height: 25%;
1105
1094
  }
1106
-
1107
1095
  .ui.\35.vertical.buttons > .button,
1108
1096
  .ui.five.vertical.buttons > .button {
1109
1097
  height: 20%;
1110
1098
  }
1111
-
1112
1099
  .ui.\36.vertical.buttons > .button,
1113
1100
  .ui.six.vertical.buttons > .button {
1114
1101
  height: 16.666%;
1115
1102
  }
1116
-
1117
1103
  .ui.\37.vertical.buttons > .button,
1118
1104
  .ui.seven.vertical.buttons > .button {
1119
1105
  height: 14.285%;
1120
1106
  }
1121
-
1122
1107
  .ui.\38.vertical.buttons > .button,
1123
1108
  .ui.eight.vertical.buttons > .button {
1124
1109
  height: 12.500%;
1125
1110
  }
1126
-
1127
1111
  .ui.\39.vertical.buttons > .button,
1128
1112
  .ui.nine.vertical.buttons > .button {
1129
1113
  height: 11.11%;
1130
1114
  }
1131
-
1132
1115
  .ui.\31\30.vertical.buttons > .button,
1133
1116
  .ui.ten.vertical.buttons > .button {
1134
1117
  height: 10%;
1135
1118
  }
1136
-
1137
1119
  .ui.\31\31.vertical.buttons > .button,
1138
1120
  .ui.eleven.vertical.buttons > .button {
1139
1121
  height: 9.09%;
1140
1122
  }
1141
-
1142
1123
  .ui.\31\32.vertical.buttons > .button,
1143
1124
  .ui.twelve.vertical.buttons > .button {
1144
1125
  height: 8.3333%;
@@ -1148,156 +1129,1088 @@
1148
1129
  Colors
1149
1130
  --------------------*/
1150
1131
 
1132
+
1151
1133
  /*--- Black ---*/
1152
1134
 
1153
1135
  .ui.black.buttons .button,
1154
1136
  .ui.black.button {
1155
- background-color: #5C6166;
1156
- color: #FFFFFF;
1137
+ background-color: #1b1c1d;
1138
+ color: #ffffff;
1139
+ text-shadow: none;
1140
+ background-image: none;
1141
+ }
1142
+ .ui.black.button {
1143
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1157
1144
  }
1158
-
1159
1145
  .ui.black.buttons .button:hover,
1160
1146
  .ui.black.button:hover {
1161
- background-color: #4C4C4C;
1162
- color: #FFFFFF;
1147
+ background-color: #1b1c1d;
1148
+ color: #ffffff;
1149
+ text-shadow: none;
1163
1150
  }
1164
-
1165
1151
  .ui.black.buttons .button:active,
1166
1152
  .ui.black.button:active {
1153
+ background-color: #0a0a0b;
1154
+ color: #ffffff;
1155
+ text-shadow: none;
1156
+ }
1157
+ .ui.black.buttons .button.active,
1158
+ .ui.black.buttons .button.active:active,
1159
+ .ui.black.button.active,
1160
+ .ui.black.button .button.active:active {
1161
+ background-color: #0f0f10;
1162
+ color: #ffffff;
1163
+ text-shadow: none;
1164
+ }
1165
+
1166
+ /* Basic */
1167
+ .ui.basic.black.buttons .button,
1168
+ .ui.basic.black.button {
1169
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1170
+ color: rgba(0, 0, 0, 0.6) !important;
1171
+ }
1172
+ .ui.basic.black.buttons .button:hover,
1173
+ .ui.basic.black.button:hover {
1174
+ background: transparent !important;
1175
+ box-shadow: 0px 0px 0px 2px #1b1c1d inset !important;
1176
+ color: #1b1c1d !important;
1177
+ }
1178
+ .ui.basic.black.buttons .button:active,
1179
+ .ui.basic.black.button:active {
1180
+ box-shadow: 0px 0px 0px 2px #0a0a0b inset !important;
1181
+ color: #0a0a0b !important;
1182
+ }
1183
+ .ui.basic.black.buttons .button.active,
1184
+ .ui.basic.black.button.active {
1185
+ background: transparent !important;
1186
+ box-shadow: 0px 0px 0px 2px #0a0a0b inset !important;
1187
+ color: #0a0a0b !important;
1188
+ }
1189
+ .ui.buttons > .basic.black.button:not(:first-child) {
1190
+ margin-left: -2px;
1191
+ }
1192
+
1193
+ /* Inverted */
1194
+ .ui.inverted.black.buttons .button,
1195
+ .ui.inverted.black.button {
1196
+ background-color: transparent;
1197
+ box-shadow: 0px 0px 0px 2px #d4d4d5 inset !important;
1198
+ color: #ffffff;
1199
+ }
1200
+ .ui.inverted.black.buttons .button:hover,
1201
+ .ui.inverted.black.button:hover {
1202
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1203
+ background-color: #333333;
1204
+ color: #ffffff;
1205
+ }
1206
+ .ui.inverted.black.buttons .button.active,
1207
+ .ui.inverted.black.button.active {
1208
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1167
1209
  background-color: #333333;
1168
- color: #FFFFFF;
1210
+ color: #ffffff;
1211
+ }
1212
+ .ui.inverted.black.buttons .button:active,
1213
+ .ui.inverted.black.button:active {
1214
+ box-shadow: 0px 0px 0px 2px #212121 inset !important;
1215
+ background-color: #212121;
1216
+ color: #ffffff;
1217
+ }
1218
+
1219
+ /* Inverted Basic */
1220
+ .ui.inverted.black.basic.buttons .button,
1221
+ .ui.inverted.black.buttons .basic.button,
1222
+ .ui.inverted.black.basic.button {
1223
+ background-color: transparent;
1224
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1225
+ color: #ffffff !important;
1226
+ }
1227
+ .ui.inverted.black.basic.buttons .button:hover,
1228
+ .ui.inverted.black.buttons .basic.button:hover,
1229
+ .ui.inverted.black.basic.button:hover {
1230
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1231
+ color: #ffffff !important;
1232
+ }
1233
+ .ui.inverted.black.basic.buttons .button.active,
1234
+ .ui.inverted.black.buttons .basic.button.active,
1235
+ .ui.inverted.black.basic.button.active {
1236
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1237
+ color: #ffffff !important;
1238
+ }
1239
+ .ui.inverted.black.basic.buttons .button:active,
1240
+ .ui.inverted.black.buttons .basic.button:active,
1241
+ .ui.inverted.black.basic.button:active {
1242
+ box-shadow: 0px 0px 0px 2px #212121 inset !important;
1243
+ color: #ffffff !important;
1244
+ }
1245
+
1246
+ /*--- Blue ---*/
1247
+
1248
+ .ui.blue.buttons .button,
1249
+ .ui.blue.button {
1250
+ background-color: #3b83c0;
1251
+ color: #ffffff;
1252
+ text-shadow: none;
1253
+ background-image: none;
1254
+ }
1255
+ .ui.blue.button {
1256
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1257
+ }
1258
+ .ui.blue.buttons .button:hover,
1259
+ .ui.blue.button:hover {
1260
+ background-color: #458ac6;
1261
+ color: #ffffff;
1262
+ text-shadow: none;
1263
+ }
1264
+ .ui.blue.buttons .button:active,
1265
+ .ui.blue.button:active {
1266
+ background-color: #3370a5;
1267
+ color: #ffffff;
1268
+ text-shadow: none;
1269
+ }
1270
+ .ui.blue.buttons .button.active,
1271
+ .ui.blue.buttons .button.active:active,
1272
+ .ui.blue.button.active,
1273
+ .ui.blue.button .button.active:active {
1274
+ background-color: #3576ac;
1275
+ color: #ffffff;
1276
+ text-shadow: none;
1277
+ }
1278
+
1279
+ /* Basic */
1280
+ .ui.basic.blue.buttons .button,
1281
+ .ui.basic.blue.button {
1282
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1283
+ color: rgba(0, 0, 0, 0.6) !important;
1284
+ }
1285
+ .ui.basic.blue.buttons .button:hover,
1286
+ .ui.basic.blue.button:hover {
1287
+ background: transparent !important;
1288
+ box-shadow: 0px 0px 0px 2px #458ac6 inset !important;
1289
+ color: #458ac6 !important;
1290
+ }
1291
+ .ui.basic.blue.buttons .button:active,
1292
+ .ui.basic.blue.button:active {
1293
+ box-shadow: 0px 0px 0px 2px #3370a5 inset !important;
1294
+ color: #3370a5 !important;
1295
+ }
1296
+ .ui.basic.blue.buttons .button.active,
1297
+ .ui.basic.blue.button.active {
1298
+ background: transparent !important;
1299
+ box-shadow: 0px 0px 0px 2px #3370a5 inset !important;
1300
+ color: #3370a5 !important;
1301
+ }
1302
+ .ui.buttons > .basic.blue.button:not(:first-child) {
1303
+ margin-left: -2px;
1304
+ }
1305
+
1306
+ /* Inverted */
1307
+ .ui.inverted.blue.buttons .button,
1308
+ .ui.inverted.blue.button {
1309
+ background-color: transparent;
1310
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1311
+ color: #54c8ff;
1312
+ }
1313
+ .ui.inverted.blue.buttons .button:hover,
1314
+ .ui.inverted.blue.button:hover {
1315
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1316
+ background-color: #54c8ff;
1317
+ color: #ffffff;
1318
+ }
1319
+ .ui.inverted.blue.buttons .button.active,
1320
+ .ui.inverted.blue.button.active {
1321
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1322
+ background-color: #54c8ff;
1323
+ color: #ffffff;
1324
+ }
1325
+ .ui.inverted.blue.buttons .button:active,
1326
+ .ui.inverted.blue.button:active {
1327
+ box-shadow: 0px 0px 0px 2px #30bdff inset !important;
1328
+ background-color: #30bdff;
1329
+ color: #ffffff;
1330
+ }
1331
+
1332
+ /* Inverted Basic */
1333
+ .ui.inverted.blue.basic.buttons .button,
1334
+ .ui.inverted.blue.buttons .basic.button,
1335
+ .ui.inverted.blue.basic.button {
1336
+ background-color: transparent;
1337
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1338
+ color: #ffffff !important;
1339
+ }
1340
+ .ui.inverted.blue.basic.buttons .button:hover,
1341
+ .ui.inverted.blue.buttons .basic.button:hover,
1342
+ .ui.inverted.blue.basic.button:hover {
1343
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1344
+ color: #54c8ff !important;
1345
+ }
1346
+ .ui.inverted.blue.basic.buttons .button.active,
1347
+ .ui.inverted.blue.buttons .basic.button.active,
1348
+ .ui.inverted.blue.basic.button.active {
1349
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1350
+ color: #54c8ff !important;
1351
+ }
1352
+ .ui.inverted.blue.basic.buttons .button:active,
1353
+ .ui.inverted.blue.buttons .basic.button:active,
1354
+ .ui.inverted.blue.basic.button:active {
1355
+ box-shadow: 0px 0px 0px 2px #30bdff inset !important;
1356
+ color: #54c8ff !important;
1169
1357
  }
1170
1358
 
1171
1359
  /*--- Green ---*/
1172
1360
 
1173
1361
  .ui.green.buttons .button,
1174
1362
  .ui.green.button {
1175
- background-color: #5BBD72;
1176
- color: #FFFFFF;
1363
+ background-color: #5bbd72;
1364
+ color: #ffffff;
1365
+ text-shadow: none;
1366
+ background-image: none;
1367
+ }
1368
+ .ui.green.button {
1369
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1177
1370
  }
1178
-
1179
1371
  .ui.green.buttons .button:hover,
1180
- .ui.green.button:hover,
1181
- .ui.green.buttons .active.button,
1182
- .ui.green.button.active {
1183
- background-color: #58cb73;
1184
- color: #FFFFFF;
1372
+ .ui.green.button:hover {
1373
+ background-color: #66c17b;
1374
+ color: #ffffff;
1375
+ text-shadow: none;
1185
1376
  }
1186
-
1187
1377
  .ui.green.buttons .button:active,
1188
1378
  .ui.green.button:active {
1189
- background-color: #4CB164;
1190
- color: #FFFFFF;
1379
+ background-color: #46ae5f;
1380
+ color: #ffffff;
1381
+ text-shadow: none;
1382
+ }
1383
+ .ui.green.buttons .button.active,
1384
+ .ui.green.buttons .button.active:active,
1385
+ .ui.green.button.active,
1386
+ .ui.green.button .button.active:active {
1387
+ background-color: #49b562;
1388
+ color: #ffffff;
1389
+ text-shadow: none;
1390
+ }
1391
+
1392
+ /* Basic */
1393
+ .ui.basic.green.buttons .button,
1394
+ .ui.basic.green.button {
1395
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1396
+ color: rgba(0, 0, 0, 0.6) !important;
1397
+ }
1398
+ .ui.basic.green.buttons .button:hover,
1399
+ .ui.basic.green.button:hover {
1400
+ background: transparent !important;
1401
+ box-shadow: 0px 0px 0px 2px #66c17b inset !important;
1402
+ color: #66c17b !important;
1403
+ }
1404
+ .ui.basic.green.buttons .button:active,
1405
+ .ui.basic.green.button:active {
1406
+ box-shadow: 0px 0px 0px 2px #46ae5f inset !important;
1407
+ color: #46ae5f !important;
1408
+ }
1409
+ .ui.basic.green.buttons .button.active,
1410
+ .ui.basic.green.button.active {
1411
+ background: transparent !important;
1412
+ box-shadow: 0px 0px 0px 2px #46ae5f inset !important;
1413
+ color: #46ae5f !important;
1414
+ }
1415
+ .ui.buttons > .basic.green.button:not(:first-child) {
1416
+ margin-left: -2px;
1191
1417
  }
1192
1418
 
1193
- /*--- Red ---*/
1194
-
1195
- .ui.red.buttons .button,
1196
- .ui.red.button {
1197
- background-color: #D95C5C;
1198
- color: #FFFFFF;
1419
+ /* Inverted */
1420
+ .ui.inverted.green.buttons .button,
1421
+ .ui.inverted.green.button {
1422
+ background-color: transparent;
1423
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1424
+ color: #2ecc40;
1425
+ }
1426
+ .ui.inverted.green.buttons .button:hover,
1427
+ .ui.inverted.green.button:hover {
1428
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1429
+ background-color: #2ecc40;
1430
+ color: #ffffff;
1431
+ }
1432
+ .ui.inverted.green.buttons .button.active,
1433
+ .ui.inverted.green.button.active {
1434
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1435
+ background-color: #2ecc40;
1436
+ color: #ffffff;
1437
+ }
1438
+ .ui.inverted.green.buttons .button:active,
1439
+ .ui.inverted.green.button:active {
1440
+ box-shadow: 0px 0px 0px 2px #27af37 inset !important;
1441
+ background-color: #27af37;
1442
+ color: #ffffff;
1443
+ }
1444
+
1445
+ /* Inverted Basic */
1446
+ .ui.inverted.green.basic.buttons .button,
1447
+ .ui.inverted.green.buttons .basic.button,
1448
+ .ui.inverted.green.basic.button {
1449
+ background-color: transparent;
1450
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1451
+ color: #ffffff !important;
1199
1452
  }
1200
-
1201
- .ui.red.buttons .button:hover,
1202
- .ui.red.button:hover,
1203
- .ui.red.buttons .active.button,
1204
- .ui.red.button.active {
1205
- background-color: #E75859;
1206
- color: #FFFFFF;
1453
+ .ui.inverted.green.basic.buttons .button:hover,
1454
+ .ui.inverted.green.buttons .basic.button:hover,
1455
+ .ui.inverted.green.basic.button:hover {
1456
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1457
+ color: #2ecc40 !important;
1207
1458
  }
1208
-
1209
- .ui.red.buttons .button:active,
1210
- .ui.red.button:active {
1211
- background-color: #D24B4C;
1212
- color: #FFFFFF;
1459
+ .ui.inverted.green.basic.buttons .button.active,
1460
+ .ui.inverted.green.buttons .basic.button.active,
1461
+ .ui.inverted.green.basic.button.active {
1462
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1463
+ color: #2ecc40 !important;
1464
+ }
1465
+ .ui.inverted.green.basic.buttons .button:active,
1466
+ .ui.inverted.green.buttons .basic.button:active,
1467
+ .ui.inverted.green.basic.button:active {
1468
+ box-shadow: 0px 0px 0px 2px #27af37 inset !important;
1469
+ color: #2ecc40 !important;
1213
1470
  }
1214
1471
 
1215
1472
  /*--- Orange ---*/
1216
1473
 
1217
1474
  .ui.orange.buttons .button,
1218
1475
  .ui.orange.button {
1219
- background-color: #E96633;
1220
- color: #FFFFFF;
1476
+ background-color: #e07b53;
1477
+ color: #ffffff;
1478
+ text-shadow: none;
1479
+ background-image: none;
1480
+ }
1481
+ .ui.orange.button {
1482
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1221
1483
  }
1222
-
1223
1484
  .ui.orange.buttons .button:hover,
1224
- .ui.orange.button:hover,
1225
- .ui.orange.buttons .active.button,
1226
- .ui.orange.button.active {
1227
- background-color: #FF7038;
1228
- color: #FFFFFF;
1485
+ .ui.orange.button:hover {
1486
+ background-color: #e28560;
1487
+ color: #ffffff;
1488
+ text-shadow: none;
1229
1489
  }
1230
-
1231
1490
  .ui.orange.buttons .button:active,
1232
1491
  .ui.orange.button:active {
1233
- background-color: #DA683B;
1234
- color: #FFFFFF;
1492
+ background-color: #db6435;
1493
+ color: #ffffff;
1494
+ text-shadow: none;
1495
+ }
1496
+ .ui.orange.buttons .button.active,
1497
+ .ui.orange.buttons .button.active:active,
1498
+ .ui.orange.button.active,
1499
+ .ui.orange.button .button.active:active {
1500
+ background-color: #0f0f10;
1501
+ color: #ffffff;
1502
+ text-shadow: none;
1503
+ }
1504
+
1505
+ /* Basic */
1506
+ .ui.basic.orange.buttons .button,
1507
+ .ui.basic.orange.button {
1508
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1509
+ color: rgba(0, 0, 0, 0.6) !important;
1510
+ }
1511
+ .ui.basic.orange.buttons .button:hover,
1512
+ .ui.basic.orange.button:hover {
1513
+ background: transparent !important;
1514
+ box-shadow: 0px 0px 0px 2px #e28560 inset !important;
1515
+ color: #e28560 !important;
1516
+ }
1517
+ .ui.basic.orange.buttons .button:active,
1518
+ .ui.basic.orange.button:active {
1519
+ box-shadow: 0px 0px 0px 2px #db6435 inset !important;
1520
+ color: #db6435 !important;
1521
+ }
1522
+ .ui.basic.orange.buttons .button.active,
1523
+ .ui.basic.orange.button.active {
1524
+ background: transparent !important;
1525
+ box-shadow: 0px 0px 0px 2px #db6435 inset !important;
1526
+ color: #db6435 !important;
1527
+ }
1528
+ .ui.buttons > .basic.orange.button:not(:first-child) {
1529
+ margin-left: -2px;
1235
1530
  }
1236
1531
 
1237
- /*--- Blue ---*/
1238
-
1239
- .ui.blue.buttons .button,
1240
- .ui.blue.button {
1241
- background-color: #6ECFF5;
1242
- color: #FFFFFF;
1532
+ /* Inverted */
1533
+ .ui.inverted.orange.buttons .button,
1534
+ .ui.inverted.orange.button {
1535
+ background-color: transparent;
1536
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1537
+ color: #ff851b;
1538
+ }
1539
+ .ui.inverted.orange.buttons .button:hover,
1540
+ .ui.inverted.orange.button:hover {
1541
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1542
+ background-color: #ff851b;
1543
+ color: #ffffff;
1544
+ }
1545
+ .ui.inverted.orange.buttons .button.active,
1546
+ .ui.inverted.orange.button.active {
1547
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1548
+ background-color: #ff851b;
1549
+ color: #ffffff;
1550
+ }
1551
+ .ui.inverted.orange.buttons .button:active,
1552
+ .ui.inverted.orange.button:active {
1553
+ box-shadow: 0px 0px 0px 2px #f67300 inset !important;
1554
+ background-color: #f67300;
1555
+ color: #ffffff;
1556
+ }
1557
+
1558
+ /* Inverted Basic */
1559
+ .ui.inverted.orange.basic.buttons .button,
1560
+ .ui.inverted.orange.buttons .basic.button,
1561
+ .ui.inverted.orange.basic.button {
1562
+ background-color: transparent;
1563
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1564
+ color: #ffffff !important;
1565
+ }
1566
+ .ui.inverted.orange.basic.buttons .button:hover,
1567
+ .ui.inverted.orange.buttons .basic.button:hover,
1568
+ .ui.inverted.orange.basic.button:hover {
1569
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1570
+ color: #ff851b !important;
1571
+ }
1572
+ .ui.inverted.orange.basic.buttons .button.active,
1573
+ .ui.inverted.orange.buttons .basic.button.active,
1574
+ .ui.inverted.orange.basic.button.active {
1575
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1576
+ color: #ff851b !important;
1577
+ }
1578
+ .ui.inverted.orange.basic.buttons .button:active,
1579
+ .ui.inverted.orange.buttons .basic.button:active,
1580
+ .ui.inverted.orange.basic.button:active {
1581
+ box-shadow: 0px 0px 0px 2px #f67300 inset !important;
1582
+ color: #ff851b !important;
1583
+ }
1584
+
1585
+ /*--- Pink ---*/
1586
+
1587
+ .ui.pink.buttons .button,
1588
+ .ui.pink.button {
1589
+ background-color: #d9499a;
1590
+ color: #ffffff;
1591
+ text-shadow: none;
1592
+ background-image: none;
1243
1593
  }
1244
-
1245
- .ui.blue.buttons .button:hover,
1246
- .ui.blue.button:hover,
1247
- .ui.blue.buttons .active.button,
1248
- .ui.blue.button.active {
1249
- background-color: #1AB8F3;
1250
- color: #FFFFFF;
1594
+ .ui.pink.button {
1595
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1596
+ }
1597
+ .ui.pink.buttons .button:hover,
1598
+ .ui.pink.button:hover {
1599
+ background-color: #dc56a1;
1600
+ color: #ffffff;
1601
+ text-shadow: none;
1602
+ }
1603
+ .ui.pink.buttons .button:active,
1604
+ .ui.pink.button:active {
1605
+ background-color: #d22c8a;
1606
+ color: #ffffff;
1607
+ text-shadow: none;
1608
+ }
1609
+ .ui.pink.buttons .button.active,
1610
+ .ui.pink.buttons .button.active:active,
1611
+ .ui.pink.button.active,
1612
+ .ui.pink.button .button.active:active {
1613
+ background-color: #d5348e;
1614
+ color: #ffffff;
1615
+ text-shadow: none;
1616
+ }
1617
+
1618
+ /* Basic */
1619
+ .ui.basic.pink.buttons .button,
1620
+ .ui.basic.pink.button {
1621
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1622
+ color: rgba(0, 0, 0, 0.6) !important;
1623
+ }
1624
+ .ui.basic.pink.buttons .button:hover,
1625
+ .ui.basic.pink.button:hover {
1626
+ background: transparent !important;
1627
+ box-shadow: 0px 0px 0px 2px #dc56a1 inset !important;
1628
+ color: #dc56a1 !important;
1629
+ }
1630
+ .ui.basic.pink.buttons .button:active,
1631
+ .ui.basic.pink.button:active {
1632
+ box-shadow: 0px 0px 0px 2px #d22c8a inset !important;
1633
+ color: #d22c8a !important;
1634
+ }
1635
+ .ui.basic.pink.buttons .button.active,
1636
+ .ui.basic.pink.button.active {
1637
+ background: transparent !important;
1638
+ box-shadow: 0px 0px 0px 2px #d22c8a inset !important;
1639
+ color: #d22c8a !important;
1640
+ }
1641
+ .ui.buttons > .basic.pink.button:not(:first-child) {
1642
+ margin-left: -2px;
1251
1643
  }
1252
1644
 
1253
- .ui.blue.buttons .button:active,
1254
- .ui.blue.button:active {
1255
- background-color: #0AA5DF;
1256
- color: #FFFFFF;
1645
+ /* Inverted */
1646
+ .ui.inverted.pink.buttons .button,
1647
+ .ui.inverted.pink.button {
1648
+ background-color: transparent;
1649
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1650
+ color: #ff8edf;
1651
+ }
1652
+ .ui.inverted.pink.buttons .button:hover,
1653
+ .ui.inverted.pink.button:hover {
1654
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1655
+ background-color: #ff8edf;
1656
+ color: #ffffff;
1657
+ }
1658
+ .ui.inverted.pink.buttons .button.active,
1659
+ .ui.inverted.pink.button.active {
1660
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1661
+ background-color: #ff8edf;
1662
+ color: #ffffff;
1663
+ }
1664
+ .ui.inverted.pink.buttons .button:active,
1665
+ .ui.inverted.pink.button:active {
1666
+ box-shadow: 0px 0px 0px 2px #ff6ad5 inset !important;
1667
+ background-color: #ff6ad5;
1668
+ color: #ffffff;
1669
+ }
1670
+
1671
+ /* Inverted Basic */
1672
+ .ui.inverted.pink.basic.buttons .button,
1673
+ .ui.inverted.pink.buttons .basic.button,
1674
+ .ui.inverted.pink.basic.button {
1675
+ background-color: transparent;
1676
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1677
+ color: #ffffff !important;
1678
+ }
1679
+ .ui.inverted.pink.basic.buttons .button:hover,
1680
+ .ui.inverted.pink.buttons .basic.button:hover,
1681
+ .ui.inverted.pink.basic.button:hover {
1682
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1683
+ color: #ff8edf !important;
1684
+ }
1685
+ .ui.inverted.pink.basic.buttons .button.active,
1686
+ .ui.inverted.pink.buttons .basic.button.active,
1687
+ .ui.inverted.pink.basic.button.active {
1688
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1689
+ color: #ff8edf !important;
1690
+ }
1691
+ .ui.inverted.pink.basic.buttons .button:active,
1692
+ .ui.inverted.pink.buttons .basic.button:active,
1693
+ .ui.inverted.pink.basic.button:active {
1694
+ box-shadow: 0px 0px 0px 2px #ff6ad5 inset !important;
1695
+ color: #ff8edf !important;
1257
1696
  }
1258
1697
 
1259
1698
  /*--- Purple ---*/
1260
1699
 
1261
1700
  .ui.purple.buttons .button,
1262
1701
  .ui.purple.button {
1263
- background-color: #564F8A;
1264
- color: #FFFFFF;
1702
+ background-color: #564f8a;
1703
+ color: #ffffff;
1704
+ text-shadow: none;
1705
+ background-image: none;
1706
+ }
1707
+ .ui.purple.button {
1708
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1265
1709
  }
1266
-
1267
1710
  .ui.purple.buttons .button:hover,
1268
- .ui.purple.button:hover,
1269
- .ui.purple.buttons .active.button,
1270
- .ui.purple.button.active {
1271
- background-color: #3E3773;
1272
- color: #FFFFFF;
1711
+ .ui.purple.button:hover {
1712
+ background-color: #5c5594;
1713
+ color: #ffffff;
1714
+ text-shadow: none;
1273
1715
  }
1274
-
1275
1716
  .ui.purple.buttons .button:active,
1276
1717
  .ui.purple.button:active {
1277
- background-color: #2E2860;
1278
- color: #FFFFFF;
1718
+ background-color: #484273;
1719
+ color: #ffffff;
1720
+ text-shadow: none;
1721
+ }
1722
+ .ui.purple.buttons .button.active,
1723
+ .ui.purple.buttons .button.active:active,
1724
+ .ui.purple.button.active,
1725
+ .ui.purple.button .button.active:active {
1726
+ background-color: #4c467a;
1727
+ color: #ffffff;
1728
+ text-shadow: none;
1729
+ }
1730
+
1731
+ /* Basic */
1732
+ .ui.basic.purple.buttons .button,
1733
+ .ui.basic.purple.button {
1734
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1735
+ color: rgba(0, 0, 0, 0.6) !important;
1736
+ }
1737
+ .ui.basic.purple.buttons .button:hover,
1738
+ .ui.basic.purple.button:hover {
1739
+ background: transparent !important;
1740
+ box-shadow: 0px 0px 0px 2px #5c5594 inset !important;
1741
+ color: #5c5594 !important;
1742
+ }
1743
+ .ui.basic.purple.buttons .button:active,
1744
+ .ui.basic.purple.button:active {
1745
+ box-shadow: 0px 0px 0px 2px #484273 inset !important;
1746
+ color: #484273 !important;
1747
+ }
1748
+ .ui.basic.purple.buttons .button.active,
1749
+ .ui.basic.purple.button.active {
1750
+ background: transparent !important;
1751
+ box-shadow: 0px 0px 0px 2px #484273 inset !important;
1752
+ color: #484273 !important;
1753
+ }
1754
+ .ui.buttons > .basic.purple.button:not(:first-child) {
1755
+ margin-left: -2px;
1756
+ }
1757
+
1758
+ /* Inverted */
1759
+ .ui.inverted.purple.buttons .button,
1760
+ .ui.inverted.purple.button {
1761
+ background-color: transparent;
1762
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1763
+ color: #cdc6ff;
1764
+ }
1765
+ .ui.inverted.purple.buttons .button:hover,
1766
+ .ui.inverted.purple.button:hover {
1767
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1768
+ background-color: #cdc6ff;
1769
+ color: #1b1c1d;
1770
+ }
1771
+ .ui.inverted.purple.buttons .button.active,
1772
+ .ui.inverted.purple.button.active {
1773
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1774
+ background-color: #cdc6ff;
1775
+ color: #1b1c1d;
1776
+ }
1777
+ .ui.inverted.purple.buttons .button:active,
1778
+ .ui.inverted.purple.button:active {
1779
+ box-shadow: 0px 0px 0px 2px #aea2ff inset !important;
1780
+ background-color: #aea2ff;
1781
+ color: #1b1c1d;
1782
+ }
1783
+
1784
+ /* Inverted Basic */
1785
+ .ui.inverted.purple.basic.buttons .button,
1786
+ .ui.inverted.purple.buttons .basic.button,
1787
+ .ui.inverted.purple.basic.button {
1788
+ background-color: transparent;
1789
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1790
+ color: #ffffff !important;
1791
+ }
1792
+ .ui.inverted.purple.basic.buttons .button:hover,
1793
+ .ui.inverted.purple.buttons .basic.button:hover,
1794
+ .ui.inverted.purple.basic.button:hover {
1795
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1796
+ color: #cdc6ff !important;
1797
+ }
1798
+ .ui.inverted.purple.basic.buttons .button.active,
1799
+ .ui.inverted.purple.buttons .basic.button.active,
1800
+ .ui.inverted.purple.basic.button.active {
1801
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1802
+ color: #cdc6ff !important;
1803
+ }
1804
+ .ui.inverted.purple.basic.buttons .button:active,
1805
+ .ui.inverted.purple.buttons .basic.button:active,
1806
+ .ui.inverted.purple.basic.button:active {
1807
+ box-shadow: 0px 0px 0px 2px #aea2ff inset !important;
1808
+ color: #cdc6ff !important;
1809
+ }
1810
+
1811
+ /*--- Red ---*/
1812
+
1813
+ .ui.red.buttons .button,
1814
+ .ui.red.button {
1815
+ background-color: #d95c5c;
1816
+ color: #ffffff;
1817
+ text-shadow: none;
1818
+ background-image: none;
1819
+ }
1820
+ .ui.red.button {
1821
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1822
+ }
1823
+ .ui.red.buttons .button:hover,
1824
+ .ui.red.button:hover {
1825
+ background-color: #dc6868;
1826
+ color: #ffffff;
1827
+ text-shadow: none;
1828
+ }
1829
+ .ui.red.buttons .button:active,
1830
+ .ui.red.button:active {
1831
+ background-color: #d23f3f;
1832
+ color: #ffffff;
1833
+ text-shadow: none;
1834
+ }
1835
+ .ui.red.buttons .button.active,
1836
+ .ui.red.buttons .button.active:active,
1837
+ .ui.red.button.active,
1838
+ .ui.red.button .button.active:active {
1839
+ background-color: #d44747;
1840
+ color: #ffffff;
1841
+ text-shadow: none;
1842
+ }
1843
+
1844
+ /* Basic */
1845
+ .ui.basic.red.buttons .button,
1846
+ .ui.basic.red.button {
1847
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1848
+ color: rgba(0, 0, 0, 0.6) !important;
1849
+ }
1850
+ .ui.basic.red.buttons .button:hover,
1851
+ .ui.basic.red.button:hover {
1852
+ background: transparent !important;
1853
+ box-shadow: 0px 0px 0px 2px #dc6868 inset !important;
1854
+ color: #dc6868 !important;
1855
+ }
1856
+ .ui.basic.red.buttons .button:active,
1857
+ .ui.basic.red.button:active {
1858
+ box-shadow: 0px 0px 0px 2px #d23f3f inset !important;
1859
+ color: #d23f3f !important;
1860
+ }
1861
+ .ui.basic.red.buttons .button.active,
1862
+ .ui.basic.red.button.active {
1863
+ background: transparent !important;
1864
+ box-shadow: 0px 0px 0px 2px #d23f3f inset !important;
1865
+ color: #d23f3f !important;
1866
+ }
1867
+ .ui.buttons > .basic.red.button:not(:first-child) {
1868
+ margin-left: -2px;
1869
+ }
1870
+
1871
+ /* Inverted */
1872
+ .ui.inverted.red.buttons .button,
1873
+ .ui.inverted.red.button {
1874
+ background-color: transparent;
1875
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1876
+ color: #ff695e;
1877
+ }
1878
+ .ui.inverted.red.buttons .button:hover,
1879
+ .ui.inverted.red.button:hover {
1880
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1881
+ background-color: #ff695e;
1882
+ color: #ffffff;
1883
+ }
1884
+ .ui.inverted.red.buttons .button.active,
1885
+ .ui.inverted.red.button.active {
1886
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1887
+ background-color: #ff695e;
1888
+ color: #ffffff;
1889
+ }
1890
+ .ui.inverted.red.buttons .button:active,
1891
+ .ui.inverted.red.button:active {
1892
+ box-shadow: 0px 0px 0px 2px #ff483a inset !important;
1893
+ background-color: #ff483a;
1894
+ color: #ffffff;
1895
+ }
1896
+
1897
+ /* Inverted Basic */
1898
+ .ui.inverted.red.basic.buttons .button,
1899
+ .ui.inverted.red.buttons .basic.button,
1900
+ .ui.inverted.red.basic.button {
1901
+ background-color: transparent;
1902
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1903
+ color: #ffffff !important;
1904
+ }
1905
+ .ui.inverted.red.basic.buttons .button:hover,
1906
+ .ui.inverted.red.buttons .basic.button:hover,
1907
+ .ui.inverted.red.basic.button:hover {
1908
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1909
+ color: #ff695e !important;
1910
+ }
1911
+ .ui.inverted.red.basic.buttons .button.active,
1912
+ .ui.inverted.red.buttons .basic.button.active,
1913
+ .ui.inverted.red.basic.button.active {
1914
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1915
+ color: #ff695e !important;
1916
+ }
1917
+ .ui.inverted.red.basic.buttons .button:active,
1918
+ .ui.inverted.red.buttons .basic.button:active,
1919
+ .ui.inverted.red.basic.button:active {
1920
+ box-shadow: 0px 0px 0px 2px #ff483a inset !important;
1921
+ color: #ff695e !important;
1279
1922
  }
1280
1923
 
1281
1924
  /*--- Teal ---*/
1282
1925
 
1283
1926
  .ui.teal.buttons .button,
1284
1927
  .ui.teal.button {
1285
- background-color: #00B5AD;
1286
- color: #FFFFFF;
1928
+ background-color: #00b5ad;
1929
+ color: #ffffff;
1930
+ text-shadow: none;
1931
+ background-image: none;
1932
+ }
1933
+ .ui.teal.button {
1934
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1287
1935
  }
1288
-
1289
1936
  .ui.teal.buttons .button:hover,
1290
- .ui.teal.button:hover,
1291
- .ui.teal.buttons .active.button,
1292
- .ui.teal.button.active {
1293
- background-color: #009A93;
1294
- color: #FFFFFF;
1937
+ .ui.teal.button:hover {
1938
+ background-color: #00c4bc;
1939
+ color: #ffffff;
1940
+ text-shadow: none;
1295
1941
  }
1296
-
1297
1942
  .ui.teal.buttons .button:active,
1298
1943
  .ui.teal.button:active {
1299
- background-color: #00847E;
1300
- color: #FFFFFF;
1944
+ background-color: #00918b;
1945
+ color: #ffffff;
1946
+ text-shadow: none;
1947
+ }
1948
+ .ui.teal.buttons .button.active,
1949
+ .ui.teal.buttons .button.active:active,
1950
+ .ui.teal.button.active,
1951
+ .ui.teal.button .button.active:active {
1952
+ background-color: #009c95;
1953
+ color: #ffffff;
1954
+ text-shadow: none;
1955
+ }
1956
+
1957
+ /* Basic */
1958
+ .ui.basic.teal.buttons .button,
1959
+ .ui.basic.teal.button {
1960
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1961
+ color: rgba(0, 0, 0, 0.6) !important;
1962
+ }
1963
+ .ui.basic.teal.buttons .button:hover,
1964
+ .ui.basic.teal.button:hover {
1965
+ background: transparent !important;
1966
+ box-shadow: 0px 0px 0px 2px #00c4bc inset !important;
1967
+ color: #00c4bc !important;
1968
+ }
1969
+ .ui.basic.teal.buttons .button:active,
1970
+ .ui.basic.teal.button:active {
1971
+ box-shadow: 0px 0px 0px 2px #00918b inset !important;
1972
+ color: #00918b !important;
1973
+ }
1974
+ .ui.basic.teal.buttons .button.active,
1975
+ .ui.basic.teal.button.active {
1976
+ background: transparent !important;
1977
+ box-shadow: 0px 0px 0px 2px #00918b inset !important;
1978
+ color: #00918b !important;
1979
+ }
1980
+ .ui.buttons > .basic.teal.button:not(:first-child) {
1981
+ margin-left: -2px;
1982
+ }
1983
+
1984
+ /* Inverted */
1985
+ .ui.inverted.teal.buttons .button,
1986
+ .ui.inverted.teal.button {
1987
+ background-color: transparent;
1988
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
1989
+ color: #6dffff;
1990
+ }
1991
+ .ui.inverted.teal.buttons .button:hover,
1992
+ .ui.inverted.teal.button:hover {
1993
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
1994
+ background-color: #6dffff;
1995
+ color: #1b1c1d;
1996
+ }
1997
+ .ui.inverted.teal.buttons .button.active,
1998
+ .ui.inverted.teal.button.active {
1999
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2000
+ background-color: #6dffff;
2001
+ color: #1b1c1d;
2002
+ }
2003
+ .ui.inverted.teal.buttons .button:active,
2004
+ .ui.inverted.teal.button:active {
2005
+ box-shadow: 0px 0px 0px 2px #49ffff inset !important;
2006
+ background-color: #49ffff;
2007
+ color: #1b1c1d;
2008
+ }
2009
+
2010
+ /* Inverted Basic */
2011
+ .ui.inverted.teal.basic.buttons .button,
2012
+ .ui.inverted.teal.buttons .basic.button,
2013
+ .ui.inverted.teal.basic.button {
2014
+ background-color: transparent;
2015
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2016
+ color: #ffffff !important;
2017
+ }
2018
+ .ui.inverted.teal.basic.buttons .button:hover,
2019
+ .ui.inverted.teal.buttons .basic.button:hover,
2020
+ .ui.inverted.teal.basic.button:hover {
2021
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2022
+ color: #6dffff !important;
2023
+ }
2024
+ .ui.inverted.teal.basic.buttons .button.active,
2025
+ .ui.inverted.teal.buttons .basic.button.active,
2026
+ .ui.inverted.teal.basic.button.active {
2027
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2028
+ color: #6dffff !important;
2029
+ }
2030
+ .ui.inverted.teal.basic.buttons .button:active,
2031
+ .ui.inverted.teal.buttons .basic.button:active,
2032
+ .ui.inverted.teal.basic.button:active {
2033
+ box-shadow: 0px 0px 0px 2px #49ffff inset !important;
2034
+ color: #6dffff !important;
2035
+ }
2036
+
2037
+ /*--- Yellow ---*/
2038
+
2039
+ .ui.yellow.buttons .button,
2040
+ .ui.yellow.button {
2041
+ background-color: #f2c61f;
2042
+ color: #ffffff;
2043
+ text-shadow: none;
2044
+ background-image: none;
2045
+ }
2046
+ .ui.yellow.button {
2047
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2048
+ }
2049
+ .ui.yellow.buttons .button:hover,
2050
+ .ui.yellow.button:hover {
2051
+ background-color: #f3ca2d;
2052
+ color: #ffffff;
2053
+ text-shadow: none;
2054
+ }
2055
+ .ui.yellow.buttons .button:active,
2056
+ .ui.yellow.button:active {
2057
+ background-color: #e0b40d;
2058
+ color: #ffffff;
2059
+ text-shadow: none;
2060
+ }
2061
+ .ui.yellow.buttons .button.active,
2062
+ .ui.yellow.buttons .button.active:active,
2063
+ .ui.yellow.button.active,
2064
+ .ui.yellow.button .button.active:active {
2065
+ background-color: #eabc0e;
2066
+ color: #ffffff;
2067
+ text-shadow: none;
2068
+ }
2069
+
2070
+ /* Basic */
2071
+ .ui.basic.yellow.buttons .button,
2072
+ .ui.basic.yellow.button {
2073
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
2074
+ color: rgba(0, 0, 0, 0.6) !important;
2075
+ }
2076
+ .ui.basic.yellow.buttons .button:hover,
2077
+ .ui.basic.yellow.button:hover {
2078
+ background: transparent !important;
2079
+ box-shadow: 0px 0px 0px 2px #f3ca2d inset !important;
2080
+ color: #f3ca2d !important;
2081
+ }
2082
+ .ui.basic.yellow.buttons .button:active,
2083
+ .ui.basic.yellow.button:active {
2084
+ box-shadow: 0px 0px 0px 2px #e0b40d inset !important;
2085
+ color: #e0b40d !important;
2086
+ }
2087
+ .ui.basic.yellow.buttons .button.active,
2088
+ .ui.basic.yellow.button.active {
2089
+ background: transparent !important;
2090
+ box-shadow: 0px 0px 0px 2px #e0b40d inset !important;
2091
+ color: #e0b40d !important;
2092
+ }
2093
+ .ui.buttons > .basic.yellow.button:not(:first-child) {
2094
+ margin-left: -2px;
2095
+ }
2096
+
2097
+ /* Inverted */
2098
+ .ui.inverted.yellow.buttons .button,
2099
+ .ui.inverted.yellow.button {
2100
+ background-color: transparent;
2101
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2102
+ color: #ffe21f;
2103
+ }
2104
+ .ui.inverted.yellow.buttons .button:hover,
2105
+ .ui.inverted.yellow.button:hover {
2106
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2107
+ background-color: #ffe21f;
2108
+ color: #1b1c1d;
2109
+ }
2110
+ .ui.inverted.yellow.buttons .button.active,
2111
+ .ui.inverted.yellow.button.active {
2112
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2113
+ background-color: #ffe21f;
2114
+ color: #1b1c1d;
2115
+ }
2116
+ .ui.inverted.yellow.buttons .button:active,
2117
+ .ui.inverted.yellow.button:active {
2118
+ box-shadow: 0px 0px 0px 2px #fada00 inset !important;
2119
+ background-color: #fada00;
2120
+ color: #1b1c1d;
2121
+ }
2122
+
2123
+ /* Inverted Basic */
2124
+ .ui.inverted.yellow.basic.buttons .button,
2125
+ .ui.inverted.yellow.buttons .basic.button,
2126
+ .ui.inverted.yellow.basic.button {
2127
+ background-color: transparent;
2128
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2129
+ color: #ffffff !important;
2130
+ }
2131
+ .ui.inverted.yellow.basic.buttons .button:hover,
2132
+ .ui.inverted.yellow.buttons .basic.button:hover,
2133
+ .ui.inverted.yellow.basic.button:hover {
2134
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2135
+ color: #ffe21f !important;
2136
+ }
2137
+ .ui.inverted.yellow.basic.buttons .button.active,
2138
+ .ui.inverted.yellow.buttons .basic.button.active,
2139
+ .ui.inverted.yellow.basic.button.active {
2140
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2141
+ color: #ffe21f !important;
2142
+ }
2143
+ .ui.inverted.yellow.basic.buttons .button:active,
2144
+ .ui.inverted.yellow.buttons .basic.button:active,
2145
+ .ui.inverted.yellow.basic.button:active {
2146
+ box-shadow: 0px 0px 0px 2px #fada00 inset !important;
2147
+ color: #ffe21f !important;
2148
+ }
2149
+
2150
+ /*-------------------
2151
+ Primary
2152
+ --------------------*/
2153
+
2154
+ .ui.primary.buttons .button,
2155
+ .ui.primary.button {
2156
+ background-color: #3b83c0;
2157
+ color: #ffffff;
2158
+ text-shadow: none;
2159
+ background-image: none;
2160
+ }
2161
+ .ui.primary.button {
2162
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2163
+ }
2164
+ .ui.primary.buttons .button:hover,
2165
+ .ui.primary.button:hover {
2166
+ background-color: #458ac6;
2167
+ color: #ffffff;
2168
+ text-shadow: none;
2169
+ }
2170
+ .ui.primary.buttons .button:active,
2171
+ .ui.primary.button:active {
2172
+ background-color: #3370a5;
2173
+ color: #ffffff;
2174
+ text-shadow: none;
2175
+ }
2176
+ .ui.primary.buttons .active.button,
2177
+ .ui.primary.button.active {
2178
+ background-color: #3576ac;
2179
+ color: #ffffff;
2180
+ text-shadow: none;
2181
+ }
2182
+
2183
+ /*-------------------
2184
+ Secondary
2185
+ --------------------*/
2186
+
2187
+ .ui.secondary.buttons .button,
2188
+ .ui.secondary.button {
2189
+ background-color: #1b1c1d;
2190
+ color: #ffffff;
2191
+ text-shadow: none;
2192
+ background-image: none;
2193
+ }
2194
+ .ui.secondary.button {
2195
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2196
+ }
2197
+ .ui.secondary.buttons .button:hover,
2198
+ .ui.secondary.button:hover {
2199
+ background-color: #222425;
2200
+ color: #ffffff;
2201
+ text-shadow: none;
2202
+ }
2203
+ .ui.secondary.buttons .button:active,
2204
+ .ui.secondary.button:active {
2205
+ background-color: #0a0a0b;
2206
+ color: #ffffff;
2207
+ text-shadow: none;
2208
+ }
2209
+ .ui.secondary.buttons .active.button,
2210
+ .ui.secondary.button.active {
2211
+ background-color: #0f0f10;
2212
+ color: #ffffff;
2213
+ text-shadow: none;
1301
2214
  }
1302
2215
 
1303
2216
  /*---------------
@@ -1306,22 +2219,35 @@
1306
2219
 
1307
2220
  .ui.positive.buttons .button,
1308
2221
  .ui.positive.button {
1309
- background-color: #5BBD72 !important;
1310
- color: #FFFFFF;
2222
+ background-color: #5bbd72 !important;
2223
+ color: #ffffff;
2224
+ text-shadow: none;
2225
+ background-image: none;
2226
+ }
2227
+ .ui.positive.button {
2228
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1311
2229
  }
1312
-
1313
2230
  .ui.positive.buttons .button:hover,
1314
2231
  .ui.positive.button:hover,
1315
2232
  .ui.positive.buttons .active.button,
1316
2233
  .ui.positive.button.active {
1317
- background-color: #58CB73 !important;
1318
- color: #FFFFFF;
2234
+ background-color: #66c17b !important;
2235
+ color: #ffffff;
2236
+ text-shadow: none;
1319
2237
  }
1320
-
1321
2238
  .ui.positive.buttons .button:active,
1322
2239
  .ui.positive.button:active {
1323
- background-color: #4CB164 !important;
1324
- color: #FFFFFF;
2240
+ background-color: #46ae5f !important;
2241
+ color: #ffffff;
2242
+ text-shadow: none;
2243
+ }
2244
+ .ui.positive.buttons .button.active,
2245
+ .ui.positive.buttons .button.active:active,
2246
+ .ui.positive.button.active,
2247
+ .ui.positive.button .button.active:active {
2248
+ background-color: #49b562;
2249
+ color: #ffffff;
2250
+ text-shadow: none;
1325
2251
  }
1326
2252
 
1327
2253
  /*---------------
@@ -1330,24 +2256,38 @@
1330
2256
 
1331
2257
  .ui.negative.buttons .button,
1332
2258
  .ui.negative.button {
1333
- background-color: #D95C5C !important;
1334
- color: #FFFFFF;
2259
+ background-color: #d95c5c !important;
2260
+ color: #ffffff;
2261
+ text-shadow: none;
2262
+ background-image: none;
2263
+ }
2264
+ .ui.negative.button {
2265
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1335
2266
  }
1336
-
1337
2267
  .ui.negative.buttons .button:hover,
1338
2268
  .ui.negative.button:hover,
1339
2269
  .ui.negative.buttons .active.button,
1340
2270
  .ui.negative.button.active {
1341
- background-color: #E75859 !important;
1342
- color: #FFFFFF;
2271
+ background-color: #dc6868 !important;
2272
+ color: #ffffff;
2273
+ text-shadow: none;
1343
2274
  }
1344
-
1345
2275
  .ui.negative.buttons .button:active,
1346
2276
  .ui.negative.button:active {
1347
- background-color: #D24B4C !important;
1348
- color: #FFFFFF;
2277
+ background-color: #d23f3f !important;
2278
+ color: #ffffff;
2279
+ text-shadow: none;
2280
+ }
2281
+ .ui.negative.buttons .button.active,
2282
+ .ui.negative.buttons .button.active:active,
2283
+ .ui.negative.button.active,
2284
+ .ui.negative.button .button.active:active {
2285
+ background-color: #d44747;
2286
+ color: #ffffff;
2287
+ text-shadow: none;
1349
2288
  }
1350
2289
 
2290
+
1351
2291
  /*******************************
1352
2292
  Groups
1353
2293
  *******************************/
@@ -1355,8 +2295,12 @@
1355
2295
  .ui.buttons {
1356
2296
  display: inline-block;
1357
2297
  vertical-align: middle;
2298
+ margin: 0em 0.25em 0em 0em;
2299
+ }
2300
+ .ui.buttons > .button:hover,
2301
+ .ui.buttons > .button.active {
2302
+ position: relative;
1358
2303
  }
1359
-
1360
2304
  .ui.buttons:after {
1361
2305
  content: ".";
1362
2306
  display: block;
@@ -1364,50 +2308,50 @@
1364
2308
  clear: both;
1365
2309
  visibility: hidden;
1366
2310
  }
1367
-
1368
2311
  .ui.buttons .button:first-child {
1369
2312
  border-left: none;
1370
2313
  }
1371
-
2314
+ .ui.buttons:not(.basic):not(.inverted) {
2315
+ box-shadow: none;
2316
+ }
2317
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
2318
+ .ui.buttons:not(.basic):not(.inverted) > .button {
2319
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2320
+ }
1372
2321
  .ui.buttons .button {
2322
+ margin: 0em;
1373
2323
  float: left;
1374
2324
  border-radius: 0em;
2325
+ margin: 0px 0px 0px 0px;
1375
2326
  }
1376
-
1377
2327
  .ui.buttons .button:first-child {
1378
2328
  margin-left: 0em;
1379
- border-top-left-radius: 0.25em;
1380
- border-bottom-left-radius: 0.25em;
2329
+ border-top-left-radius: 0.2857rem;
2330
+ border-bottom-left-radius: 0.2857rem;
1381
2331
  }
1382
-
1383
2332
  .ui.buttons .button:last-child {
1384
- border-top-right-radius: 0.25em;
1385
- border-bottom-right-radius: 0.25em;
2333
+ border-top-right-radius: 0.2857rem;
2334
+ border-bottom-right-radius: 0.2857rem;
1386
2335
  }
1387
2336
 
1388
2337
  /* Vertical Style */
1389
-
1390
2338
  .ui.vertical.buttons {
1391
2339
  display: inline-block;
1392
2340
  }
1393
-
1394
2341
  .ui.vertical.buttons .button {
1395
2342
  display: block;
1396
2343
  float: none;
1397
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
1398
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
2344
+ margin: 0px 0px 0px 0px;
2345
+ box-shadow: none;
1399
2346
  }
1400
-
1401
2347
  .ui.vertical.buttons .button:first-child,
1402
2348
  .ui.vertical.buttons .mini.button:first-child,
1403
2349
  .ui.vertical.buttons .tiny.button:first-child,
1404
2350
  .ui.vertical.buttons .small.button:first-child,
1405
2351
  .ui.vertical.buttons .massive.button:first-child,
1406
2352
  .ui.vertical.buttons .huge.button:first-child {
1407
- margin-top: 0px;
1408
- border-radius: 0.25em 0.25em 0px 0px;
2353
+ border-radius: 0.2857rem 0.2857rem 0px 0px;
1409
2354
  }
1410
-
1411
2355
  .ui.vertical.buttons .button:last-child,
1412
2356
  .ui.vertical.buttons .mini.button:last-child,
1413
2357
  .ui.vertical.buttons .tiny.button:last-child,
@@ -1415,5 +2359,18 @@
1415
2359
  .ui.vertical.buttons .massive.button:last-child,
1416
2360
  .ui.vertical.buttons .huge.button:last-child,
1417
2361
  .ui.vertical.buttons .gigantic.button:last-child {
1418
- border-radius: 0px 0px 0.25em 0.25em;
1419
- }
2362
+ margin-bottom: 0px;
2363
+ border-radius: 0px 0px 0.2857rem 0.2857rem;
2364
+ }
2365
+
2366
+
2367
+ /*******************************
2368
+ Theme Overrides
2369
+ *******************************/
2370
+
2371
+
2372
+
2373
+ /*******************************
2374
+ Site Overrides
2375
+ *******************************/
2376
+