Update color scheme across components to use new primary orange variable
- Replaced hardcoded orange color values with the new CSS variable for primary orange in multiple components, ensuring consistency in styling. - Updated styles in DialogWidget, MessageboxWidget, SettingsWidget, SimpleTabs, and various Falukant components to enhance maintainability and readability.
This commit is contained in:
@@ -821,7 +821,7 @@ export default {
|
||||
}
|
||||
|
||||
.messages > li .footer {
|
||||
color: #FF6B35;
|
||||
color: var(--color-primary-orange);
|
||||
font-size: 0.8em;
|
||||
margin-top: 0.3em;
|
||||
display: flex;
|
||||
|
||||
@@ -222,7 +222,7 @@
|
||||
color: #000;
|
||||
}
|
||||
.city-price-orange {
|
||||
background-color: #FF6B35;
|
||||
background-color: var(--color-primary-orange);
|
||||
color: #000;
|
||||
}
|
||||
.city-price-red {
|
||||
|
||||
@@ -631,7 +631,7 @@
|
||||
color: #000;
|
||||
}
|
||||
.city-price-orange {
|
||||
background-color: #FF6B35;
|
||||
background-color: var(--color-primary-orange);
|
||||
color: #000;
|
||||
}
|
||||
.city-price-red {
|
||||
|
||||
Reference in New Issue
Block a user