You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
697 B
20 lines
697 B
:root {
|
|
--background-color:red;
|
|
--margin-left-color:inherit;
|
|
--margin-right-color:inherit;
|
|
--margin-top-color:inherit;
|
|
--margin-bottom-color:inherit;
|
|
}
|
|
$backgroundColor: var(--background-color);
|
|
$marginLeftColor: var(--margin-left-color);
|
|
$marginRightColor: var(--margin-right-color);
|
|
$marginTopColor: var(--margin-top-color);
|
|
$marginBottomColor: var(--margin-bottom-color);
|
|
|
|
.o_required_modifier .o_input {
|
|
background: $backgroundColor !important;
|
|
border-bottom : solid $marginBottomColor 2px !important;
|
|
border-left : solid $marginLeftColor 2px !important;
|
|
border-right : solid $marginRightColor 2px !important;
|
|
border-top : solid $marginTopColor 2px !important;
|
|
}
|
|
|