Skip to content
Snippets Groups Projects
Verified Commit e8dc9c4c authored by Björn Ludwig's avatar Björn Ludwig
Browse files

Replace "accessibility" variable names by former names

parent ec12708e
Branches
No related tags found
No related merge requests found
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
//## Settings for some of the most global styles. //## Settings for some of the most global styles.
//** Background color for `<body>`. //** Background color for `<body>`.
@accessibility-body-bg: #eee; @body-bg: #eee;
//** Global text color on `<body>`. //** Global text color on `<body>`.
@accessibility-text-color: @gray-dark; @text-color: @gray-dark;
//** Global textual link color. //** Global textual link color.
@link-color: #084889; @link-color: #084889;
...@@ -48,21 +48,21 @@ ...@@ -48,21 +48,21 @@
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; @font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
@font-family-base: @font-family-sans-serif; @font-family-base: @font-family-sans-serif;
@accessibility-font-size-base: 20px; @font-size-base: 20px;
@accessibility-font-size-large: ceil((@accessibility-font-size-base * 1.25)); // ~18px @font-size-large: ceil((@font-size-base * 1.25)); // ~18px
@accessibility-font-size-small: ceil((@accessibility-font-size-base * 0.85)); // ~12px @font-size-small: ceil((@font-size-base * 0.85)); // ~12px
@accessibility-font-size-h1: floor((@accessibility-font-size-base * 2.6)); // ~36px @font-size-h1: floor((@font-size-base * 2.6)); // ~36px
@accessibility-font-size-h2: floor((@accessibility-font-size-base * 2.15)); // ~30px @font-size-h2: floor((@font-size-base * 2.15)); // ~30px
@accessibility-font-size-h3: ceil((@accessibility-font-size-base * 1.7)); // ~24px @font-size-h3: ceil((@font-size-base * 1.7)); // ~24px
@accessibility-font-size-h4: ceil((@accessibility-font-size-base * 1.25)); // ~18px @font-size-h4: ceil((@font-size-base * 1.25)); // ~18px
@accessibility-font-size-h5: @accessibility-font-size-base; @font-size-h5: @font-size-base;
@accessibility-font-size-h6: ceil((@accessibility-font-size-base * 0.85)); // ~12px @font-size-h6: ceil((@font-size-base * 0.85)); // ~12px
//** Unit-less `line-height` for use in components like buttons. //** Unit-less `line-height` for use in components like buttons.
@line-height-base: 1.428571429; // 20/14 @line-height-base: 1.428571429; // 20/14
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc. //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
@line-height-computed: floor((@accessibility-font-size-base * @line-height-base)); // ~20px @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
//** By default, this inherits from the `<body>`. //** By default, this inherits from the `<body>`.
@headings-font-family: inherit; @headings-font-family: inherit;
...@@ -208,9 +208,9 @@ ...@@ -208,9 +208,9 @@
//** Default `.form-control` height //** Default `.form-control` height
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2); @input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
//** Large `.form-control` height //** Large `.form-control` height
@input-height-large: (ceil(@accessibility-font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2); @input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
//** Small `.form-control` height //** Small `.form-control` height
@input-height-small: (floor(@accessibility-font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2); @input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
//** `.form-group` margin //** `.form-group` margin
@form-group-margin-bottom: 15px; @form-group-margin-bottom: 15px;
...@@ -430,12 +430,12 @@ ...@@ -430,12 +430,12 @@
@nav-tabs-link-hover-border-color: @gray-lighter; @nav-tabs-link-hover-border-color: @gray-lighter;
@nav-tabs-active-link-hover-bg: @accessibility-body-bg; @nav-tabs-active-link-hover-bg: @body-bg;
@nav-tabs-active-link-hover-color: @gray; @nav-tabs-active-link-hover-color: @gray;
@nav-tabs-active-link-hover-border-color: #ddd; @nav-tabs-active-link-hover-border-color: #ddd;
@nav-tabs-justified-link-border-color: #ddd; @nav-tabs-justified-link-border-color: #ddd;
@nav-tabs-justified-active-link-border-color: @accessibility-body-bg; @nav-tabs-justified-active-link-border-color: @body-bg;
//== Pills //== Pills
@nav-pills-border-radius: @border-radius-base; @nav-pills-border-radius: @border-radius-base;
...@@ -488,8 +488,8 @@ ...@@ -488,8 +488,8 @@
@jumbotron-color: inherit; @jumbotron-color: inherit;
@jumbotron-bg: @gray-lighter; @jumbotron-bg: @gray-lighter;
@jumbotron-heading-color: inherit; @jumbotron-heading-color: inherit;
@jumbotron-font-size: ceil((@accessibility-font-size-base * 1.5)); @jumbotron-font-size: ceil((@font-size-base * 1.5));
@jumbotron-heading-font-size: ceil((@accessibility-font-size-base * 4.5)); @jumbotron-heading-font-size: ceil((@font-size-base * 4.5));
//== Form states and alerts //== Form states and alerts
...@@ -744,14 +744,14 @@ ...@@ -744,14 +744,14 @@
//** Padding around the thumbnail image //** Padding around the thumbnail image
@thumbnail-padding: 4px; @thumbnail-padding: 4px;
//** Thumbnail background color //** Thumbnail background color
@thumbnail-bg: @accessibility-body-bg; @thumbnail-bg: @body-bg;
//** Thumbnail border color //** Thumbnail border color
@thumbnail-border: #ddd; @thumbnail-border: #ddd;
//** Thumbnail border radius //** Thumbnail border radius
@thumbnail-border-radius: @border-radius-base; @thumbnail-border-radius: @border-radius-base;
//** Custom text color for thumbnail captions //** Custom text color for thumbnail captions
@thumbnail-caption-color: @accessibility-text-color; @thumbnail-caption-color: @text-color;
//** Padding around the thumbnail caption //** Padding around the thumbnail caption
@thumbnail-caption-padding: 9px; @thumbnail-caption-padding: 9px;
...@@ -856,7 +856,7 @@ ...@@ -856,7 +856,7 @@
//** Blockquote small color //** Blockquote small color
@blockquote-small-color: @gray-light; @blockquote-small-color: @gray-light;
//** Blockquote font size //** Blockquote font size
@blockquote-font-size: (@accessibility-font-size-base * 1.25); @blockquote-font-size: (@font-size-base * 1.25);
//** Blockquote border color //** Blockquote border color
@blockquote-border-color: @gray-lighter; @blockquote-border-color: @gray-lighter;
//** Page header border color //** Page header border color
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment