variables.scss 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. $bootstrap-sass-asset-helper: false !default;
  2. // Combodo Portal 1.0.0 (Based on Simplex 3.3.6)
  3. // Variables
  4. // --------------------------------------------------
  5. //== Colors
  6. //
  7. //## Gray and brand colors for use across Bootstrap.
  8. $gray-base: #000 !default;
  9. $gray-darker: lighten($gray-base, 13.5%) !default; // #222
  10. $gray-dark: #444 !default;
  11. $gray: #777 !default;
  12. $gray-light: #808080 !default;
  13. $gray-lighter: #ddd !default;
  14. $white: #FFFFFF !default;
  15. $combodo-orange: #EA7D1E !default;
  16. $combodo-dark-gray: #585653 !default;
  17. $combodo-orange-dark: darken($combodo-orange, 13.8%) !default;
  18. $combodo-orange-darker: darken($combodo-orange, 18%) !default;
  19. $combodo-dark-gray-dark: darken($combodo-dark-gray, 13.5%) !default;
  20. $combodo-dark-gray-darker: darken($combodo-dark-gray, 18%) !default;
  21. $brand-primary: #EA7D1E !default;
  22. $brand-default: #FFFFFF !default;
  23. $brand-secondary: #FFFFFF !default;
  24. $brand-success: #469408 !default;
  25. $brand-info: #029ACF !default;
  26. $brand-warning: #9B479F !default;
  27. $brand-danger: #D85A1E !default;
  28. $brand-primary-dark: darken($brand-primary, 6%) !default;
  29. $brand-primary-darker: darken($brand-primary, 10%) !default;
  30. $brand-default-dark: darken($brand-default, 6%) !default;
  31. $brand-default-darker: darken($brand-default, 10%) !default;
  32. $brand-secondary-dark: darken($brand-secondary, 6%) !default;
  33. $brand-secondary-darker:darken($brand-secondary, 10%) !default;
  34. $brand-success-dark: darken($brand-success, 6%) !default;
  35. $brand-success-darker: darken($brand-success, 10%) !default;
  36. $brand-info-dark: darken($brand-info, 6%) !default;
  37. $brand-info-darker: darken($brand-info, 10%) !default;
  38. $brand-warning-dark: darken($brand-warning, 6%) !default;
  39. $brand-warning-darker: darken($brand-warning, 10%) !default;
  40. $brand-danger-dark: darken($brand-danger, 6%) !default;
  41. $brand-danger-darker: darken($brand-danger, 10%) !default;
  42. //== Scaffolding
  43. //
  44. //## Settings for some of the most global styles.
  45. //** Background color for `<body>`.
  46. $body-bg: #EDECEC !default;
  47. //** Global text color on `<body>`.
  48. $text-color: $gray !default;
  49. //** Global textual link color.
  50. $link-color: #D46201 !default;
  51. //** Link hover color set via `darken()` function.
  52. $link-hover-color: darken($link-color, 5%) !default;
  53. //** Link hover decoration.
  54. $link-hover-decoration: underline !default;
  55. //== Typography
  56. //
  57. //## Font, line-height, and color for body text, headings, and more.
  58. $font-family-sans-serif: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
  59. $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
  60. //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
  61. $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
  62. $font-family-base: $font-family-sans-serif !default;
  63. $font-size-base: 13px !default;
  64. $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
  65. $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
  66. $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
  67. $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
  68. $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
  69. $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
  70. $font-size-h5: $font-size-base !default;
  71. $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
  72. //** Unit-less `line-height` for use in components like buttons.
  73. $line-height-base: 1.428571429 !default; // 20/14
  74. //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
  75. $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
  76. //** By default, this inherits from the `<body>`.
  77. $headings-font-family: $font-family-sans-serif !default;
  78. $headings-font-weight: 300 !default;
  79. $headings-line-height: 1.1 !default;
  80. $headings-color: $gray-dark !default;
  81. //== Iconography
  82. //
  83. //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
  84. //** Load fonts from this directory.
  85. $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
  86. //** File name for all font files.
  87. $icon-font-name: "glyphicons-halflings-regular" !default;
  88. //** Element ID within SVG icon file.
  89. $icon-font-svg-id: "glyphicons_halflingsregular" !default;
  90. //== Components
  91. //
  92. //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
  93. $padding-base-vertical: 8px !default;
  94. $padding-base-horizontal: 12px !default;
  95. $padding-large-vertical: 14px !default;
  96. $padding-large-horizontal: 16px !default;
  97. $padding-small-vertical: 5px !default;
  98. $padding-small-horizontal: 10px !default;
  99. $padding-xs-vertical: 1px !default;
  100. $padding-xs-horizontal: 5px !default;
  101. $line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
  102. $line-height-small: 1.5 !default;
  103. $border-radius-base: 0px !default;
  104. $border-radius-large: $border-radius-base; // Default: 6px !default;
  105. $border-radius-small: $border-radius-base; // Default: 3px !default;
  106. //** Global color for active items (e.g., navs or dropdowns).
  107. $component-active-color: #fff !default;
  108. //** Global background color for active items (e.g., navs or dropdowns).
  109. $component-active-bg: $brand-primary !default;
  110. //** Width of the `border` for generating carets that indicator dropdowns.
  111. $caret-width-base: 4px !default;
  112. //** Carets increase slightly in size for larger components.
  113. $caret-width-large: 5px !default;
  114. //== Tables
  115. //
  116. //## Customizes the `.table` component with basic values, each used across all table variations.
  117. //** Padding for `<th>`s and `<td>`s.
  118. $table-cell-padding: 8px !default;
  119. //** Padding for cells in `.table-condensed`.
  120. $table-condensed-cell-padding: 5px !default;
  121. //** Default background color used for all tables.
  122. $table-bg: transparent !default;
  123. //** Background color used for `.table-striped`.
  124. $table-bg-accent: #f9f9f9 !default;
  125. //** Background color used for `.table-hover`.
  126. $table-bg-hover: #f5f5f5 !default;
  127. $table-bg-active: $table-bg-hover !default;
  128. //** Border color for table and cell borders.
  129. $table-border-color: #ddd !default;
  130. //== Buttons
  131. //
  132. //## For each of Bootstrap's buttons, define text, background and border color.
  133. $btn-font-weight: normal !default;
  134. $btn-bg-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset !default;
  135. $btn-border-default: 1px solid rgba(0, 0, 0, 0.15);
  136. $btn-color: $white !default;
  137. $btn-default-color: $gray-darker !default;
  138. $btn-default-bg: $white !default;
  139. $btn-default-bg-hover: darken($white, 5%) !default;
  140. $btn-default-border: $btn-border-default !default;
  141. $btn-primary-color: $white !default;
  142. $btn-primary-bg: $brand-primary !default;
  143. $btn-primary-bg-hover: darken($btn-primary-bg, 5%) !default;
  144. $btn-primary-border: $btn-border-default !default;
  145. $btn-success-color: $white !default;
  146. $btn-success-bg: $brand-success !default;
  147. $btn-success-bg-hover: darken($btn-success-bg, 6%) !default;
  148. $btn-success-border: $btn-border-default !default;
  149. $btn-info-color: $white !default;
  150. $btn-info-bg: $brand-info !default;
  151. $btn-info-bg-hover: darken($btn-info-bg, 5%) !default;
  152. $btn-info-border: $btn-border-default !default;
  153. $btn-warning-color: $white !default;
  154. $btn-warning-bg: $brand-warning !default;
  155. $btn-warning-bg-hover: darken($btn-warning-bg, 5%) !default;
  156. $btn-warning-border: $btn-border-default !default;
  157. $btn-danger-color: $white !default;
  158. $btn-danger-bg: $brand-danger !default;
  159. $btn-danger-bg-hover: darken($btn-danger-bg, 5%) !default;
  160. $btn-danger-border: $btn-border-default !default;
  161. $btn-link-disabled-color: $gray-light !default;
  162. // Allows for customizing button radius independently from global border radius
  163. $btn-border-radius-base: $border-radius-base !default;
  164. $btn-border-radius-large: $border-radius-large !default;
  165. $btn-border-radius-small: $border-radius-small !default;
  166. //== Forms
  167. //
  168. //##
  169. //** `<input>` background color
  170. $input-bg: #fff !default;
  171. //** `<input disabled>` background color
  172. $input-bg-disabled: $gray-lighter !default;
  173. //** Text color for `<input>`s
  174. $input-color: $text-color !default;
  175. //** `<input>` border color
  176. $input-border: #ddd !default;
  177. // TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
  178. //** Default `.form-control` border radius
  179. // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
  180. $input-border-radius: $border-radius-base !default;
  181. //** Large `.form-control` border radius
  182. $input-border-radius-large: $border-radius-large !default;
  183. //** Small `.form-control` border radius
  184. $input-border-radius-small: $border-radius-small !default;
  185. //** Border color for inputs on focus
  186. $input-border-focus: $brand-primary !default;
  187. //** Placeholder text color
  188. $input-color-placeholder: $gray-lighter !default;
  189. //** Default `.form-control` height
  190. $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
  191. //** Large `.form-control` height
  192. $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
  193. //** Small `.form-control` height
  194. $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
  195. //** `.form-group` margin
  196. $form-group-margin-bottom: 15px !default;
  197. $legend-color: $text-color !default;
  198. $legend-border-color: #e5e5e5 !default;
  199. //** Background color for textual input addons
  200. $input-group-addon-bg: $gray-lighter !default;
  201. //** Border color for textual input addons
  202. $input-group-addon-border-color: $input-border !default;
  203. //** Disabled cursor for form controls and buttons.
  204. $cursor-disabled: not-allowed !default;
  205. //== Dropdowns
  206. //
  207. //## Dropdown menu container and contents.
  208. //** Background for the dropdown menu.
  209. $dropdown-bg: #fff !default;
  210. //** Dropdown menu `border-color`.
  211. $dropdown-border: rgba(0,0,0,.15) !default;
  212. //** Dropdown menu `border-color` **for IE8**.
  213. $dropdown-fallback-border: #ccc !default;
  214. //** Divider color for between dropdown items.
  215. $dropdown-divider-bg: #e5e5e5 !default;
  216. //** Dropdown link text color.
  217. $dropdown-link-color: $gray-dark !default;
  218. //** Hover color for dropdown links.
  219. $dropdown-link-hover-color: #fff !default;
  220. //** Hover background for dropdown links.
  221. $dropdown-link-hover-bg: $component-active-bg !default;
  222. //** Active dropdown menu item text color.
  223. $dropdown-link-active-color: #fff !default;
  224. //** Active dropdown menu item background color.
  225. $dropdown-link-active-bg: $component-active-bg !default;
  226. //** Disabled dropdown menu item background color.
  227. $dropdown-link-disabled-color: $gray-light !default;
  228. //** Text color for headers within dropdown menus.
  229. $dropdown-header-color: $gray-light !default;
  230. //** Deprecated `$dropdown-caret-color` as of v3.1.0
  231. $dropdown-caret-color: #000 !default;
  232. //-- Z-index master list
  233. //
  234. // Warning: Avoid customizing these values. They're used for a bird's eye view
  235. // of components dependent on the z-axis and are designed to all work together.
  236. //
  237. // Note: These variables are not generated into the Customizer.
  238. $zindex-navbar: 1000 !default;
  239. $zindex-dropdown: 1000 !default;
  240. $zindex-popover: 1060 !default;
  241. $zindex-tooltip: 1070 !default;
  242. $zindex-navbar-fixed: 1030 !default;
  243. $zindex-modal-background: 1040 !default;
  244. $zindex-modal: 1050 !default;
  245. //== Media queries breakpoints
  246. //
  247. //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
  248. // Extra small screen / phone
  249. //** Deprecated `$screen-xs` as of v3.0.1
  250. $screen-xs: 480px !default;
  251. //** Deprecated `$screen-xs-min` as of v3.2.0
  252. $screen-xs-min: $screen-xs !default;
  253. //** Deprecated `$screen-phone` as of v3.0.1
  254. $screen-phone: $screen-xs-min !default;
  255. // Small screen / tablet
  256. //** Deprecated `$screen-sm` as of v3.0.1
  257. $screen-sm: 768px !default;
  258. $screen-sm-min: $screen-sm !default;
  259. //** Deprecated `$screen-tablet` as of v3.0.1
  260. $screen-tablet: $screen-sm-min !default;
  261. // Medium screen / desktop
  262. //** Deprecated `$screen-md` as of v3.0.1
  263. $screen-md: 992px !default;
  264. $screen-md-min: $screen-md !default;
  265. //** Deprecated `$screen-desktop` as of v3.0.1
  266. $screen-desktop: $screen-md-min !default;
  267. // Large screen / wide desktop
  268. //** Deprecated `$screen-lg` as of v3.0.1
  269. $screen-lg: 1200px !default;
  270. $screen-lg-min: $screen-lg !default;
  271. //** Deprecated `$screen-lg-desktop` as of v3.0.1
  272. $screen-lg-desktop: $screen-lg-min !default;
  273. // So media queries don't overlap when required, provide a maximum
  274. $screen-xs-max: ($screen-sm-min - 1) !default;
  275. $screen-sm-max: ($screen-md-min - 1) !default;
  276. $screen-md-max: ($screen-lg-min - 1) !default;
  277. //== Grid system
  278. //
  279. //## Define your custom responsive mosaic.
  280. //** Number of columns in the grid.
  281. $grid-columns: 12 !default;
  282. //** Padding between columns. Gets divided in half for the left and right.
  283. $grid-gutter-width: 30px !default;
  284. // Navbar collapse
  285. //** Point at which the navbar becomes uncollapsed.
  286. $grid-float-breakpoint: $screen-sm-min !default;
  287. //** Point at which the navbar begins collapsing.
  288. $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
  289. //== Container sizes
  290. //
  291. //## Define the maximum width of `.container` for different screen sizes.
  292. // Small screen / tablet
  293. $container-tablet: (720px + $grid-gutter-width) !default;
  294. //** For `$screen-sm-min` and up.
  295. $container-sm: $container-tablet !default;
  296. // Medium screen / desktop
  297. $container-desktop: (940px + $grid-gutter-width) !default;
  298. //** For `$screen-md-min` and up.
  299. $container-md: $container-desktop !default;
  300. // Large screen / wide desktop
  301. $container-large-desktop: (1140px + $grid-gutter-width) !default;
  302. //** For `$screen-lg-min` and up.
  303. $container-lg: $container-large-desktop !default;
  304. //== Navbar
  305. //
  306. //##
  307. // Basics of a navbar
  308. $navbar-height: 40px !default;
  309. $navbar-margin-bottom: $line-height-computed !default;
  310. $navbar-border-radius: $border-radius-base !default;
  311. $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
  312. $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
  313. $navbar-collapse-max-height: 340px !default;
  314. $navbar-default-color: $gray !default;
  315. $navbar-default-bg: #fff !default;
  316. $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
  317. // Navbar links
  318. $navbar-default-link-color: $gray !default;
  319. $navbar-default-link-hover-color: $brand-primary !default;
  320. $navbar-default-link-hover-bg: transparent !default;
  321. $navbar-default-link-active-color: $navbar-default-link-hover-color !default;
  322. $navbar-default-link-active-bg: transparent !default;
  323. $navbar-default-link-disabled-color: #444 !default;
  324. $navbar-default-link-disabled-bg: transparent !default;
  325. // Navbar brand label
  326. $navbar-default-brand-color: $navbar-default-link-color !default;
  327. $navbar-default-brand-hover-color: $navbar-default-link-hover-color !default;
  328. $navbar-default-brand-hover-bg: transparent !default;
  329. // Navbar toggle
  330. $navbar-default-toggle-hover-bg: #ddd !default;
  331. $navbar-default-toggle-icon-bar-bg: #ccc !default;
  332. $navbar-default-toggle-border-color: #ddd !default;
  333. //=== Inverted navbar
  334. // Reset inverted navbar basics
  335. $navbar-inverse-color: lighten($brand-primary, 40%) !default;
  336. $navbar-inverse-bg: $brand-primary !default;
  337. $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
  338. // Inverted navbar links
  339. $navbar-inverse-link-color: lighten($brand-primary, 40%) !default;
  340. $navbar-inverse-link-hover-color: #fff !default;
  341. $navbar-inverse-link-hover-bg: transparent !default;
  342. $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
  343. $navbar-inverse-link-active-bg: transparent !default;
  344. $navbar-inverse-link-disabled-color: #ccc !default;
  345. $navbar-inverse-link-disabled-bg: transparent !default;
  346. // Inverted navbar brand label
  347. $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
  348. $navbar-inverse-brand-hover-color: #fff !default;
  349. $navbar-inverse-brand-hover-bg: transparent !default;
  350. // Inverted navbar toggle
  351. $navbar-inverse-toggle-hover-bg: darken($navbar-inverse-bg, 10%) !default;
  352. $navbar-inverse-toggle-icon-bar-bg: #fff !default;
  353. $navbar-inverse-toggle-border-color: darken($navbar-inverse-bg, 10%) !default;
  354. //== Navs
  355. //
  356. //##
  357. //=== Shared nav styles
  358. $nav-link-padding: 10px 15px !default;
  359. $nav-link-hover-bg: $gray-lighter !default;
  360. $nav-disabled-link-color: $gray-light !default;
  361. $nav-disabled-link-hover-color: $gray-light !default;
  362. //== Tabs
  363. $nav-tabs-border-color: #ddd !default;
  364. $nav-tabs-link-hover-border-color: $gray-lighter !default;
  365. $nav-tabs-active-link-hover-bg: $body-bg !default;
  366. $nav-tabs-active-link-hover-color: $gray !default;
  367. $nav-tabs-active-link-hover-border-color: #ddd !default;
  368. $nav-tabs-justified-link-border-color: #ddd !default;
  369. $nav-tabs-justified-active-link-border-color: $body-bg !default;
  370. //== Pills
  371. $nav-pills-border-radius: $border-radius-base !default;
  372. $nav-pills-active-link-hover-bg: $component-active-bg !default;
  373. $nav-pills-active-link-hover-color: $component-active-color !default;
  374. //== Pagination
  375. //
  376. //##
  377. $pagination-color: $headings-color !default;
  378. $pagination-bg: #fff !default;
  379. $pagination-border: #ddd !default;
  380. $pagination-hover-color: #fff !default;
  381. $pagination-hover-bg: $brand-primary !default;
  382. $pagination-hover-border: $brand-primary !default;
  383. $pagination-active-color: #fff !default;
  384. $pagination-active-bg: $brand-primary !default;
  385. $pagination-active-border: $brand-primary !default;
  386. $pagination-disabled-color: $gray-lighter !default;
  387. $pagination-disabled-bg: #fff !default;
  388. $pagination-disabled-border: #ddd !default;
  389. //== Pager
  390. //
  391. //##
  392. $pager-bg: $pagination-bg !default;
  393. $pager-border: $pagination-border !default;
  394. $pager-border-radius: 15px !default;
  395. $pager-hover-bg: $brand-primary !default;
  396. $pager-active-bg: $brand-primary !default;
  397. $pager-active-color: #fff !default;
  398. $pager-disabled-color: $gray-lighter !default;
  399. //== Jumbotron
  400. //
  401. //##
  402. $jumbotron-padding: 30px !default;
  403. $jumbotron-color: inherit !default;
  404. $jumbotron-bg: darken($body-bg, 3%) !default;
  405. $jumbotron-heading-color: inherit !default;
  406. $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
  407. $jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;
  408. //== Form states and alerts
  409. //
  410. //## Define colors for form feedback states and, by default, alerts.
  411. $state-success-text: #468847 !default;
  412. $state-success-bg: #dff0d8 !default;
  413. $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
  414. $state-info-text: #3a87ad !default;
  415. $state-info-bg: #d9edf7 !default;
  416. $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
  417. $state-warning-text: #c09853 !default;
  418. $state-warning-bg: #fcf8e3 !default;
  419. $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 3%) !default;
  420. $state-danger-text: #b94a48 !default;
  421. $state-danger-bg: #f2dede !default;
  422. $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 3%) !default;
  423. //== Tooltips
  424. //
  425. //##
  426. //** Tooltip max width
  427. $tooltip-max-width: 200px !default;
  428. //** Tooltip text color
  429. $tooltip-color: #fff !default;
  430. //** Tooltip background color
  431. $tooltip-bg: #000 !default;
  432. $tooltip-opacity: .9 !default;
  433. //** Tooltip arrow width
  434. $tooltip-arrow-width: 5px !default;
  435. //** Tooltip arrow color
  436. $tooltip-arrow-color: $tooltip-bg !default;
  437. //== Popovers
  438. //
  439. //##
  440. //** Popover body background color
  441. $popover-bg: #fff !default;
  442. //** Popover maximum width
  443. $popover-max-width: 276px !default;
  444. //** Popover border color
  445. $popover-border-color: rgba(0,0,0,.2) !default;
  446. //** Popover fallback border color
  447. $popover-fallback-border-color: #ccc !default;
  448. //** Popover title background color
  449. $popover-title-bg: darken($popover-bg, 3%) !default;
  450. //** Popover arrow width
  451. $popover-arrow-width: 10px !default;
  452. //** Popover arrow color
  453. $popover-arrow-color: $popover-bg !default;
  454. //** Popover outer arrow width
  455. $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
  456. //** Popover outer arrow color
  457. $popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
  458. //** Popover outer arrow fallback color
  459. $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
  460. //== Labels
  461. //
  462. //##
  463. //** Default label background color
  464. $label-default-bg: $btn-default-bg !default;
  465. //** Primary label background color
  466. $label-primary-bg: $brand-primary !default;
  467. //** Success label background color
  468. $label-success-bg: $brand-success !default;
  469. //** Info label background color
  470. $label-info-bg: $brand-info !default;
  471. //** Warning label background color
  472. $label-warning-bg: $brand-warning !default;
  473. //** Danger label background color
  474. $label-danger-bg: $brand-danger !default;
  475. //** Default label text color
  476. $label-color: #fff !default;
  477. //** Default text color of a linked label
  478. $label-link-hover-color: #fff !default;
  479. //== Modals
  480. //
  481. //##
  482. //** Padding applied to the modal body
  483. $modal-inner-padding: 20px !default;
  484. //** Padding applied to the modal title
  485. $modal-title-padding: 15px !default;
  486. //** Modal title line-height
  487. $modal-title-line-height: $line-height-base !default;
  488. //** Background color of modal content area
  489. $modal-content-bg: #fff !default;
  490. //** Modal content border color
  491. $modal-content-border-color: rgba(0,0,0,.2) !default;
  492. //** Modal content border color **for IE8**
  493. $modal-content-fallback-border-color: #999 !default;
  494. //** Modal backdrop background color
  495. $modal-backdrop-bg: #000 !default;
  496. //** Modal backdrop opacity
  497. $modal-backdrop-opacity: .5 !default;
  498. //** Modal header border color
  499. $modal-header-border-color: #e5e5e5 !default;
  500. //** Modal header background color
  501. $modal-header-bg: $combodo-dark-gray;
  502. //** Modal title color
  503. $modal-title-color: $white;
  504. //** Modal close button color
  505. $modal-close-color: $white;
  506. //** Modal footer border color
  507. $modal-footer-border-color: $modal-header-border-color !default;
  508. $modal-lg: 900px !default;
  509. $modal-md: 600px !default;
  510. $modal-sm: 300px !default;
  511. //== Alerts
  512. //
  513. //## Define alert colors, border radius, and padding.
  514. $alert-padding: 15px !default;
  515. $alert-border-radius: $border-radius-base !default;
  516. $alert-link-font-weight: bold !default;
  517. $alert-success-bg: $state-success-bg !default;
  518. $alert-success-text: $state-success-text !default;
  519. $alert-success-border: $state-success-border !default;
  520. $alert-info-bg: $state-info-bg !default;
  521. $alert-info-text: $state-info-text !default;
  522. $alert-info-border: $state-info-border !default;
  523. $alert-warning-bg: $state-warning-bg !default;
  524. $alert-warning-text: $state-warning-text !default;
  525. $alert-warning-border: $state-warning-border !default;
  526. $alert-danger-bg: $state-danger-bg !default;
  527. $alert-danger-text: $state-danger-text !default;
  528. $alert-danger-border: $state-danger-border !default;
  529. //== Progress bars
  530. //
  531. //##
  532. //** Background color of the whole progress component
  533. $progress-bg: #f5f5f5 !default;
  534. //** Progress bar text color
  535. $progress-bar-color: #fff !default;
  536. //** Variable for setting rounded corners on progress bar.
  537. $progress-border-radius: $border-radius-base !default;
  538. //** Default progress bar color
  539. $progress-bar-bg: $brand-primary !default;
  540. //** Success progress bar color
  541. $progress-bar-success-bg: $brand-success !default;
  542. //** Warning progress bar color
  543. $progress-bar-warning-bg: $brand-warning !default;
  544. //** Danger progress bar color
  545. $progress-bar-danger-bg: $brand-danger !default;
  546. //** Info progress bar color
  547. $progress-bar-info-bg: $brand-info !default;
  548. //== List group
  549. //
  550. //##
  551. //** Background color on `.list-group-item`
  552. $list-group-bg: #fff !default;
  553. //** `.list-group-item` border color
  554. $list-group-border: #ddd !default;
  555. //** List group border radius
  556. $list-group-border-radius: $border-radius-base !default;
  557. //** Background color of single list items on hover
  558. $list-group-hover-bg: #f5f5f5 !default;
  559. //** Text color of active list items
  560. $list-group-active-color: $component-active-color !default;
  561. //** Background color of active list items
  562. $list-group-active-bg: $component-active-bg !default;
  563. //** Border color of active list elements
  564. $list-group-active-border: $list-group-active-bg !default;
  565. //** Text color for content within active list items
  566. $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
  567. //** Text color of disabled list items
  568. $list-group-disabled-color: $gray-light !default;
  569. //** Background color of disabled list items
  570. $list-group-disabled-bg: $gray-lighter !default;
  571. //** Text color for content within disabled list items
  572. $list-group-disabled-text-color: $list-group-disabled-color !default;
  573. $list-group-link-color: #555 !default;
  574. $list-group-link-hover-color: $list-group-link-color !default;
  575. $list-group-link-heading-color: #333 !default;
  576. //== Panels
  577. //
  578. //##
  579. $panel-bg: #fff !default;
  580. $panel-body-padding: 15px !default;
  581. $panel-heading-padding: 10px 15px !default;
  582. $panel-footer-padding: $panel-heading-padding !default;
  583. $panel-border-radius: $border-radius-base !default;
  584. //** Border color for elements within panels
  585. $panel-inner-border: #ddd !default;
  586. $panel-footer-bg: $body-bg !default;
  587. $panel-default-text: $gray-dark !default;
  588. $panel-default-border: #ddd !default;
  589. $panel-default-heading-bg: $panel-footer-bg !default;
  590. $panel-primary-text: #fff !default;
  591. $panel-primary-border: $brand-primary !default;
  592. $panel-primary-heading-bg: $brand-primary !default;
  593. $panel-success-text: #fff !default;
  594. $panel-success-border: $brand-success !default;
  595. $panel-success-heading-bg: $brand-success !default;
  596. $panel-info-text: #fff !default;
  597. $panel-info-border: $brand-info !default;
  598. $panel-info-heading-bg: $brand-info !default;
  599. $panel-warning-text: #fff !default;
  600. $panel-warning-border: $brand-warning !default;
  601. $panel-warning-heading-bg: $brand-warning !default;
  602. $panel-danger-text: #fff !default;
  603. $panel-danger-border: $brand-danger !default;
  604. $panel-danger-heading-bg: $brand-danger !default;
  605. //== Thumbnails
  606. //
  607. //##
  608. //** Padding around the thumbnail image
  609. $thumbnail-padding: 4px !default;
  610. //** Thumbnail background color
  611. $thumbnail-bg: $body-bg !default;
  612. //** Thumbnail border color
  613. $thumbnail-border: #ddd !default;
  614. //** Thumbnail border radius
  615. $thumbnail-border-radius: $border-radius-base !default;
  616. //** Custom text color for thumbnail captions
  617. $thumbnail-caption-color: $text-color !default;
  618. //** Padding around the thumbnail caption
  619. $thumbnail-caption-padding: 9px !default;
  620. //== Wells
  621. //
  622. //##
  623. $well-bg: darken($body-bg, 3%) !default;
  624. $well-border: darken($well-bg, 7%) !default;
  625. //== Badges
  626. //
  627. //##
  628. $badge-color: #fff !default;
  629. //** Linked badge text color on hover
  630. $badge-link-hover-color: #fff !default;
  631. $badge-bg: $link-color !default;
  632. //** Badge text color in active nav link
  633. $badge-active-color: $link-color !default;
  634. //** Badge background color in active nav link
  635. $badge-active-bg: #fff !default;
  636. $badge-font-weight: bold !default;
  637. $badge-line-height: 1 !default;
  638. $badge-border-radius: 10px !default;
  639. //== Breadcrumbs
  640. //
  641. //##
  642. $breadcrumb-padding-vertical: 8px !default;
  643. $breadcrumb-padding-horizontal: 15px !default;
  644. //** Breadcrumb background color
  645. $breadcrumb-bg: transparent !default;
  646. //** Breadcrumb text color
  647. $breadcrumb-color: #ccc !default;
  648. //** Text color of current page in the breadcrumb
  649. $breadcrumb-active-color: $gray-light !default;
  650. //** Textual separator for between breadcrumb elements
  651. $breadcrumb-separator: "/" !default;
  652. //== Carousel
  653. //
  654. //##
  655. $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
  656. $carousel-control-color: #fff !default;
  657. $carousel-control-width: 15% !default;
  658. $carousel-control-opacity: .5 !default;
  659. $carousel-control-font-size: 20px !default;
  660. $carousel-indicator-active-bg: #fff !default;
  661. $carousel-indicator-border-color: #fff !default;
  662. $carousel-caption-color: #fff !default;
  663. //== Close
  664. //
  665. //##
  666. $close-font-weight: bold !default;
  667. $close-color: #000 !default;
  668. $close-text-shadow: 0 1px 0 #fff !default;
  669. //== Code
  670. //
  671. //##
  672. $code-color: #c7254e !default;
  673. $code-bg: #f9f2f4 !default;
  674. $kbd-color: #fff !default;
  675. $kbd-bg: #333 !default;
  676. $pre-bg: #f5f5f5 !default;
  677. $pre-color: $gray-dark !default;
  678. $pre-border-color: #ccc !default;
  679. $pre-scrollable-max-height: 340px !default;
  680. //== Type
  681. //
  682. //##
  683. //** Horizontal offset for forms and lists.
  684. $component-offset-horizontal: 180px !default;
  685. //** Text muted color
  686. $text-muted: $gray-light !default;
  687. //** Abbreviations and acronyms border color
  688. $abbr-border-color: $gray-light !default;
  689. //** Headings small color
  690. $headings-small-color: $gray-light !default;
  691. //** Blockquote small color
  692. $blockquote-small-color: $gray-light !default;
  693. //** Blockquote font size
  694. $blockquote-font-size: ($font-size-base * 1.25) !default;
  695. //** Blockquote border color
  696. $blockquote-border-color: $gray-lighter !default;
  697. //** Page header border color
  698. $page-header-border-color: $gray-lighter !default;
  699. //** Width of horizontal description list titles
  700. $dl-horizontal-offset: $component-offset-horizontal !default;
  701. //** Point at which .dl-horizontal becomes horizontal
  702. $dl-horizontal-breakpoint: $grid-float-breakpoint !default;
  703. //** Horizontal line color.
  704. $hr-border: $gray-lighter !default;