Skip to content

Commit dd241c8

Browse files
committed
Fix issue #7: incorrect success variant color
1 parent b038358 commit dd241c8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/react-bootstrap-range-slider.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ input[type=range].range-slider.range-slider--secondary::-webkit-slider-thumb {
120120
background: #6c757d;
121121
}
122122
input[type=range].range-slider.range-slider--success::-webkit-slider-thumb {
123-
background: #6c757d;
123+
background: #28a745;
124124
}
125125
input[type=range].range-slider.range-slider--danger::-webkit-slider-thumb {
126126
background: #dc3545;
@@ -144,7 +144,7 @@ input[type=range].range-slider.range-slider--secondary::-moz-range-thumb {
144144
background: #6c757d;
145145
}
146146
input[type=range].range-slider.range-slider--success::-moz-range-thumb {
147-
background: #6c757d;
147+
background: #28a745;
148148
}
149149
input[type=range].range-slider.range-slider--danger::-moz-range-thumb {
150150
background: #dc3545;
@@ -168,7 +168,7 @@ input[type=range].range-slider.range-slider--secondary::-ms-thumb {
168168
background: #6c757d;
169169
}
170170
input[type=range].range-slider.range-slider--success::-ms-thumb {
171-
background: #6c757d;
171+
background: #28a745;
172172
}
173173
input[type=range].range-slider.range-slider--danger::-ms-thumb {
174174
background: #dc3545;

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-bootstrap-range-slider",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "A range slider component with tooltips for React Bootstrap (Bootstrap 4) that extends the HTML input (type=range) element.",
55
"keywords": [
66
"react",

src/style.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
@color--bs-primary: #007bff;
2626
@color--bs-secondary: #6c757d;
27-
@color--bs-success: #6c757d;
27+
@color--bs-success: #28a745;
2828
@color--bs-danger: #dc3545;
2929
@color--bs-warning: #ffc107;
3030
@color--bs-info: #17a2b8;

0 commit comments

Comments
 (0)