@import "_colors.less"; // Material Global vars @zero: 0; @mdb-font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif; // material icons path @mdb-font-path: "../fonts"; // Typography elements for Material @darkbg-text: rgba(255,255,255,0.84); @lightbg-text: rgba(0,0,0,0.84); @icon-color: rgba(0,0,0,0.5); // import bs variables for less, last declared wins. @import "_import-bs-less.less"; //--- // Converted bs variables // Bootstrap brand color customization @brand-primary: @teal; @brand-success: @green; @brand-danger: @red; @brand-warning: @deep-orange; @brand-info: @light-blue; @body-bg: #EEEEEE; //--- // import bs variables for sass, first declared wins. @import "_import-bs-sass.less"; //--- // 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%; @btn-default: transparent; @btn-default-text: @lightbg-text; //--- @mdb-radio-default: @lightbg-text; @mdb-border-radius: 2px; // -------------------- // inputs @mdb-input-placeholder-color: #BDBDBD; @mdb-input-underline-color: #D2D2D2; @mdb-label-static-size-ratio: 75 / 100; @mdb-help-block-size-ratio: 75 / 100; @mdb-input-font-size-base: 16px; @mdb-input-font-size-large: ceil((@font-size-base * 1.25)); // ~20px @mdb-input-font-size-small: ceil((@font-size-base * 0.75)); // ~12px // FIXME: with #733 customization of bootstrap, consider how these could be based on the original bs customized variables //** Unit-less `line-height` for use in components like buttons. @mdb-input-line-height-base: @line-height-base; //1.428571429; // 20/14 //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc. @mdb-input-line-height-computed: floor((@mdb-input-font-size-base * @mdb-input-line-height-base)); // ~20px @mdb-input-line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome @mdb-input-line-height-small: 1.5; //## 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-base-vertical: 8px - 1px; // was 6. @mdb-input-padding-base-horizontal: 0px; // was 12. @mdb-label-as-placeholder-shim-base: 0px; // manual adjustment of label top when positioned as placeholder @mdb-label-top-margin-base: 16px; @mdb-input-padding-large-vertical: 10px - 1px; // 10 @mdb-input-padding-large-horizontal: 0px; // 16 @mdb-label-as-placeholder-shim-large: -4px; // manual adjustment of label top when positioned as placeholder @mdb-label-top-margin-large: 16px; @mdb-input-padding-small-vertical: 4px - 1px; // 5 @mdb-input-padding-small-horizontal: 0px; // 10 @mdb-label-as-placeholder-shim-small: 8px; // manual adjustment of label top when positioned as placeholder @mdb-label-top-margin-small: 12px; @mdb-input-padding-xs-vertical: 2px; // 1 @mdb-input-padding-xs-horizontal: 0px; // 5 @mdb-input-border-radius-base: 4px; @mdb-input-border-radius-large: 6px; @mdb-input-border-radius-small: 3px; //** Default `.form-control` height @mdb-input-height-base: (@mdb-input-line-height-computed + (@mdb-input-padding-base-vertical * 2) + 2); //** Large `.form-control` height @mdb-input-height-large: (ceil(@mdb-input-font-size-large * @mdb-input-line-height-large) + (@mdb-input-padding-large-vertical * 2) + 2); //** Small `.form-control` height @mdb-input-height-small: (floor(@mdb-input-font-size-small * @mdb-input-line-height-small) + (@mdb-input-padding-small-vertical * 2) + 2); // Card @mdb-card-body-text: @lightbg-text; @mdb-card-body-background: #fff; @mdb-card-image-headline: #fff; @text-disabled: #a8a8a8; @background-disabled: #eaeaea; // Checkboxes @mdb-checkbox-size: 20px; @mdb-checkbox-animation-ripple: 500ms; @mdb-checkbox-animation-check: 0.3s; @mdb-checkbox-checked-color: #4caf50; @mdb-checkbox-label-color: rgba(0, 0, 0, .54); @mdb-checkbox-border-color: @mdb-checkbox-label-color; // Popovers and Popups @mdb-popover-background: rgba(101, 101, 101, 0.9); @mdb-popover-color: #ececec; // Dropdown Menu @mdb-dropdown-radius: 2px; @mdb-dropdown-font-size: 16px; // Toggle @mdb-toggle-label-color: @mdb-checkbox-label-color; // Radio: @mdb-radio-label-color: @mdb-checkbox-label-color; @mdb-radio-border-color: @mdb-checkbox-border-color;