mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
53 lines
1.7 KiB
SCSS
53 lines
1.7 KiB
SCSS
// Beware the version number MUST be enclosed with quotes otherwise v2.3.0 becomes v2 0.3 .0
|
|
$version: "v2.6.0";
|
|
|
|
// Base colors
|
|
$gray-base: #000 !default;
|
|
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
|
|
$gray-dark: #444 !default;
|
|
$gray: #777 !default;
|
|
$gray-light: #808080 !default;
|
|
$gray-lighter: #ddd !default;
|
|
$gray-extra-light: #F1F1F1 !default;
|
|
|
|
$white: #FFFFFF !default;
|
|
|
|
$combodo-orange: #EA7D1E !default;
|
|
$combodo-dark-gray: #585653 !default;
|
|
|
|
$combodo-orange-dark: darken($combodo-orange, 13.8%) !default;
|
|
$combodo-orange-darker: darken($combodo-orange, 18%) !default;
|
|
$combodo-dark-gray-dark: darken($combodo-dark-gray, 13.5%) !default;
|
|
$combodo-dark-gray-darker: darken($combodo-dark-gray, 18%) !default;
|
|
|
|
// Vars
|
|
$highlight-color: $combodo-orange;
|
|
$grey-color: #555555;
|
|
$complement-color: #1c94c4;
|
|
$complement-light: #d6e8ef;
|
|
$frame-background-color: $gray-extra-light;
|
|
$text-color: #000;
|
|
$box-radius: 0px;
|
|
$box-shadow-regular: 0 1px 1px rgba(0, 0, 0, 0.15);
|
|
|
|
$hyperlink-color: $complement-color;
|
|
$hyperlink-text-decoration: none;
|
|
|
|
////////////
|
|
// Search //
|
|
$search-criteria-box-color: #2D2D2D;
|
|
$search-criteria-box-picto-color: #E87C1E;
|
|
$search-criteria-box-bg-color: #EEEEEE;
|
|
$search-criteria-box-hover-color: $white;
|
|
$search-criteria-box-border-color: #CCCCCC;
|
|
$search-criteria-box-border: 1px solid $search-criteria-box-border-color;
|
|
$search-criteria-box-radius: 1px;
|
|
//
|
|
$search-add-criteria-box-color: $search-criteria-box-color;
|
|
$search-add-criteria-box-bg-color: $white;
|
|
$search-add-criteria-box-hover-color: $gray-extra-light;
|
|
//
|
|
$search-button-box-color: $combodo-orange;
|
|
$search-button-box-bg-color: $white;
|
|
$search-button-box-bg-hover-color: $gray-extra-light;
|