variables.less 20 KB

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