active_frontend 3.0.4 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_frontend/version.rb +1 -1
  3. data/vendor/assets/javascripts/chart.js +7 -7
  4. data/vendor/assets/stylesheets/ad.scss +2 -1
  5. data/vendor/assets/stylesheets/alert.scss +7 -29
  6. data/vendor/assets/stylesheets/aside.scss +8 -8
  7. data/vendor/assets/stylesheets/breadcrumb.scss +4 -4
  8. data/vendor/assets/stylesheets/button.scss +87 -47
  9. data/vendor/assets/stylesheets/code.scss +43 -37
  10. data/vendor/assets/stylesheets/datepicker.scss +11 -11
  11. data/vendor/assets/stylesheets/dropdown.scss +12 -12
  12. data/vendor/assets/stylesheets/footer.scss +10 -6
  13. data/vendor/assets/stylesheets/form.scss +33 -30
  14. data/vendor/assets/stylesheets/header.scss +32 -26
  15. data/vendor/assets/stylesheets/image.scss +1 -1
  16. data/vendor/assets/stylesheets/label_and_badge.scss +19 -19
  17. data/vendor/assets/stylesheets/link.scss +6 -6
  18. data/vendor/assets/stylesheets/list.scss +4 -4
  19. data/vendor/assets/stylesheets/loader.scss +4 -4
  20. data/vendor/assets/stylesheets/map.scss +2 -1
  21. data/vendor/assets/stylesheets/modal.scss +8 -8
  22. data/vendor/assets/stylesheets/nav_and_tab.scss +26 -25
  23. data/vendor/assets/stylesheets/navbar.scss +7 -4
  24. data/vendor/assets/stylesheets/pagination.scss +4 -4
  25. data/vendor/assets/stylesheets/panel.scss +14 -13
  26. data/vendor/assets/stylesheets/placeholder.scss +5 -5
  27. data/vendor/assets/stylesheets/popover.scss +6 -6
  28. data/vendor/assets/stylesheets/progress.scss +2 -2
  29. data/vendor/assets/stylesheets/reset.scss +2 -2
  30. data/vendor/assets/stylesheets/sidebar.scss +6 -5
  31. data/vendor/assets/stylesheets/spinner.scss +29 -29
  32. data/vendor/assets/stylesheets/swoggle.scss +13 -13
  33. data/vendor/assets/stylesheets/table.scss +17 -13
  34. data/vendor/assets/stylesheets/timepicker.scss +5 -5
  35. data/vendor/assets/stylesheets/tooltip.scss +5 -5
  36. data/vendor/assets/stylesheets/trunk.scss +9 -8
  37. data/vendor/assets/stylesheets/typeahead.scss +1 -1
  38. data/vendor/assets/stylesheets/typography.scss +10 -10
  39. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 443a90943d74f427ae37c96e8c0f21adacd712b8
4
- data.tar.gz: fc0e4c55023c9d99fa5fab4207d71333c9cbbf90
3
+ metadata.gz: 08cd7d297346a56c56cbdfe4205b99694240cbd3
4
+ data.tar.gz: 96ea58181c59cbc44e8ded0c89343d0e1462caad
5
5
  SHA512:
6
- metadata.gz: 1515d9b86d87c013cbd0ed9a217cffdd6f0800868f63400e70b841ed9ec6ff8edfaf9ecdcd15f9343264c2006d4075b647f18a38d8da07c22eb66ac0c7d6c961
7
- data.tar.gz: a89c9a906803441b9695695af6e05e13a2586917b9d5e87b2ad659e738e78154afb415d2291eb302b84964e09851b5ef4529327a6d9b9858613987d3188d415e
6
+ metadata.gz: d7533130b43aef9618d72f8977044f4fead9e794b2289df1baf2bcde1b90f003ec00cc3d6c7e9cb79cc69019c5b310a1cccbecad815e5cc64c0b18a195828bf7
7
+ data.tar.gz: 7561a473f8c5d51a58c7e7ac1c12876bd0d6a3eac607835cc00ddbf0dd41317e759a4146a5519dc4d541ffc1ec975bd1be625c28897c62bf441e1a6e0d713cb0
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "3.0.4"
2
+ VERSION = "4.0.0"
3
3
  end
@@ -49,7 +49,7 @@
49
49
  scaleStartValue: null,
50
50
 
51
51
  // String - Colour of the scale line
52
- scaleLineColor: "rgba(243,243,243,1)",
52
+ scaleLineColor: "rgba(230,237,242,1)",
53
53
 
54
54
  // Number - Pixel width of the scale line
55
55
  scaleLineWidth: 1,
@@ -76,7 +76,7 @@
76
76
  scaleFontStyle: "bold",
77
77
 
78
78
  // String - Scale label font colour
79
- scaleFontColor: "rgba(34,34,34,1)",
79
+ scaleFontColor: "rgba(42,44,48,1)",
80
80
 
81
81
  // Boolean - whether or not the chart should be responsive and resize when the browser does.
82
82
  responsive: true,
@@ -91,7 +91,7 @@
91
91
  tooltipEvents: ["mousemove", "touchstart", "touchmove", "mouseout"],
92
92
 
93
93
  // String - Tooltip background colour
94
- tooltipFillColor: "rgba(34,34,34,1)",
94
+ tooltipFillColor: "rgba(42,44,48,1)",
95
95
 
96
96
  // String - Tooltip label font declaration for the scale label
97
97
  tooltipFontFamily: "'Gotham', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
@@ -1910,7 +1910,7 @@
1910
1910
  scaleShowGridLines : true,
1911
1911
 
1912
1912
  //String - Colour of the grid lines
1913
- scaleGridLineColor : "rgba(243,243,243,1)",
1913
+ scaleGridLineColor : "rgba(230,237,242,1)",
1914
1914
 
1915
1915
  //Number - Width of the grid lines
1916
1916
  scaleGridLineWidth : 1,
@@ -2387,7 +2387,7 @@
2387
2387
  scaleShowGridLines : true,
2388
2388
 
2389
2389
  //String - Colour of the grid lines
2390
- scaleGridLineColor : "rgba(243,243,243,1)",
2390
+ scaleGridLineColor : "rgba(230,237,242,1)",
2391
2391
 
2392
2392
  //Number - Width of the grid lines
2393
2393
  scaleGridLineWidth : 1,
@@ -2992,7 +2992,7 @@
2992
2992
  scaleBeginAtZero : true,
2993
2993
 
2994
2994
  //String - Colour of the angle line
2995
- angleLineColor : "rgba(243,243,243,1)",
2995
+ angleLineColor : "rgba(230,237,242,1)",
2996
2996
 
2997
2997
  //Number - Pixel width of the angle line
2998
2998
  angleLineWidth : 1,
@@ -3007,7 +3007,7 @@
3007
3007
  pointLabelFontSize : 11,
3008
3008
 
3009
3009
  //String - Point label font colour
3010
- pointLabelFontColor : "rgba(34,34,34,1)",
3010
+ pointLabelFontColor : "rgba(42,44,48,1)",
3011
3011
 
3012
3012
  //Boolean - Whether to show a dot for each point
3013
3013
  pointDot : true,
@@ -5,7 +5,8 @@
5
5
  /* # Ad
6
6
  ================================================== */
7
7
  .ad {
8
- background: rgba(249,249,249,1);
8
+ background: rgba(245,248,250,1);
9
+ border: 2px solid rgba(235,242,247,1);
9
10
  height: 220px;
10
11
  width: 220px;
11
12
  }
@@ -13,9 +13,8 @@
13
13
  z-index: 1040;
14
14
  }
15
15
  .alert {
16
- background: rgba(249,249,249,1);
17
- border-bottom: 2px solid rgba(0,0,0,0.02);
18
- -moz-box-sizing: border-box;
16
+ background: rgba(85,94,113,1);
17
+ border-bottom: 2px solid rgba(0,0,0,0.1);
19
18
  box-sizing: border-box;
20
19
  color: rgba(255,255,255,1);
21
20
  display: block;
@@ -30,7 +29,7 @@
30
29
  border-bottom: 1px dotted rgba(255,255,255,1);
31
30
  font-style: italic;
32
31
  }
33
- .alert-lined { border: 1px solid rgba(62,77,87,1); }
32
+ .alert-lined { border: 2px solid rgba(0,0,0,0.1); }
34
33
  .alert-close {
35
34
  border: 0 !important;
36
35
  color: rgba(255,255,255,1) !important;
@@ -41,33 +40,12 @@
41
40
 
42
41
  /* # Colors
43
42
  ================================================== */
44
- .alert-gray,
45
- .alert-notice,
46
- .alert.alert-gray .alert-close,
47
- .alert.alert-notice .alert-close { color: rgba(34,34,34,1) !important; }
48
- .alert.alert-gray > a,
49
- .alert.alert-notice > a {
50
- color: rgba(34,34,34,1);
51
- border-bottom-color: rgba(34,34,34,1);
52
- }
53
43
  .alert-green,
54
- .alert-success {
55
- background: rgba(27,192,109,1);
56
- border-color: rgba(7,172,89,1);
57
- }
44
+ .alert-success { background: rgba(27,192,109,1); }
58
45
  .alert-orange,
59
- .alert-warning {
60
- background: rgba(166,165,71,1);
61
- border-color: rgba(146,145,51,1);
62
- }
46
+ .alert-warning { background: rgba(255,154,46,1); }
63
47
  .alert-red,
64
48
  .alert-error,
65
- .alert-alert {
66
- background: rgba(225,80,80,1);
67
- border-color: rgba(205,60,60,1);
68
- }
49
+ .alert-alert { background: rgba(225,80,80,1); }
69
50
  .alert-black,
70
- .alert-system {
71
- background: rgba(54,54,54,1);
72
- border-color: rgba(34,34,34,1);
73
- }
51
+ .alert-system { background: rgba(42,44,48,1); }
@@ -8,7 +8,7 @@
8
8
  .aside {
9
9
  background-clip: padding-box;
10
10
  background: rgba(255,255,255,1);
11
- box-shadow: 0 0 3px rgba(0,0,0,0.25);
11
+ box-shadow: 0 0 3px rgba(0,0,0,0.5);
12
12
  display: none;
13
13
  height: 100%;
14
14
  left: initial;
@@ -45,10 +45,10 @@
45
45
  right: initial;
46
46
  }
47
47
  .aside-header {
48
- background: rgba(24,24,24,1);
49
- border-bottom: 1px solid rgba(4,4,4,1);
48
+ background: rgba(91,146,250,1);
49
+ border-bottom: 4px solid rgba(86,131,235,1);
50
50
  margin: 0;
51
- padding: 21px 0px 22px 0px;
51
+ padding: 21px 0px 19px 0px;
52
52
  position: absolute;
53
53
  text-transform: uppercase;
54
54
  text-align: center;
@@ -77,7 +77,7 @@
77
77
  .aside-body p:last-child { margin-bottom: 0; }
78
78
  .aside-footer {
79
79
  background: rgba(255,255,255,1);
80
- border-top: 1px solid rgba(243,243,243,1);
80
+ border-top: 1px solid rgba(230,237,242,1);
81
81
  bottom: 0;
82
82
  margin-bottom: 0;
83
83
  padding: 0;
@@ -95,7 +95,7 @@ input.aside-footer-btn {
95
95
  border: 0;
96
96
  -moz-box-sizing: border-box;
97
97
  box-sizing: border-box;
98
- color: rgba(34,34,34,1) !important;
98
+ color: rgba(42,44,48,1) !important;
99
99
  cursor: pointer;
100
100
  float: left;
101
101
  -webkit-font-smoothing: antialiased;
@@ -115,13 +115,13 @@ input.aside-footer-btn {
115
115
  .aside-footer-btn[disabled],
116
116
  button.aside-footer-btn[disabled],
117
117
  input.aside-footer-btn[disabled] {
118
- color: rgba(200,200,200,1) !important;
118
+ color: rgba(136,153,166,1) !important;
119
119
  cursor: not-allowed;
120
120
  }
121
121
  .aside-footer-btn-group > .aside-footer-btn,
122
122
  .aside-footer-btn-group > button.aside-footer-btn
123
123
  .aside-footer-btn-group > input.aside-footer-btn {
124
- border-right: 1px solid rgba(243,243,243,1);
124
+ border-right: 1px solid rgba(230,237,242,1);
125
125
  width: 50%;
126
126
  }
127
127
  .aside-footer-btn-group > .aside-footer-btn:last-child,
@@ -14,10 +14,10 @@
14
14
  font-weight: bold;
15
15
  font-size: 13px;
16
16
  }
17
- .breadcrumb > li > a { color: rgba(34,34,34,1); }
18
- .breadcrumb > li > a:hover { color: rgba(27,192,109,1); }
17
+ .breadcrumb > li > a { color: rgba(42,44,48,1); }
18
+ .breadcrumb > li > a:hover { color: rgba(91,146,250,1); }
19
19
  .breadcrumb > li > .divider {
20
- color: rgba(34,34,34,1);
20
+ color: rgba(42,44,48,1);
21
21
  padding: 0 5px;
22
22
  }
23
- .breadcrumb > .active { color: rgba(27,192,109,1); }
23
+ .breadcrumb > .active { color: rgba(91,146,250,1); }
@@ -17,12 +17,12 @@
17
17
  .btn {
18
18
  -webkit-appearance: none;
19
19
  -moz-appearance: none;
20
- background: rgba(249,249,249,1);
21
- border: 2px solid rgba(249,249,249,1);
20
+ background: rgba(245,248,250,1);
21
+ border: 1px solid rgba(245,248,250,1);
22
22
  border-radius: 0;
23
23
  -moz-box-sizing: border-box;
24
24
  box-sizing: border-box;
25
- color: rgba(34,34,34,1);
25
+ color: rgba(42,44,48,1);
26
26
  cursor: pointer;
27
27
  display: inline-block;
28
28
  -webkit-font-smoothing: antialiased;
@@ -48,7 +48,8 @@
48
48
  .btn[disabled],
49
49
  .btn[disabled]:hover,
50
50
  .open > .dropdown-toggle.btn {
51
- background: rgba(253,253,253,1);
51
+ background: rgba(240,243,245,1);
52
+ border-color: rgba(240,243,245,1);
52
53
  text-decoration: none;
53
54
  }
54
55
  .btn[disabled],
@@ -66,7 +67,7 @@
66
67
  ================================================== */
67
68
  .btn-large { padding: 19px 30px; }
68
69
  .btn-medium { padding: 9px 15px 10px 15px; }
69
- .btn-small { padding: 7px 15px 8px 15px; }
70
+ .btn-small { padding: 8px 15px; }
70
71
  .btn-mini {
71
72
  font-size: 9px;
72
73
  line-height: 9px;
@@ -87,8 +88,8 @@ input.btn-block {
87
88
  /* # Colors
88
89
  ================================================== */
89
90
  .btn-black {
90
- background: rgba(34,34,34,1);
91
- border-color: rgba(34,34,34,1);
91
+ background: rgba(42,44,48,1);
92
+ border-color: rgba(42,44,48,1);
92
93
  color: rgba(255,255,255,1) !important;
93
94
  }
94
95
  .btn-black[disabled],
@@ -97,10 +98,13 @@ input.btn-block {
97
98
  .btn-black.active,
98
99
  .btn-black:hover,
99
100
  .btn-black:focus,
100
- .open > .dropdown-toggle.btn.btn-black { background: rgba(54,54,54,1); }
101
+ .open > .dropdown-toggle.btn.btn-black {
102
+ background: rgba(32,34,38,1);
103
+ border-color: rgba(32,34,38,1);
104
+ }
101
105
  .btn-blue {
102
- background: rgba(76,143,202,1);
103
- border-color: rgba(76,143,202,1);
106
+ background: rgba(91,146,250,1);
107
+ border-color: rgba(91,146,250,1);
104
108
  color: rgba(255,255,255,1) !important;
105
109
  }
106
110
  .btn-blue[disabled],
@@ -109,7 +113,10 @@ input.btn-block {
109
113
  .btn-blue.active,
110
114
  .btn-blue:hover,
111
115
  .btn-blue:focus,
112
- .open > .dropdown-toggle.btn.btn-blue { background: rgba(96,163,222,1); }
116
+ .open > .dropdown-toggle.btn.btn-blue {
117
+ background: rgba(81,136,240,1);
118
+ border-color: rgba(81,136,240,1);
119
+ }
113
120
  .btn-green {
114
121
  background: rgba(27,192,109,1);
115
122
  border-color: rgba(27,192,109,1);
@@ -121,7 +128,10 @@ input.btn-block {
121
128
  .btn-green.active,
122
129
  .btn-green:hover,
123
130
  .btn-green:focus,
124
- .open > .dropdown-toggle.btn.btn-green { background: rgba(47,212,129,1); }
131
+ .open > .dropdown-toggle.btn.btn-green {
132
+ background: rgba(17,182,99,1);
133
+ border-color: rgba(17,182,99,1);
134
+ }
125
135
  .btn-orange {
126
136
  background: rgba(255,154,46,1);
127
137
  border-color: rgba(255,154,46,1);
@@ -133,10 +143,13 @@ input.btn-block {
133
143
  .btn-orange.active,
134
144
  .btn-orange:hover,
135
145
  .btn-orange:focus,
136
- .open > .dropdown-toggle.btn.btn-orange { background: rgba(255,174,66,1); }
146
+ .open > .dropdown-toggle.btn.btn-orange {
147
+ background: rgba(245,144,36,1);
148
+ border-color: rgba(245,144,36,1);
149
+ }
137
150
  .btn-purple {
138
- background: rgba(110,115,136,1);
139
- border-color: rgba(110,115,136,1);
151
+ background: rgba(81,68,95,1);
152
+ border-color: rgba(81,68,95,1);
140
153
  color: rgba(255,255,255,1) !important;
141
154
  }
142
155
  .btn-purple[disabled],
@@ -145,7 +158,10 @@ input.btn-block {
145
158
  .btn-purple.active,
146
159
  .btn-purple:hover,
147
160
  .btn-purple:focus,
148
- .open > .dropdown-toggle.btn.btn-purple { background: rgba(130,135,156,1); }
161
+ .open > .dropdown-toggle.btn.btn-purple {
162
+ background: rgba(71,58,85,1);
163
+ border-color: rgba(71,58,85,1);
164
+ }
149
165
  .btn-red {
150
166
  background: rgba(225,80,80,1);
151
167
  border-color: rgba(225,80,80,1);
@@ -157,10 +173,13 @@ input.btn-block {
157
173
  .btn-red.active,
158
174
  .btn-red:hover,
159
175
  .btn-red:focus,
160
- .open > .dropdown-toggle.btn.btn-red { background: rgba(255,99,88,1); }
176
+ .open > .dropdown-toggle.btn.btn-red {
177
+ background: rgba(215,70,70,1);
178
+ border-color: rgba(215,70,70,1);
179
+ }
161
180
  .btn-smoke {
162
- background: rgba(100,100,100,1);
163
- border-color: rgba(100,100,100,1);
181
+ background: rgba(85,94,113,1);
182
+ border-color: rgba(85,94,113,1);
164
183
  color: rgba(255,255,255,1) !important;
165
184
  }
166
185
  .btn-smoke[disabled],
@@ -169,15 +188,27 @@ input.btn-block {
169
188
  .btn-smoke.active,
170
189
  .btn-smoke:hover,
171
190
  .btn-smoke:focus,
172
- .open > .dropdown-toggle.btn.btn-smoke { background: rgba(120,120,120,1); }
191
+ .open > .dropdown-toggle.btn.btn-smoke {
192
+ background: rgba(75,84,103,1);
193
+ border-color: rgba(75,84,103,1);
194
+ }
173
195
  .btn-white {
174
196
  background: rgba(255,255,255,1);
175
197
  border-color: rgba(255,255,255,1);
176
- color: rgba(200,200,200,1) !important;
198
+ }
199
+ .btn-white[disabled],
200
+ .btn-white[disabled]:hover,
201
+ .btn-white:active,
202
+ .btn-white.active,
203
+ .btn-white:hover,
204
+ .btn-white:focus,
205
+ .open > .dropdown-toggle.btn.btn-white {
206
+ background: rgba(240,243,245,1);
207
+ border-color: rgba(240,243,245,1);
177
208
  }
178
209
  .btn-yellow {
179
- background: rgba(166,165,71,1);
180
- border-color: rgba(166,165,71,1);
210
+ background: rgba(253,245,98,1);
211
+ border-color: rgba(253,245,98,1);
181
212
  color: rgba(255,255,255,1) !important;
182
213
  }
183
214
  .btn-yellow[disabled],
@@ -186,7 +217,10 @@ input.btn-block {
186
217
  .btn-yellow.active,
187
218
  .btn-yellow:hover,
188
219
  .btn-yellow:focus,
189
- .open > .dropdown-toggle.btn.btn-yellow { background: rgba(186,185,91,1); }
220
+ .open > .dropdown-toggle.btn.btn-yellow {
221
+ background: rgba(243,235,88,1);
222
+ border-color: rgba(243,235,88,1);
223
+ }
190
224
 
191
225
  /* # Links
192
226
  ================================================== */
@@ -194,7 +228,7 @@ input.btn-block {
194
228
  background: transparent;
195
229
  border-color: transparent;
196
230
  box-shadow: none;
197
- color: rgba(200,200,200,1) !important;
231
+ color: rgba(136,153,166,1) !important;
198
232
  padding: 0;
199
233
  }
200
234
  .btn-link:active,
@@ -204,7 +238,8 @@ input.btn-block {
204
238
  .btn-link[disabled],
205
239
  .btn-link[disabled]:hover {
206
240
  background: transparent;
207
- color: rgba(34,34,34,1) !important;
241
+ border-color: transparent;
242
+ color: rgba(85,94,113,1) !important;
208
243
  }
209
244
 
210
245
  /* # Icons
@@ -246,36 +281,36 @@ input.btn-block {
246
281
  .btn-outline[disabled],
247
282
  .btn-outline[disabled]:hover {
248
283
  background: transparent;
249
- color: rgba(200,200,200,1) !important;
284
+ color: rgba(85,94,113,1) !important;
250
285
  }
251
286
  .btn-outline:active,
252
287
  .btn-outline.active,
253
288
  .btn-outline:hover,
254
289
  .btn-outline:focus,
255
290
  .open > .dropdown-toggle.btn.btn-outline {
256
- background: rgba(253,253,253,1);
257
- color: rgba(34,34,34,1) !important;
291
+ background: rgba(240,243,245,1);
292
+ color: rgba(42,44,48,1) !important;
258
293
  }
259
294
  .btn-outline.btn-black,
260
295
  .btn-outline.btn-black[disabled],
261
- .btn-outline.btn-black[disabled]:hover { color: rgba(34,34,34,1) !important; }
296
+ .btn-outline.btn-black[disabled]:hover { color: rgba(42,44,48,1) !important; }
262
297
  .btn-outline.btn-black:active,
263
298
  .btn-outline.btn-black.active,
264
299
  .btn-outline.btn-black:hover,
265
300
  .btn-outline.btn-black:focus,
266
301
  .open > .dropdown-toggle.btn.btn-outline.btn-black {
267
- background: rgba(44,44,44,1);
302
+ background: rgba(32,34,38,1);
268
303
  color: rgba(255,255,255,1) !important;
269
304
  }
270
305
  .btn-outline.btn-blue,
271
306
  .btn-outline.btn-blue[disabled],
272
- .btn-outline.btn-blue[disabled]:hover { color: rgba(76,143,202,1) !important; }
307
+ .btn-outline.btn-blue[disabled]:hover { color: rgba(91,146,250,1) !important; }
273
308
  .btn-outline.btn-blue:active,
274
309
  .btn-outline.btn-blue.active,
275
310
  .btn-outline.btn-blue:hover,
276
311
  .btn-outline.btn-blue:focus,
277
312
  .open > .dropdown-toggle.btn.btn-outline.btn-blue {
278
- background: rgba(96,163,222,1);
313
+ background: rgba(81,136,240,1);
279
314
  color: rgba(255,255,255,1) !important;
280
315
  }
281
316
  .btn-outline.btn-green,
@@ -286,7 +321,7 @@ input.btn-block {
286
321
  .btn-outline.btn-green:hover,
287
322
  .btn-outline.btn-green:focus,
288
323
  .open > .dropdown-toggle.btn.btn-outline.btn-green {
289
- background: rgba(47,212,129,1);
324
+ background: rgba(17,182,99,1);
290
325
  color: rgba(255,255,255,1) !important;
291
326
  }
292
327
  .btn-outline.btn-orange,
@@ -297,18 +332,18 @@ input.btn-block {
297
332
  .btn-outline.btn-orange:hover,
298
333
  .btn-outline.btn-orange:focus,
299
334
  .open > .dropdown-toggle.btn.btn-outline.btn-orange {
300
- background: rgba(255,174,66,1);
335
+ background: rgba(255,144,36,1);
301
336
  color: rgba(255,255,255,1) !important;
302
337
  }
303
338
  .btn-outline.btn-purple,
304
339
  .btn-outline.btn-purple[disabled],
305
- .btn-outline.btn-purple[disabled]:hover { color: rgba(110,115,136,1) !important; }
340
+ .btn-outline.btn-purple[disabled]:hover { color: rgba(81,68,95,1) !important; }
306
341
  .btn-outline.btn-purple:active,
307
342
  .btn-outline.btn-purple.active,
308
343
  .btn-outline.btn-purple:hover,
309
344
  .btn-outline.btn-purple:focus,
310
345
  .open > .dropdown-toggle.btn.btn-outline.btn-purple {
311
- background: rgba(130,135,156,1);
346
+ background: rgba(71,58,85,1);
312
347
  color: rgba(255,255,255,1) !important;
313
348
  }
314
349
  .btn-outline.btn-red,
@@ -319,18 +354,18 @@ input.btn-block {
319
354
  .btn-outline.btn-red:hover,
320
355
  .btn-outline.btn-red:focus,
321
356
  .open > .dropdown-toggle.btn.btn-outline.btn-red {
322
- background: rgba(255,99,88,1);
357
+ background: rgba(215,70,70,1);
323
358
  color: rgba(255,255,255,1) !important;
324
359
  }
325
360
  .btn-outline.btn-smoke,
326
361
  .btn-outline.btn-smoke[disabled],
327
- .btn-outline.btn-smoke[disabled]:hover { color: rgba(100,100,100,1) !important; }
362
+ .btn-outline.btn-smoke[disabled]:hover { color: rgba(85,94,113,1) !important; }
328
363
  .btn-outline.btn-smoke:active,
329
364
  .btn-outline.btn-smoke.active,
330
365
  .btn-outline.btn-smoke:hover,
331
366
  .btn-outline.btn-smoke:focus,
332
367
  .open > .dropdown-toggle.btn.btn-outline.btn-smoke {
333
- background: rgba(120,120,120,1);
368
+ background: rgba(75,84,103,1);
334
369
  color: rgba(255,255,255,1) !important;
335
370
  }
336
371
  .btn-outline.btn-white,
@@ -340,16 +375,19 @@ input.btn-block {
340
375
  .btn-outline.btn-white.active,
341
376
  .btn-outline.btn-white:hover,
342
377
  .btn-outline.btn-white:focus,
343
- .open > .dropdown-toggle.btn.btn-outline.btn-white { color: rgba(34,34,34,1) !important; }
378
+ .open > .dropdown-toggle.btn.btn-outline.btn-white {
379
+ background: rgba(240,243,245,1);
380
+ color: rgba(42,44,48,1) !important;
381
+ }
344
382
  .btn-outline.btn-yellow,
345
383
  .btn-outline.btn-yellow[disabled],
346
- .btn-outline.btn-yellow[disabled]:hover { color: rgba(166,165,71,1) !important; }
384
+ .btn-outline.btn-yellow[disabled]:hover { color: rgba(253,245,98,1) !important; }
347
385
  .btn-outline.btn-yellow:active,
348
386
  .btn-outline.btn-yellow.active,
349
387
  .btn-outline.btn-yellow:hover,
350
388
  .btn-outline.btn-yellow:focus,
351
389
  .open > .dropdown-toggle.btn.btn-outline.btn-yellow {
352
- background: rgba(186,185,91,1);
390
+ background: rgba(243,235,88,1);
353
391
  color: rgba(255,255,255,1) !important;
354
392
  }
355
393
 
@@ -375,7 +413,7 @@ input.btn-block {
375
413
  .btn-group > .dropdown-toggle:not(:first-child) { border-left-color: rgba(0,0,0,0.15); }
376
414
  .btn-group > .btn,
377
415
  .btn-group-vertical > .btn {
378
- margin-left: -2px;
416
+ margin-left: -1px;
379
417
  position: relative;
380
418
  }
381
419
  .btn-group > .btn:first-child { margin-left: 0; }
@@ -395,7 +433,7 @@ input.btn-block {
395
433
  .btn-group-vertical > .btn-group > .btn {
396
434
  display: block;
397
435
  margin-left: 0;
398
- margin-top: -2px;
436
+ margin-top: -1px;
399
437
  max-width: 100%;
400
438
  width: 100%;
401
439
  }
@@ -413,6 +451,8 @@ input.btn-block {
413
451
  width: 1%;
414
452
  }
415
453
  .btn-group-justified > .btn-group .btn { width: 100%; }
454
+ .btn-group-justified > .btn { border-right-width: 0; }
455
+ .btn-group-justified > .btn:last-child { border-right-width: 1px; }
416
456
 
417
457
  /* # Toolbar
418
458
  ================================================== */
@@ -442,7 +482,7 @@ input.btn-block {
442
482
  .btn-group-responsive > .btn-group > .btn {
443
483
  display: block;
444
484
  margin-left: 0;
445
- margin-top: -2px;
485
+ margin-top: -1px;
446
486
  max-width: 100%;
447
487
  width: 100%;
448
488
  }
@@ -451,7 +491,7 @@ input.btn-block {
451
491
  .btn-group-vertical-responsive > .btn-group,
452
492
  .btn-group-vertical-responsive > .btn-group > .btn {
453
493
  display: inline-block;
454
- margin-left: -2px;
494
+ margin-left: -1px;
455
495
  margin-top: 0;
456
496
  max-width: initial;
457
497
  width: initial;