Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
}

.modal-content {
background-color: var(--bg-color-secondary, $bg-color-secondary);
input {
height: 56px;
padding: 12px 12px;
Expand All @@ -127,7 +128,7 @@
}

h2, h4 {
color: #aaaaaa;
color: var(--font-color-detail, $font-color-detail);
font-size: 20px;
font-weight: var(--font-weight-bold);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// To customize any core styling, copy the part you want to customize to styles/web/sass/app/ so the core styling is overwritten.
//

$default-android-color: #6fbeb5;
$default-ios-color: rgb(100, 189, 99);
$default-android-color: #6fbeb5 !default;
$default-ios-color: rgb(100, 189, 99) !default;

@mixin bootstrap-style-ios($brand-style) {
border-color: $brand-style;
Expand Down Expand Up @@ -48,7 +48,7 @@ $default-ios-color: rgb(100, 189, 99);
.widget-switch-btn-wrapper {
&.checked {
&.widget-switch-btn-wrapper-default {
@include bootstrap-style-ios($default-ios-color);
@include bootstrap-style-ios(var(--switch-default-ios-color, $default-ios-color));
}

&.widget-switch-btn-wrapper-success {
Expand Down Expand Up @@ -83,10 +83,10 @@ $default-ios-color: rgb(100, 189, 99);
.widget-switch-btn-wrapper {
&.checked {
&.widget-switch-btn-wrapper-default {
@include bootstrap-style-android($default-android-color);
@include bootstrap-style-android(var(--switch-default-android-color, $default-android-color));

.widget-switch-btn {
background: $default-android-color;
background: var(--switch-default-android-color, $default-android-color);
}
}

Expand Down
Loading