N°2314 - Markup extensibility: Replace a hardcoded value by an overloadable variable

This commit is contained in:
Stephen Abello
2020-02-10 15:29:06 +01:00
parent 72fad49c4e
commit fe8f274c14
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
// Beware the version number MUST be enclosed with quotes otherwise v2.3.0 becomes v2 0.3 .0
$version: "v2.7.0-beta2";
$approot-relative: "../../../../../"; // relative to env-***/branding/themes/***/main.css
$approot-relative: "../../../../../" !default; // relative to env-***/branding/themes/***/main.css
// Base colors
$gray-base: #000 !default;
@@ -83,6 +83,7 @@ $search-criteria-box-hover-color: $white !default;
$search-criteria-box-border-color: #CCCCCC !default;
$search-criteria-box-border: 1px solid $search-criteria-box-border-color !default;
$search-criteria-box-radius: 1px !default;
$search-criteria-more-less-details-color: #3F7294 !default;
//
$search-add-criteria-box-color: $search-criteria-box-color !default;
$search-add-criteria-box-bg-color: $white !default;

View File

@@ -1327,7 +1327,7 @@ input.dp-applied {
bottom: 4px;
right: 0px;
cursor: pointer;
color: #3F7294;
color: $search-criteria-more-less-details-color;
font-size: 10px;
font-weight: bold;
border: none;