Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2016-02-19 19:23:15 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2016-02-19 19:23:15 +0300
commit59a78d6f71e79f73a954a87a4b3769d9c85c49f2 (patch)
tree1c2e4c2cc719b946aa2e930293494a4440f0b551 /templates
parent76dfa96d6a6f519abb00f27680fbafa2714900d5 (diff)
rake update[v4-dev]
Diffstat (limited to 'templates')
-rw-r--r--templates/project/_bootstrap-variables.scss144
1 files changed, 107 insertions, 37 deletions
diff --git a/templates/project/_bootstrap-variables.scss b/templates/project/_bootstrap-variables.scss
index 907734f..dd812ae 100644
--- a/templates/project/_bootstrap-variables.scss
+++ b/templates/project/_bootstrap-variables.scss
@@ -18,6 +18,18 @@
// Fonts
// Components
+@mixin _assert-ascending($map, $map-name) {
+// $prev-key: null;
+// $prev-num: null;
+// @each $key, $num in $map {
+// @if $prev-num != null and $prev-num >= $num {
+// @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !";
+// }
+// $prev-key: $key;
+// $prev-num: $num;
+// }
+}
+
// General variable structure
//
// Variable format should follow the `$component-modifier-state-property` order.
@@ -51,12 +63,14 @@
// $enable-transitions: false;
// $enable-hover-media-query: false;
// $enable-grid-classes: true;
+// $enable-print-styles: true;
// Spacing
//
// Control the default styling of most Bootstrap elements by modifying these
// variables. Mostly focused on spacing.
+// You can add more entries to the $spacers map, should you need more variation.
// $spacer: 1rem;
// $spacer-x: $spacer;
@@ -102,7 +116,7 @@
// Grid breakpoints
//
-// Define the minimum and maximum dimensions at which your layout will change,
+// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.
// $grid-breakpoints: (
@@ -112,6 +126,7 @@
// lg: 992px,
// xl: 1200px
// );
+@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
// Grid containers
@@ -124,6 +139,7 @@
// lg: 940px,
// xl: 1140px
// );
+@include _assert-ascending($container-max-widths, "$container-max-widths");
// Grid columns
@@ -131,14 +147,14 @@
// Set the number of columns and specify the width of the gutters.
// $grid-columns: 12;
-// $grid-gutter-width: 1.875rem; // 30px
+// $grid-gutter-width: 30px;
// Typography
//
// Font, line-height, and color for body text, headings, and more.
-// $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
+// $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
// $font-family-serif: Georgia, "Times New Roman", Times, serif;
// $font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
// $font-family-base: $font-family-sans-serif;
@@ -151,6 +167,8 @@
// $font-size-sm: .875rem;
// $font-size-xs: .75rem;
+// $line-height-base: 1.5;
+
// $font-size-h1: 2.5rem;
// $font-size-h2: 2rem;
// $font-size-h3: 1.75rem;
@@ -168,8 +186,6 @@
// $display3-weight: 300;
// $display4-weight: 300;
-// $line-height: 1.5;
-
// $headings-margin-bottom: ($spacer / 2);
// $headings-font-family: inherit;
// $headings-font-weight: 500;
@@ -179,6 +195,8 @@
// $lead-font-size: 1.25rem;
// $lead-font-weight: 300;
+// $small-font-size: 80%;
+
// $text-muted: $gray-light;
// $abbr-border-color: $gray-light;
@@ -186,10 +204,13 @@
// $blockquote-small-color: $gray-light;
// $blockquote-font-size: ($font-size-base * 1.25);
// $blockquote-border-color: $gray-lighter;
+// $blockquote-border-width: .25rem;
// $hr-border-color: rgba(0,0,0,.1);
// $hr-border-width: $border-width;
+// $mark-padding: .2em;
+
// $dt-font-weight: bold;
// $kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25);
@@ -237,7 +258,8 @@
// For each of Bootstrap's buttons, define text, background and border color.
// $btn-padding-x: 1rem;
-// $btn-padding-y: .375rem;
+// $btn-padding-y: .5rem;
+// $btn-line-height: 1.25;
// $btn-font-weight: normal;
// $btn-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
// $btn-active-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
@@ -268,10 +290,10 @@
// $btn-link-disabled-color: $gray-light;
-// $btn-padding-x-sm: .75rem;
+// $btn-padding-x-sm: .5rem;
// $btn-padding-y-sm: .25rem;
-// $btn-padding-x-lg: 1.25rem;
+// $btn-padding-x-lg: 1.5rem;
// $btn-padding-y-lg: .75rem;
// $btn-block-spacing-y: 5px;
@@ -289,13 +311,14 @@
// Forms
// $input-padding-x: .75rem;
-// $input-padding-y: .375rem;
+// $input-padding-y: .5rem;
+// $input-line-height: 1.25;
// $input-bg: #fff;
// $input-bg-disabled: $gray-lighter;
// $input-color: $gray;
-// $input-border-color: #ccc;
+// $input-border-color: rgba(0,0,0,.15);
// $input-btn-border-width: $border-width; // For form controls and buttons
// $input-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
@@ -308,13 +331,13 @@
// $input-color-placeholder: #999;
-// $input-padding-x-sm: .75rem;
-// $input-padding-y-sm: .275rem;
+// $input-padding-x-sm: .5rem;
+// $input-padding-y-sm: .25rem;
-// $input-padding-x-lg: 1.25rem;
+// $input-padding-x-lg: 1.5rem;
// $input-padding-y-lg: .75rem;
-// $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2));
+// $input-height: (($font-size-base * $line-height-base) + ($input-padding-y * 2));
// $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2));
// $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2));
@@ -349,13 +372,13 @@
// $custom-control-active-indicator-box-shadow: none;
// $custom-checkbox-radius: $border-radius;
-// $custom-checkbox-checked-icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=";
+// $custom-checkbox-checked-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
// $custom-checkbox-indeterminate-bg: #0074d9;
-// $custom-checkbox-indeterminate-icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K";
+// $custom-checkbox-indeterminate-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
// $custom-checkbox-indeterminate-box-shadow: none;
// $custom-radio-radius: 50%;
-// $custom-radio-checked-icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==";
+// $custom-radio-checked-icon: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
// $custom-select-padding-x: .75rem ;
// $custom-select-padding-y: .375rem;
@@ -363,13 +386,13 @@
// $custom-select-color: $input-color;
// $custom-select-bg: #fff;
// $custom-select-bg-size: 8px 10px; // In pixels because image dimensions
-// $custom-select-indicator: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC";
+// $custom-select-indicator: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
// $custom-select-border-width: $input-btn-border-width;
// $custom-select-border-color: $input-border-color;
// $custom-select-border-radius: $border-radius;
// $custom-select-focus-border-color: #51a7e8;
-// $custom-select-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5);
+// $custom-select-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 5px rgba(81, 167, 232, .5);
// $custom-select-sm-padding-y: .2rem;
// $custom-select-sm-font-size: 75%;
@@ -387,22 +410,31 @@
// $custom-file-border-color: #ddd;
// $custom-file-border-radius: $border-radius;
// $custom-file-box-shadow: inset 0 .2rem .4rem rgba(0,0,0,.05);
-// $custom-file-placeholder: "Choose file...";
-// $custom-file-button-label: "Browse";
// $custom-file-button-color: $custom-file-color;
// $custom-file-button-bg: #eee;
+// $custom-file-text: (
+// placeholder: (
+// en: "Choose file..."
+// ),
+// button-label: (
+// en: "Browse"
+// )
+// );
// Form validation icons
-// $form-icon-success: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
-// $form-icon-warning: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
-// $form-icon-danger: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
+// $form-icon-success: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
+// $form-icon-warning: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
+// $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
// Dropdowns
//
// Dropdown menu container and contents.
+// $dropdown-min-width: 160px;
+// $dropdown-padding-y: 5px;
+// $dropdown-margin-top: 2px;
// $dropdown-bg: #fff;
// $dropdown-border-color: rgba(0,0,0,.15);
// $dropdown-border-width: $border-width;
@@ -418,6 +450,8 @@
// $dropdown-link-disabled-color: $gray-light;
+// $dropdown-item-padding-x: 20px;
+
// $dropdown-header-color: $gray-light;
@@ -442,6 +476,7 @@
// $navbar-border-radius: $border-radius;
// $navbar-padding-x: $spacer;
// $navbar-padding-y: ($spacer / 2);
+// $navbar-brand-padding-y: .25rem;
// $navbar-dark-color: rgba(255,255,255,.5);
// $navbar-dark-hover-color: rgba(255,255,255,.75);
@@ -526,6 +561,7 @@
// $state-warning-text: #8a6d3b;
// $state-warning-bg: #fcf8e3;
+// $mark-bg: $state-warning-bg;
// $state-warning-border: darken($state-warning-bg, 5%);
// $state-danger-text: #a94442;
@@ -538,7 +574,7 @@
// $card-spacer-y: .75rem;
// $card-border-width: 1px;
// $card-border-radius: $border-radius;
-// $card-border-color: #e5e5e5;
+// $card-border-color: rgba(0,0,0,.125);
// $card-border-radius-inner: $card-border-radius;
// $card-cap-bg: #f5f5f5;
// $card-bg: #fff;
@@ -547,6 +583,8 @@
// $card-deck-margin: .625rem;
+// $card-columns-sm-up-column-gap: 1.25rem;
+
// Tooltips
@@ -581,33 +619,44 @@
// $popover-arrow-color: $popover-bg;
// $popover-arrow-outer-width: ($popover-arrow-width + 1px);
-// $popover-arrow-outer-color: fade-in($popover-border-color, 0.05);
+// $popover-arrow-outer-color: fade-in($popover-border-color, .05);
-// Labels
+// Tags
-// $label-default-bg: $gray-light;
-// $label-primary-bg: $brand-primary;
-// $label-success-bg: $brand-success;
-// $label-info-bg: $brand-info;
-// $label-warning-bg: $brand-warning;
-// $label-danger-bg: $brand-danger;
+// $tag-default-bg: $gray-light;
+// $tag-primary-bg: $brand-primary;
+// $tag-success-bg: $brand-success;
+// $tag-info-bg: $brand-info;
+// $tag-warning-bg: $brand-warning;
+// $tag-danger-bg: $brand-danger;
-// $label-color: #fff;
-// $label-link-hover-color: #fff;
-// $label-font-weight: bold;
+// $tag-color: #fff;
+// $tag-link-hover-color: #fff;
+// $tag-font-size: 75%;
+// $tag-font-weight: bold;
+// $tag-padding-x: .4em;
+// $tag-padding-y: .25em;
+// $tag-pill-padding-x: .6em;
+// Use a higher than normal value to ensure completely rounded edges when
+// customizing padding or font-size on labels.
+// $tag-pill-border-radius: 10rem;
// Modals
// Padding applied to the modal body
// $modal-inner-padding: 15px;
+// $modal-dialog-margin: 10px;
+// $modal-dialog-sm-up-margin-y: 30px;
+
// $modal-title-padding: 15px;
-// $modal-title-line-height: $line-height;
+// $modal-title-line-height: $line-height-base;
// $modal-content-bg: #fff;
// $modal-content-border-color: rgba(0,0,0,.2);
+// $modal-content-border-width: $border-width;
// $modal-content-xs-box-shadow: 0 3px 9px rgba(0,0,0,.5);
// $modal-content-sm-up-box-shadow: 0 5px 15px rgba(0,0,0,.5);
@@ -615,6 +664,8 @@
// $modal-backdrop-opacity: .5;
// $modal-header-border-color: #e5e5e5;
// $modal-footer-border-color: $modal-header-border-color;
+// $modal-header-border-width: $modal-content-border-width;
+// $modal-footer-border-width: $modal-header-border-width;
// $modal-lg: 900px;
// $modal-md: 600px;
@@ -682,6 +733,10 @@
// $list-group-link-hover-color: $list-group-link-color;
// $list-group-link-heading-color: #333;
+// $list-group-item-padding-x: 1.25rem;
+// $list-group-item-padding-y: .75rem;
+// $list-group-item-heading-margin-bottom: 5px;
+
// Image thumbnails
@@ -693,6 +748,11 @@
// $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075);
+// Figures
+
+// $figure-caption-font-size: 90%;
+
+
// Breadcrumbs
// $breadcrumb-padding-y: .75rem;
@@ -718,12 +778,19 @@
// $carousel-control-color: #fff;
// $carousel-control-width: 15%;
+// $carousel-control-sm-up-size: 30px;
// $carousel-control-opacity: .5;
// $carousel-control-font-size: 20px;
+// $carousel-indicators-width: 60%;
+
+// $carousel-indicator-size: 10px;
+// $carousel-indicator-active-size: 12px;
// $carousel-indicator-active-bg: #fff;
// $carousel-indicator-border-color: #fff;
+// $carousel-caption-width: 70%;
+// $carousel-caption-sm-up-width: 60%;
// $carousel-caption-color: #fff;
@@ -736,6 +803,9 @@
// Code
+// $code-font-size: 90%;
+// $code-padding-x: .4rem;
+// $code-padding-y: .2rem;
// $code-color: #bd4147;
// $code-bg: #f7f7f9;