Skip to content

Commit ae5659b

Browse files
authored
fix(kendo): button colors in default and bootstrap skins are bro… (#221)
fix(kendo): button colors in default and bootstrap skins are broken in dark mode
2 parents 9f2105b + 2813e4d commit ae5659b

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"nativescript": {
1515
"id": "org.nativescript.theme",
1616
"tns-ios": {
17-
"version": "6.2.0-rc-2019-10-21-153440-02"
17+
"version": "6.2.0"
1818
},
1919
"tns-android": {
20-
"version": "6.2.0-rc-2019-10-23-094316-01"
20+
"version": "6.2.0"
2121
}
2222
},
2323
"dependencies": {
24-
"@nativescript/core": "rc",
24+
"@nativescript/core": "6.2.0",
2525
"@nativescript/theme": "./src",
2626
"bootstrap": "4.3.1",
2727
"nativescript-picker": "2.1.2",
@@ -31,7 +31,7 @@
3131
"nativescript-ui-sidedrawer": "7.0.3",
3232
"nativescript-ui-dataform": "5.1.1",
3333
"nativescript-ui-listview": "7.1.0",
34-
"tns-core-modules": "rc"
34+
"tns-core-modules": "6.2.0"
3535
},
3636
"devDependencies": {
3737
"@babel/core": "7.6.4",
@@ -41,7 +41,7 @@
4141
"eslint": "6.4.0",
4242
"glob": "7.1.4",
4343
"lazy": "1.0.11",
44-
"nativescript-dev-webpack": "rc",
44+
"nativescript-dev-webpack": "1.3.0",
4545
"resolve-url-loader": "3.1.0",
4646
"sass": "1.23.0",
4747
"sass-lint": "1.13.1",

src/scss/core/colors/_dark.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $dark-colors: (
3333
complementary: $card-cap-bg,
3434
primary: alternate(dark(background), 70%),
3535
border-color: lighten($background, 3%),
36-
btn-color: $secondary
36+
btn-color: mix($secondary, $charcoal, 30%)
3737
));
3838
}
3939

@@ -46,7 +46,7 @@ $dark-colors: (
4646
complementary: $accent,
4747
primary: alternate(dark(background), 70%),
4848
border-color: rgba(255,255,255,.08),
49-
btn-color: $base-bg
49+
btn-color: mix($base-bg, $charcoal, 10%)
5050
));
5151
}
5252

0 commit comments

Comments
 (0)