Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

233 rader
7.3 KiB

  1. $bmd-label-color-focus: $brand-primary !default;
  2. $bmd-invalid-underline: $brand-danger !default;
  3. $bmd-readonly-underline: $input-border-color !default;
  4. //---
  5. // verified in use with refactoring to v4
  6. //---
  7. //-- unverified below here
  8. $bmd-brand-inverse: $indigo !default;
  9. // Typography elements FIXME: review to see if we actually need these
  10. $icon-color: rgba($black, 0.5) !default;
  11. // --------------------
  12. // inputs
  13. $mdb-input-placeholder-color: #aaaaaa !default;
  14. $mdb-input-underline-color: #d2d2d2 !default;
  15. $mdb-input-font-size-base: 14px !default;
  16. $mdb-input-font-size-large: ceil(($font-size-base * 1.25)) !default; // ~20px
  17. $mdb-input-font-size-small: ceil(($font-size-base * 0.75)) !default; // ~12px
  18. $bmd-bmd-label-static-size-ratio: 75 / 100 !default;
  19. $bmd-help-size-ratio: 75 / 100 !default;
  20. $bmd-form-control-bg-repeat-y: no-repeat !default;
  21. $bmd-form-control-bg-position: center bottom, center calc(100% - 1px) !default;
  22. $bmd-form-control-bg-size: 0 100%, 100% 100% !default;
  23. $bmd-form-control-bg-size-active: 100% 100%, 100% 100% !default;
  24. // expandable
  25. $input-text-button-size: 32px !default;
  26. // sizing
  27. $bmd-form-line-height: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec.
  28. $bmd-label-top-margin-base: 1rem !default;
  29. $bmd-form-line-height-lg: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec.
  30. $bmd-label-top-margin-lg: 1rem !default; // 16px
  31. $bmd-form-line-height-sm: 1 !default; // set as 1x font-size so that padding is easier calculated to match the spec.
  32. $bmd-label-top-margin-sm: 0.75rem !default; // 12px
  33. $text-disabled: #a8a8a8 !default;
  34. $background-disabled: #eaeaea !default;
  35. $margin-base: 1.071rem !default;
  36. // Checkboxes
  37. $bmd-checkbox-size: 1.25rem !default;
  38. $bmd-checkbox-animation-ripple: 500ms !default;
  39. $bmd-checkbox-animation-check: 0.3s !default;
  40. $bmd-checkbox-checked-color: $white !default;
  41. $bmd-checkbox-label-padding: 0.3125rem !default; // 5px
  42. $checkboxes-text-color: $mdb-input-placeholder-color !default;
  43. $bmd-checkbox-border-size: 0.0625rem !default;
  44. $bmd-checkbox-border-color: $bmd-label-color-inner-focus !default;
  45. $bmd-checkbox-border-color-disabled: $gray-lighter !default; //#bdbdbd !default;
  46. // Toggle
  47. $mdb-toggle-label-color: $mdb-label-color !default;
  48. // Variables for datetimepicker //
  49. $padding-default-vertical: 10px !default;
  50. $medium-pale-bg: #f1eae0 !default;
  51. $pale-bg: #f9f7f3 !default;
  52. $font-color: #66615b !default;
  53. $brand-default: #cecece !default;
  54. $brand-primary: $purple !default;
  55. $brand-success: $green !default;
  56. $brand-danger: $red !default;
  57. $brand-warning: $orange !default;
  58. $brand-info: $cyan !default;
  59. $brand-rose: $pink !default;
  60. $black-color: #3c4858 !default;
  61. // Dropdowns
  62. $dropdown-item-padding-y: 0.625rem;
  63. $dropdown-item-padding-x: 1.25rem;
  64. $dropdown-header-padding-y: 0.1875rem;
  65. $bmd-dropdown-margin-y: 0.3125rem !default;
  66. $bmd-dropdown-header-color: #777 !default;
  67. $bmd-dropdown-link-color: #333 !default;
  68. // Switches
  69. $bmd-switch-label-padding: 0.3125rem !default; // 5px
  70. $bmd-switch-width: 2.125rem !default; // 34px
  71. $bmd-switch-height: 0.875rem !default; // 14px
  72. $bmd-switch-handle-size: 1.25rem !default; // 20px (was 18px)
  73. $bmd-switch-handle-checked-bg: $brand-primary !default;
  74. $bmd-switch-handle-unchecked-bg: #f1f1f1 !default;
  75. $bmd-switch-handle-disabled-bg: #bdbdbd !default;
  76. $bmd-switch-unchecked-bg: $gray-lighter !default;
  77. $bmd-switch-checked-bg: desaturate(
  78. lighten($bmd-switch-handle-checked-bg, 28%),
  79. 32%
  80. ); // kind of magic recipe
  81. $bmd-switch-disabled-bg: $gray-lighter !default;
  82. // Popovers and Popups
  83. $bmd-popover-background: rgba(101, 101, 101, 0.9) !default;
  84. $bmd-popover-color: #ececec !default;
  85. // Radio:
  86. $bmd-radio-border: 0.0625rem !default; // 1px
  87. $bmd-radio-size: 1rem !default;
  88. $bmd-radio-ripple-offset: 1em !default;
  89. $bmd-radio-label-padding: 0.3125rem !default; // 5px
  90. $bmd-radio-color-off: $bmd-label-color-inner-focus !default;
  91. $bmd-radio-color-on: $brand-primary !default;
  92. $bmd-radio-color-disabled: $gray-lighter; //
  93. $bmd-radio-color-disabled-inverse: rgba(
  94. $white,
  95. 0.3
  96. ); // dark theme spec: Disabled: #FFFFFF, Opacity 30%
  97. $white-color: #fff !default;
  98. $navbar-color: #555 !default;
  99. $pills-color: $navbar-color !default;
  100. $black-color: #3c4858 !default;
  101. $link-color: $brand-primary;
  102. $white-transparent: rgba($white-color, 0.8);
  103. $transparent: transparent;
  104. //Popovers
  105. $popover-color: $navbar-color !default;
  106. //Tooltips
  107. $tooltip-font-size: 0.75rem !default;
  108. // Background colors
  109. $bg-primary: $brand-primary;
  110. $bg-danger: $brand-danger;
  111. $bg-warning: $brand-warning;
  112. $bg-info: $brand-info;
  113. $bg-rose: $brand-rose;
  114. $bg-success: $brand-success;
  115. $bg-dark: $grey-900;
  116. //Paddings
  117. $padding-general-y: 0.625rem !default;
  118. $padding-general-x: 0.9375rem !default;
  119. $padding-card-body-y: 0.9375rem !default;
  120. $padding-card-body-x: 1.875rem !default;
  121. // Buttons:
  122. $mdb-btn-font-size-base: 12px !default;
  123. $mdb-btn-font-size-lg: 14px !default;
  124. $mdb-btn-font-size-sm: 11px !default;
  125. $mdb-btn-font-size-xs: 10px !default;
  126. $mdb-btn-fab-size: 41px !default;
  127. $mdb-btn-fab-size-lg: 56px !default;
  128. $mdb-btn-fab-size-mini: 29px !default;
  129. $mdb-btn-fab-font-size: 24px !default;
  130. $mdb-btn-just-icon-font-size: 20px !default;
  131. $mdb-btn-icon-size: 32px !default;
  132. $mdb-btn-icon-size-mini: 17px !default;
  133. $bmd-line-height: 1.42857143 !default;
  134. $btn-lg-line-height: 1.3333333 !default;
  135. //Font-weight
  136. $font-weight-light: 300 !default;
  137. $font-weight-default: 400 !default;
  138. $font-weight-bold: 500 !default;
  139. $font-weight-extra-bold: 700 !default;
  140. $font-weight-ultra-bold: 900 !default;
  141. //Border-radius
  142. $border-radius-base: 3px !default;
  143. $border-radius-small: 2px !default;
  144. $border-radius-large: 6px !default;
  145. $border-radius-huge: 10px !default;
  146. $border-radius-label: 12px !default;
  147. $border-radius-extreme: 30px !default;
  148. // Animations
  149. $bmd-animation-curve-fast-out-slow-in: cubic-bezier(0.4, 0, 0.2, 1) !default;
  150. $bmd-animation-curve-linear-out-slow-in: cubic-bezier(0, 0, 0.2, 1) !default;
  151. $bmd-animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default;
  152. $bmd-animation-curve-default: $bmd-animation-curve-fast-out-slow-in !default;
  153. $bmd-animation-dropdown-caret: 150ms !default;
  154. $general-transition-time: 300ms !default;
  155. $slow-transition-time: 370ms !default;
  156. $fast-transition-time: 150ms !default;
  157. $transition-linear: linear !default;
  158. $transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
  159. $transition-bezier-rotating-card: cubic-bezier(0.34, 1.45, 0.7, 1) !default;
  160. $transition-ease: ease 0s;
  161. //variables for social
  162. $social-facebook: #3b5998;
  163. $social-twitter: #55acee;
  164. $social-pinterest: #cc2127;
  165. $social-google: #dd4b39;
  166. $social-linkedin: #0976b4;
  167. $social-dribbble: #ea4c89;
  168. $social-github: #333333;
  169. $social-youtube: #e52d27;
  170. $social-instagram: #125688;
  171. $social-reddit: #ff4500;
  172. $social-tumblr: #35465c;
  173. $social-behance: #1769ff;
  174. // Variables for checkboxes
  175. $mdb-label-color: unquote("rgba(#{$rgb-black}, 0.26)") !default;
  176. $mdb-label-color-toggle-focus: unquote("rgba(#{$rgb-black}, .54)") !default;
  177. $mdb-checkbox-size: 20px !default;
  178. $mdb-checkbox-animation-ripple: 500ms !default;
  179. $mdb-checkbox-animation-check: 0.3s !default;
  180. $mdb-checkbox-checked-color: $brand-primary !default;
  181. $mdb-checkbox-label-color: $mdb-label-color !default;
  182. $mdb-checkbox-border-color: $mdb-label-color-toggle-focus !default;
  183. // Radio:
  184. $mdb-radio-label-color: $mdb-label-color !default;
  185. $mdb-radio-color-off: $mdb-label-color-toggle-focus !default;
  186. $mdb-radio-color-on: $brand-primary !default;