mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 04:07:55 +03:00
121 lines
4.2 KiB
SCSS
121 lines
4.2 KiB
SCSS
@import "variables/colors";
|
|
|
|
// Typography elements FIXME: review to see if we actually need these
|
|
$mdb-text-color-light: rgba($white, 0.84) !default; //hsla(0, 0%, 100%, 0.84) !default; // white 0.84 //unquote("rgba(#{$rgb-white}, 0.84)") !default;
|
|
$mdb-text-color-primary: rgba($black, 0.87) !default;
|
|
$mdb-font-weight-base: 400;
|
|
$icon-color: rgba($black, 0.5) !default;
|
|
|
|
|
|
// redefine ? TODO: do we need this mdb variant? This is used as $body-color
|
|
$gray-dark: $mdb-text-color-primary;
|
|
|
|
//---
|
|
// Customized BS variables
|
|
$enable-flex: true;
|
|
@import "variables/body";
|
|
@import "variables/brand";
|
|
@import "variables/buttons";
|
|
@import "variables/code";
|
|
@import "variables/forms";
|
|
@import "variables/state";
|
|
@import "variables/type";
|
|
|
|
|
|
$border-radius-base: 2px !default;
|
|
$border-radius-small: 1px !default;
|
|
|
|
|
|
//---
|
|
// Bootstrap Material Design variables start with mdb-
|
|
$mdb-brand-inverse: $indigo !default;
|
|
|
|
// ANIMATION
|
|
$mdb-animation-curve-fast-out-slow-in: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
$mdb-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default;
|
|
$mdb-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default;
|
|
$mdb-animation-curve-default: $mdb-animation-curve-fast-out-slow-in !default;
|
|
|
|
//---
|
|
// FIXME: Similar but not quite the same as Bootstrap variables
|
|
// FIXME: these need to either a) be converted to $mdb- or b) converted to bs variables
|
|
$contrast-factor: 40% !default;
|
|
//---
|
|
|
|
// --------------------
|
|
// inputs
|
|
//$mdb-input-placeholder-color: #BDBDBD !default;
|
|
$mdb-input-underline-color: #d2d2d2 !default;
|
|
$mdb-label-static-size-ratio: 75 / 100 !default;
|
|
$mdb-help-block-size-ratio: 75 / 100 !default;
|
|
|
|
// FIXME: with #733 customization of bootstrap, consider how these could be based on the original bs customized variables
|
|
//
|
|
////## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
|
$mdb-input-padding-y-base: .4375rem !default; // 7px
|
|
$mdb-label-as-placeholder-shim-base: 0 !default; // manual adjustment of label top when positioned as placeholder
|
|
$mdb-label-top-margin-base: 1rem !default;
|
|
//
|
|
$mdb-input-padding-y-lg: .5625rem !default; // 9px
|
|
$mdb-label-as-placeholder-shim-lg: 0 !default; // -4px // manual adjustment of label top when positioned as placeholder
|
|
$mdb-label-top-margin-lg: 1rem !default; // 16px
|
|
//
|
|
$mdb-input-padding-y-sm: .1875 !default; // 3px
|
|
$mdb-label-as-placeholder-shim-sm: 0 !default; // 8px // manual adjustment of label top when positioned as placeholder
|
|
$mdb-label-top-margin-sm: .75rem !default; // 12px
|
|
|
|
// Card
|
|
$mdb-card-body-text: $mdb-text-color-primary !default;
|
|
$mdb-card-body-background: #fff !default;
|
|
$mdb-card-image-headline: #fff !default;
|
|
|
|
$text-disabled: #a8a8a8 !default;
|
|
$background-disabled: #eaeaea !default;
|
|
|
|
// Checkboxes
|
|
$mdb-checkbox-size: 20px !default;
|
|
$mdb-checkbox-animation-ripple: 500ms !default;
|
|
$mdb-checkbox-animation-check: 0.3s !default;
|
|
$mdb-checkbox-checked-color: #4caf50 !default;
|
|
$mdb-checkbox-label-color: rgba($black, .54) !default;
|
|
$mdb-checkbox-border-color: $mdb-checkbox-label-color !default;
|
|
|
|
// Popovers and Popups
|
|
$mdb-popover-background: rgba(101, 101, 101, 0.9) !default;
|
|
$mdb-popover-color: #ececec !default;
|
|
|
|
// Dropdown Menu
|
|
$mdb-dropdown-font-size: 16px !default;
|
|
|
|
// Toggle
|
|
$mdb-switch-label-color: $mdb-checkbox-label-color !default;
|
|
|
|
// Radio:
|
|
$mdb-radio-label-color: $mdb-checkbox-label-color !default;
|
|
$mdb-radio-color-off: $mdb-checkbox-border-color !default;
|
|
$mdb-radio-color-on: $brand-primary !default;
|
|
|
|
// Buttons:
|
|
$mdb-btn-font-size-base: 14px !default;
|
|
$mdb-btn-font-size-lg: 16px !default;
|
|
$mdb-btn-font-size-sm: 12px !default;
|
|
$mdb-btn-font-size-xs: 10px !default;
|
|
|
|
$mdb-btn-background-color: $body-bg !default; // transparent
|
|
$mdb-btn-background-color-text: $mdb-text-color-primary !default;
|
|
|
|
$mdl-btn-border-radus: 2px !default;
|
|
//$mdb-btn-primary-color: unquote("rgba(#{$rgb-grey-500}, 0.20)") !default;
|
|
|
|
$mdb-btn-fab-size: 56px !default;
|
|
$mdb-btn-fab-size-mini: 40px !default;
|
|
$mdb-btn-fab-font-size: 24px !default;
|
|
|
|
$mdb-btn-icon-size: 32px !default;
|
|
$mdb-btn-icon-size-mini: 24px !default;
|
|
|
|
// SHADOWS
|
|
$mdb-shadow-key-umbra-opacity: 0.2 !default;
|
|
$mdb-shadow-key-penumbra-opacity: 0.14 !default;
|
|
$mdb-shadow-ambient-shadow-opacity: 0.12 !default;
|