variables.less 26 KB

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