bootstrap 4.0.0.alpha3 → 4.0.0.alpha3.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bootstrap might be problematic. Click here for more details.

Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -2
  3. data/CHANGELOG.md +5 -0
  4. data/LICENSE +1 -1
  5. data/README.md +3 -3
  6. data/Rakefile +11 -8
  7. data/assets/javascripts/bootstrap.js +61 -48
  8. data/assets/javascripts/bootstrap.min.js +4 -4
  9. data/assets/javascripts/bootstrap/alert.js +2 -2
  10. data/assets/javascripts/bootstrap/button.js +4 -2
  11. data/assets/javascripts/bootstrap/carousel.js +10 -6
  12. data/assets/javascripts/bootstrap/collapse.js +2 -2
  13. data/assets/javascripts/bootstrap/dropdown.js +12 -8
  14. data/assets/javascripts/bootstrap/modal.js +9 -12
  15. data/assets/javascripts/bootstrap/popover.js +2 -2
  16. data/assets/javascripts/bootstrap/scrollspy.js +4 -3
  17. data/assets/javascripts/bootstrap/tab.js +2 -2
  18. data/assets/javascripts/bootstrap/tooltip.js +2 -2
  19. data/assets/javascripts/bootstrap/util.js +8 -3
  20. data/assets/stylesheets/_bootstrap-grid.scss +2 -41
  21. data/assets/stylesheets/_bootstrap-reboot.scss +1 -0
  22. data/assets/stylesheets/_bootstrap.scss +5 -7
  23. data/assets/stylesheets/bootstrap/_alert.scss +1 -10
  24. data/assets/stylesheets/bootstrap/_breadcrumb.scss +25 -10
  25. data/assets/stylesheets/bootstrap/_button-group.scss +22 -12
  26. data/assets/stylesheets/bootstrap/_buttons.scss +14 -11
  27. data/assets/stylesheets/bootstrap/_card.scss +59 -30
  28. data/assets/stylesheets/bootstrap/_carousel.scss +25 -24
  29. data/assets/stylesheets/bootstrap/_close.scss +3 -0
  30. data/assets/stylesheets/bootstrap/_code.scss +6 -7
  31. data/assets/stylesheets/bootstrap/_custom-forms.scss +144 -105
  32. data/assets/stylesheets/bootstrap/_custom.scss +4 -0
  33. data/assets/stylesheets/bootstrap/_dropdown.scss +10 -24
  34. data/assets/stylesheets/bootstrap/_forms.scss +97 -185
  35. data/assets/stylesheets/bootstrap/_grid.scss +9 -46
  36. data/assets/stylesheets/bootstrap/_images.scss +3 -4
  37. data/assets/stylesheets/bootstrap/_input-group.scss +25 -26
  38. data/assets/stylesheets/bootstrap/_list-group.scss +33 -50
  39. data/assets/stylesheets/bootstrap/_media.scss +4 -5
  40. data/assets/stylesheets/bootstrap/_mixins.scss +1 -2
  41. data/assets/stylesheets/bootstrap/_modal.scss +13 -27
  42. data/assets/stylesheets/bootstrap/_nav.scss +18 -23
  43. data/assets/stylesheets/bootstrap/_navbar.scss +54 -26
  44. data/assets/stylesheets/bootstrap/_normalize.scss +164 -168
  45. data/assets/stylesheets/bootstrap/_pagination.scss +1 -1
  46. data/assets/stylesheets/bootstrap/_popover.scss +12 -5
  47. data/assets/stylesheets/bootstrap/_print.scss +93 -65
  48. data/assets/stylesheets/bootstrap/_progress.scss +43 -54
  49. data/assets/stylesheets/bootstrap/_reboot.scss +59 -13
  50. data/assets/stylesheets/bootstrap/_tables.scss +32 -27
  51. data/assets/stylesheets/bootstrap/_tags.scss +77 -0
  52. data/assets/stylesheets/bootstrap/_tooltip.scss +7 -5
  53. data/assets/stylesheets/bootstrap/_type.scss +22 -29
  54. data/assets/stylesheets/bootstrap/_utilities.scss +9 -95
  55. data/assets/stylesheets/bootstrap/_variables.scss +302 -139
  56. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +1 -1
  57. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +22 -9
  58. data/assets/stylesheets/bootstrap/mixins/_cards.scss +8 -2
  59. data/assets/stylesheets/bootstrap/mixins/_forms.scss +7 -4
  60. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +4 -4
  61. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +37 -11
  62. data/assets/stylesheets/bootstrap/mixins/_grid.scss +18 -9
  63. data/assets/stylesheets/bootstrap/mixins/_hover.scss +10 -9
  64. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +2 -3
  65. data/assets/stylesheets/bootstrap/mixins/_progress.scss +5 -0
  66. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +2 -3
  67. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +1 -1
  68. data/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +3 -3
  69. data/assets/stylesheets/bootstrap/mixins/{_label.scss → _tag.scss} +2 -2
  70. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +1 -1
  71. data/assets/stylesheets/bootstrap/{_utilities-background.scss → utilities/_background.scss} +1 -4
  72. data/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
  73. data/assets/stylesheets/bootstrap/utilities/_display.scss +13 -0
  74. data/assets/stylesheets/bootstrap/utilities/_flex.scss +37 -0
  75. data/assets/stylesheets/bootstrap/utilities/_pulls.scss +13 -0
  76. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
  77. data/assets/stylesheets/bootstrap/{_utilities-spacing.scss → utilities/_spacing.scss} +4 -0
  78. data/assets/stylesheets/bootstrap/utilities/_text.scss +51 -0
  79. data/assets/stylesheets/bootstrap/{_utilities-responsive.scss → utilities/_visibility.scss} +9 -1
  80. data/bootstrap.gemspec +1 -1
  81. data/lib/bootstrap.rb +6 -6
  82. data/lib/bootstrap/engine.rb +2 -0
  83. data/lib/bootstrap/version.rb +2 -2
  84. data/tasks/updater/network.rb +3 -1
  85. data/templates/project/_bootstrap-variables.scss +303 -140
  86. data/test/dummy_rails/config/boot.rb +1 -1
  87. data/test/gemfiles/rails_4_2.gemfile +4 -4
  88. data/test/gemfiles/rails_5_0.gemfile +12 -0
  89. data/test/rails_test.rb +1 -1
  90. data/test/support/dummy_rails_integration.rb +2 -2
  91. metadata +19 -14
  92. data/assets/stylesheets/bootstrap/_labels.scss +0 -77
  93. data/assets/stylesheets/bootstrap/_pager.scss +0 -57
  94. data/assets/stylesheets/bootstrap/mixins/_center-block.scss +0 -7
  95. data/test/gemfiles/rails_head.gemfile +0 -20
@@ -0,0 +1,37 @@
1
+ // Flex variation
2
+ //
3
+ // Custom styles for additional flex alignment options.
4
+
5
+ @if $enable-flex {
6
+ @each $breakpoint in map-keys($grid-breakpoints) {
7
+ // Flex column reordering
8
+ @include media-breakpoint-up($breakpoint) {
9
+ .flex-#{$breakpoint}-first { order: -1; }
10
+ .flex-#{$breakpoint}-last { order: 1; }
11
+ .flex-#{$breakpoint}-unordered { order: 0; }
12
+ }
13
+
14
+ // Alignment for every item
15
+ @include media-breakpoint-up($breakpoint) {
16
+ .flex-items-#{$breakpoint}-top { align-items: flex-start; }
17
+ .flex-items-#{$breakpoint}-middle { align-items: center; }
18
+ .flex-items-#{$breakpoint}-bottom { align-items: flex-end; }
19
+ }
20
+
21
+ // Alignment per item
22
+ @include media-breakpoint-up($breakpoint) {
23
+ .flex-#{$breakpoint}-top { align-self: flex-start; }
24
+ .flex-#{$breakpoint}-middle { align-self: center; }
25
+ .flex-#{$breakpoint}-bottom { align-self: flex-end; }
26
+ }
27
+
28
+ // Horizontal alignment of item
29
+ @include media-breakpoint-up($breakpoint) {
30
+ .flex-items-#{$breakpoint}-left { justify-content: flex-start; }
31
+ .flex-items-#{$breakpoint}-center { justify-content: center; }
32
+ .flex-items-#{$breakpoint}-right { justify-content: flex-end; }
33
+ .flex-items-#{$breakpoint}-around { justify-content: space-around; }
34
+ .flex-items-#{$breakpoint}-between { justify-content: space-between; }
35
+ }
36
+ }
37
+ }
@@ -0,0 +1,13 @@
1
+ @each $breakpoint in map-keys($grid-breakpoints) {
2
+ @include media-breakpoint-up($breakpoint) {
3
+ .pull-#{$breakpoint}-left {
4
+ @include pull-left();
5
+ }
6
+ .pull-#{$breakpoint}-right {
7
+ @include pull-right();
8
+ }
9
+ .pull-#{$breakpoint}-none {
10
+ float: none !important;
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Screenreaders
3
+ //
4
+
5
+ .sr-only {
6
+ @include sr-only();
7
+ }
8
+
9
+ .sr-only-focusable {
10
+ @include sr-only-focusable();
11
+ }
@@ -1,3 +1,7 @@
1
+ // Width
2
+
3
+ .w-100 { width: 100% !important; }
4
+
1
5
  // Margin and Padding
2
6
 
3
7
  .m-x-auto {
@@ -0,0 +1,51 @@
1
+ //
2
+ // Text
3
+ //
4
+
5
+ // Alignment
6
+
7
+ .text-justify { text-align: justify !important; }
8
+ .text-nowrap { white-space: nowrap !important; }
9
+ .text-truncate { @include text-truncate; }
10
+
11
+ // Responsive alignment
12
+
13
+ @each $breakpoint in map-keys($grid-breakpoints) {
14
+ @include media-breakpoint-up($breakpoint) {
15
+ .text-#{$breakpoint}-left { text-align: left !important; }
16
+ .text-#{$breakpoint}-right { text-align: right !important; }
17
+ .text-#{$breakpoint}-center { text-align: center !important; }
18
+ }
19
+ }
20
+
21
+ // Transformation
22
+
23
+ .text-lowercase { text-transform: lowercase !important; }
24
+ .text-uppercase { text-transform: uppercase !important; }
25
+ .text-capitalize { text-transform: capitalize !important; }
26
+
27
+ // Weight and italics
28
+
29
+ .font-weight-normal { font-weight: normal; }
30
+ .font-weight-bold { font-weight: bold; }
31
+ .font-italic { font-style: italic; }
32
+
33
+ // Contextual colors
34
+
35
+ @include text-emphasis-variant('.text-muted', $text-muted);
36
+
37
+ @include text-emphasis-variant('.text-primary', $brand-primary);
38
+
39
+ @include text-emphasis-variant('.text-success', $brand-success);
40
+
41
+ @include text-emphasis-variant('.text-info', $brand-info);
42
+
43
+ @include text-emphasis-variant('.text-warning', $brand-warning);
44
+
45
+ @include text-emphasis-variant('.text-danger', $brand-danger);
46
+
47
+ // Misc
48
+
49
+ .text-hide {
50
+ @include text-hide();
51
+ }
@@ -1,7 +1,15 @@
1
+ // scss-lint:disable ImportantRule
2
+
1
3
  //
2
- // Responsive utilities
4
+ // Visibility utilities
3
5
  //
4
6
 
7
+ .invisible {
8
+ visibility: hidden !important;
9
+ }
10
+
11
+ // Responsive visibility utilities
12
+
5
13
  @each $bp in map-keys($grid-breakpoints) {
6
14
  .hidden-#{$bp}-up {
7
15
  @include media-breakpoint-up($bp) {
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.add_development_dependency 'compass', '~> 1.0.3'
21
21
  s.add_development_dependency 'term-ansicolor'
22
22
  # Integration testing
23
- s.add_development_dependency 'capybara'
23
+ s.add_development_dependency 'capybara', '>= 2.6.0'
24
24
  s.add_development_dependency 'poltergeist'
25
25
  # Dummy Rails app dependencies
26
26
  s.add_development_dependency 'actionpack', '>= 4.1.5'
@@ -7,8 +7,8 @@ module Bootstrap
7
7
 
8
8
  if rails?
9
9
  register_rails_engine
10
- elsif lotus?
11
- register_lotus
10
+ elsif hanami?
11
+ register_hanami
12
12
  elsif sprockets?
13
13
  register_sprockets
14
14
  end
@@ -46,8 +46,8 @@ module Bootstrap
46
46
  defined?(::Rails)
47
47
  end
48
48
 
49
- def lotus?
50
- defined?(::Lotus)
49
+ def hanami?
50
+ defined?(::Hanami)
51
51
  end
52
52
 
53
53
  private
@@ -77,8 +77,8 @@ module Bootstrap
77
77
  Sprockets.append_path(javascripts_path)
78
78
  end
79
79
 
80
- def register_lotus
81
- Lotus::Assets.sources << assets_path
80
+ def register_hanami
81
+ Hanami::Assets.sources << assets_path
82
82
  end
83
83
  end
84
84
  end
@@ -1,3 +1,5 @@
1
+ require 'autoprefixer-rails'
2
+
1
3
  module Bootstrap
2
4
  module Rails
3
5
  class Engine < ::Rails::Engine
@@ -1,4 +1,4 @@
1
1
  module Bootstrap
2
- VERSION = '4.0.0.alpha3'
3
- BOOTSTRAP_SHA = '48938155eb24b4ccdde09426066869504c6dab3c'
2
+ VERSION = '4.0.0.alpha3.1'
3
+ BOOTSTRAP_SHA = 'c7de6107a86ebe65a6f5d5b88884256e5094ca92'
4
4
  end
@@ -3,6 +3,8 @@ class Updater
3
3
  module Network
4
4
  protected
5
5
 
6
+ WRITE_FILES_MUTEX = Mutex.new
7
+
6
8
  def get_paths_by_type(dir, file_re, recursive = true)
7
9
  get_file_paths(dir, recursive).select { |path| path =~ file_re }
8
10
  end
@@ -24,7 +26,7 @@ class Updater
24
26
  files.map do |name|
25
27
  Thread.start {
26
28
  contents[name] = open("#{path_url}/#{name}").read
27
- Thread.exclusive { write_cached_files path, name => contents[name] }
29
+ WRITE_FILES_MUTEX.synchronize { write_cached_files path, name => contents[name] }
28
30
  }
29
31
  end.each(&:join)
30
32
  contents
@@ -1,4 +1,4 @@
1
- // Override Bootstrap variables here (defaults from bootstrap v4.0.0-alpha.2):
1
+ // Override Bootstrap variables here (defaults from bootstrap v4.0.0-alpha.3):
2
2
 
3
3
  //
4
4
  // Copy settings from this file into the provided `_custom.scss` to override
@@ -18,6 +18,22 @@
18
18
  // Fonts
19
19
  // Components
20
20
 
21
+ @mixin _assert-ascending($map, $map-name) {
22
+ // $prev-key: null;
23
+ // $prev-num: null;
24
+ // @each $key, $num in $map {
25
+ // @if $prev-num == null {
26
+ // // Do nothing
27
+ // } @else if not comparable($prev-num, $num) {
28
+ // @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
29
+ // } @else if $prev-num >= $num {
30
+ // @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}' !";
31
+ // }
32
+ // $prev-key: $key;
33
+ // $prev-num: $num;
34
+ // }
35
+ }
36
+
21
37
  // General variable structure
22
38
  //
23
39
  // Variable format should follow the `$component-modifier-state-property` order.
@@ -38,6 +54,7 @@
38
54
  // $brand-info: #5bc0de;
39
55
  // $brand-warning: #f0ad4e;
40
56
  // $brand-danger: #d9534f;
57
+ // $brand-inverse: $gray-dark;
41
58
 
42
59
 
43
60
  // Options
@@ -51,72 +68,70 @@
51
68
  // $enable-transitions: false;
52
69
  // $enable-hover-media-query: false;
53
70
  // $enable-grid-classes: true;
71
+ // $enable-print-styles: true;
54
72
 
55
73
 
56
74
  // Spacing
57
75
  //
58
76
  // Control the default styling of most Bootstrap elements by modifying these
59
77
  // variables. Mostly focused on spacing.
78
+ // You can add more entries to the $spacers map, should you need more variation.
60
79
 
61
- // $spacer: 1rem;
62
- // $spacer-x: $spacer;
63
- // $spacer-y: $spacer;
80
+ // $spacer: 1rem;
81
+ // $spacer-x: $spacer;
82
+ // $spacer-y: $spacer;
64
83
  // $spacers: (
65
84
  // 0: (
66
- // x: 0,
67
- // y: 0
85
+ // x: 0,
86
+ // y: 0
68
87
  // ),
69
88
  // 1: (
70
- // x: $spacer-x,
71
- // y: $spacer-y
89
+ // x: $spacer-x,
90
+ // y: $spacer-y
72
91
  // ),
73
92
  // 2: (
74
- // x: ($spacer-x * 1.5),
75
- // y: ($spacer-y * 1.5)
93
+ // x: ($spacer-x * 1.5),
94
+ // y: ($spacer-y * 1.5)
76
95
  // ),
77
96
  // 3: (
78
- // x: ($spacer-x * 3),
79
- // y: ($spacer-y * 3)
97
+ // x: ($spacer-x * 3),
98
+ // y: ($spacer-y * 3)
80
99
  // )
81
100
  // );
82
- // $border-width: 1px;
101
+ // $border-width: 1px;
83
102
 
84
103
 
85
104
  // Body
86
105
  //
87
106
  // Settings for the `<body>` element.
88
107
 
89
- // $body-bg: #fff;
90
- // $body-color: $gray-dark;
108
+ // $body-bg: #fff;
109
+ // $body-color: $gray-dark;
91
110
 
92
111
 
93
112
  // Links
94
113
  //
95
114
  // Style anchor elements.
96
115
 
97
- // $link-color: $brand-primary;
98
- // $link-decoration: none;
99
- // $link-hover-color: darken($link-color, 15%);
100
- // $link-hover-decoration: underline;
116
+ // $link-color: $brand-primary;
117
+ // $link-decoration: none;
118
+ // $link-hover-color: darken($link-color, 15%);
119
+ // $link-hover-decoration: underline;
101
120
 
102
121
 
103
122
  // Grid breakpoints
104
123
  //
105
- // Define the minimum and maximum dimensions at which your layout will change,
124
+ // Define the minimum dimensions at which your layout will change,
106
125
  // adapting to different screen sizes, for use in media queries.
107
126
 
108
127
  // $grid-breakpoints: (
109
- // // Extra small screen / phone
110
128
  // xs: 0,
111
- // // Small screen / phone
112
129
  // sm: 544px,
113
- // // Medium screen / tablet
114
130
  // md: 768px,
115
- // // Large screen / desktop
116
131
  // lg: 992px,
117
- // // Extra large screen / wide desktop
118
132
  // xl: 1200px
119
133
  // );
134
+ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
120
135
 
121
136
 
122
137
  // Grid containers
@@ -129,77 +144,84 @@
129
144
  // lg: 940px,
130
145
  // xl: 1140px
131
146
  // );
147
+ @include _assert-ascending($container-max-widths, "$container-max-widths");
132
148
 
133
149
 
134
150
  // Grid columns
135
151
  //
136
152
  // Set the number of columns and specify the width of the gutters.
137
153
 
138
- // $grid-columns: 12;
139
- // $grid-gutter-width: 1.875rem; // 30px
154
+ // $grid-columns: 12;
155
+ // $grid-gutter-width: 30px;
140
156
 
141
157
 
142
158
  // Typography
143
159
  //
144
160
  // Font, line-height, and color for body text, headings, and more.
145
161
 
146
- // $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
147
- // $font-family-serif: Georgia, "Times New Roman", Times, serif;
148
- // $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
149
- // $font-family-base: $font-family-sans-serif;
162
+ // $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
163
+ // $font-family-serif: Georgia, "Times New Roman", Times, serif;
164
+ // $font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
165
+ // $font-family-base: $font-family-sans-serif;
150
166
 
151
167
  // Pixel value used to responsively scale all typography. Applied to the `<html>` element.
152
- // $font-size-root: 16px;
168
+ // $font-size-root: 16px;
169
+
170
+ // $font-size-base: 1rem;
171
+ // $font-size-lg: 1.25rem;
172
+ // $font-size-sm: .875rem;
173
+ // $font-size-xs: .75rem;
174
+
175
+ // $line-height-base: 1.5;
153
176
 
154
- // $font-size-base: 1rem;
155
- // $font-size-lg: 1.25rem;
156
- // $font-size-sm: .875rem;
157
- // $font-size-xs: .75rem;
177
+ // $font-size-h1: 2.5rem;
178
+ // $font-size-h2: 2rem;
179
+ // $font-size-h3: 1.75rem;
180
+ // $font-size-h4: 1.5rem;
181
+ // $font-size-h5: 1.25rem;
182
+ // $font-size-h6: 1rem;
158
183
 
159
- // $font-size-h1: 2.5rem;
160
- // $font-size-h2: 2rem;
161
- // $font-size-h3: 1.75rem;
162
- // $font-size-h4: 1.5rem;
163
- // $font-size-h5: 1.25rem;
164
- // $font-size-h6: 1rem;
184
+ // $display1-size: 6rem;
185
+ // $display2-size: 5.5rem;
186
+ // $display3-size: 4.5rem;
187
+ // $display4-size: 3.5rem;
165
188
 
166
- // $display1-size: 6rem;
167
- // $display2-size: 5.5rem;
168
- // $display3-size: 4.5rem;
169
- // $display4-size: 3.5rem;
189
+ // $display1-weight: 300;
190
+ // $display2-weight: 300;
191
+ // $display3-weight: 300;
192
+ // $display4-weight: 300;
170
193
 
171
- // $display1-weight: 300;
172
- // $display2-weight: 300;
173
- // $display3-weight: 300;
174
- // $display4-weight: 300;
194
+ // $headings-margin-bottom: ($spacer / 2);
195
+ // $headings-font-family: inherit;
196
+ // $headings-font-weight: 500;
197
+ // $headings-line-height: 1.1;
198
+ // $headings-color: inherit;
175
199
 
176
- // $line-height: 1.5;
200
+ // $lead-font-size: 1.25rem;
201
+ // $lead-font-weight: 300;
177
202
 
178
- // $headings-margin-bottom: ($spacer / 2);
179
- // $headings-font-family: inherit;
180
- // $headings-font-weight: 500;
181
- // $headings-line-height: 1.1;
182
- // $headings-color: inherit;
203
+ // $small-font-size: 80%;
183
204
 
184
- // $lead-font-size: 1.25rem;
185
- // $lead-font-weight: 300;
205
+ // $text-muted: $gray-light;
186
206
 
187
- // $text-muted: $gray-light;
207
+ // $abbr-border-color: $gray-light;
188
208
 
189
- // $abbr-border-color: $gray-light;
209
+ // $blockquote-small-color: $gray-light;
210
+ // $blockquote-font-size: ($font-size-base * 1.25);
211
+ // $blockquote-border-color: $gray-lighter;
212
+ // $blockquote-border-width: .25rem;
190
213
 
191
- // $blockquote-small-color: $gray-light;
192
- // $blockquote-font-size: ($font-size-base * 1.25);
193
- // $blockquote-border-color: $gray-lighter;
214
+ // $hr-border-color: rgba(0,0,0,.1);
215
+ // $hr-border-width: $border-width;
194
216
 
195
- // $hr-border-color: rgba(0,0,0,.1);
196
- // $hr-border-width: $border-width;
217
+ // $mark-padding: .2em;
197
218
 
198
- // $dt-font-weight: bold;
219
+ // $dt-font-weight: bold;
199
220
 
200
- // $nested-kbd-font-weight: bold;
221
+ // $kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25);
222
+ // $nested-kbd-font-weight: bold;
201
223
 
202
- // $list-inline-padding: 5px;
224
+ // $list-inline-padding: 5px;
203
225
 
204
226
 
205
227
  // Components
@@ -228,8 +250,8 @@
228
250
  // $table-sm-cell-padding: .3rem;
229
251
 
230
252
  // $table-bg: transparent;
231
- // $table-bg-accent: #f9f9f9;
232
- // $table-bg-hover: #f5f5f5;
253
+ // $table-bg-accent: rgba(0,0,0,.05);
254
+ // $table-bg-hover: rgba(0,0,0,.075);
233
255
  // $table-bg-active: $table-bg-hover;
234
256
 
235
257
  // $table-border-width: $border-width;
@@ -241,8 +263,11 @@
241
263
  // For each of Bootstrap's buttons, define text, background and border color.
242
264
 
243
265
  // $btn-padding-x: 1rem;
244
- // $btn-padding-y: .375rem;
266
+ // $btn-padding-y: .5rem;
267
+ // $btn-line-height: 1.25;
245
268
  // $btn-font-weight: normal;
269
+ // $btn-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
270
+ // $btn-active-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
246
271
 
247
272
  // $btn-primary-color: #fff;
248
273
  // $btn-primary-bg: $brand-primary;
@@ -270,12 +295,15 @@
270
295
 
271
296
  // $btn-link-disabled-color: $gray-light;
272
297
 
273
- // $btn-padding-x-sm: .75rem;
298
+ // $btn-padding-x-sm: .5rem;
274
299
  // $btn-padding-y-sm: .25rem;
275
300
 
276
- // $btn-padding-x-lg: 1.25rem;
301
+ // $btn-padding-x-lg: 1.5rem;
277
302
  // $btn-padding-y-lg: .75rem;
278
303
 
304
+ // $btn-block-spacing-y: .5rem;
305
+ // $btn-toolbar-margin: .5rem;
306
+
279
307
  // Allows for customizing button radius independently from global border radius
280
308
  // $btn-border-radius: $border-radius;
281
309
  // $btn-border-radius-lg: $border-radius-lg;
@@ -285,13 +313,14 @@
285
313
  // Forms
286
314
 
287
315
  // $input-padding-x: .75rem;
288
- // $input-padding-y: .375rem;
316
+ // $input-padding-y: .5rem;
317
+ // $input-line-height: 1.25;
289
318
 
290
319
  // $input-bg: #fff;
291
320
  // $input-bg-disabled: $gray-lighter;
292
321
 
293
322
  // $input-color: $gray;
294
- // $input-border-color: #ccc;
323
+ // $input-border-color: rgba(0,0,0,.15);
295
324
  // $input-btn-border-width: $border-width; // For form controls and buttons
296
325
  // $input-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
297
326
 
@@ -299,18 +328,20 @@
299
328
  // $input-border-radius-lg: $border-radius-lg;
300
329
  // $input-border-radius-sm: $border-radius-sm;
301
330
 
331
+ // $input-bg-focus: $input-bg;
302
332
  // $input-border-focus: #66afe9;
303
333
  // $input-box-shadow-focus: rgba(102,175,233,.6);
334
+ // $input-color-focus: $input-color;
304
335
 
305
336
  // $input-color-placeholder: #999;
306
337
 
307
- // $input-padding-x-sm: .75rem;
308
- // $input-padding-y-sm: .275rem;
338
+ // $input-padding-x-sm: .5rem;
339
+ // $input-padding-y-sm: .25rem;
309
340
 
310
- // $input-padding-x-lg: 1.25rem;
341
+ // $input-padding-x-lg: 1.5rem;
311
342
  // $input-padding-y-lg: .75rem;
312
343
 
313
- // $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2));
344
+ // $input-height: (($font-size-base * $line-height-base) + ($input-padding-y * 2));
314
345
  // $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2));
315
346
  // $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2));
316
347
 
@@ -321,20 +352,100 @@
321
352
 
322
353
  // $cursor-disabled: not-allowed;
323
354
 
355
+ // $custom-control-gutter: 1.5rem;
356
+ // $custom-control-spacer-x: 1rem;
357
+ // $custom-control-spacer-y: .25rem;
358
+
359
+ // $custom-control-indicator-size: 1rem;
360
+ // $custom-control-indicator-bg: #ddd;
361
+ // $custom-control-indicator-bg-size: 50% 50%;
362
+ // $custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba(0,0,0,.1);
363
+
364
+ // $custom-control-disabled-cursor: $cursor-disabled;
365
+ // $custom-control-disabled-indicator-bg: #eee;
366
+ // $custom-control-disabled-description-color: #767676;
367
+
368
+ // $custom-control-checked-indicator-color: #fff;
369
+ // $custom-control-checked-indicator-bg: #0074d9;
370
+ // $custom-control-checked-indicator-box-shadow: none;
371
+
372
+ // $custom-control-focus-indicator-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
373
+
374
+ // $custom-control-active-indicator-color: #fff;
375
+ // $custom-control-active-indicator-bg: #84c6ff;
376
+ // $custom-control-active-indicator-box-shadow: none;
377
+
378
+ // $custom-checkbox-radius: $border-radius;
379
+ // $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");
380
+ // $custom-checkbox-indeterminate-bg: #0074d9;
381
+ // $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");
382
+ // $custom-checkbox-indeterminate-box-shadow: none;
383
+
384
+ // $custom-radio-radius: 50%;
385
+ // $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");
386
+
387
+ // $custom-select-padding-x: .75rem ;
388
+ // $custom-select-padding-y: .375rem;
389
+ // $custom-select-indicator-padding: 1rem; // Extra padding to account for the presence of the background-image based indicator
390
+ // $custom-select-color: $input-color;
391
+ // $custom-select-disabled-color: $gray-light;
392
+ // $custom-select-bg: #fff;
393
+ // $custom-select-disabled-bg: $gray-lighter;
394
+ // $custom-select-bg-size: 8px 10px; // In pixels because image dimensions
395
+ // $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");
396
+ // $custom-select-border-width: $input-btn-border-width;
397
+ // $custom-select-border-color: $input-border-color;
398
+ // $custom-select-border-radius: $border-radius;
399
+
400
+ // $custom-select-focus-border-color: #51a7e8;
401
+ // $custom-select-focus-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 5px rgba(81, 167, 232, .5);
402
+
403
+ // $custom-select-sm-padding-y: .2rem;
404
+ // $custom-select-sm-font-size: 75%;
405
+
406
+ // $custom-file-height: 2.5rem;
407
+ // $custom-file-width: 14rem;
408
+ // $custom-file-focus-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
409
+
410
+ // $custom-file-padding-x: .5rem;
411
+ // $custom-file-padding-y: 1rem;
412
+ // $custom-file-line-height: 1.5;
413
+ // $custom-file-color: #555;
414
+ // $custom-file-bg: #fff;
415
+ // $custom-file-border-width: $border-width;
416
+ // $custom-file-border-color: #ddd;
417
+ // $custom-file-border-radius: $border-radius;
418
+ // $custom-file-box-shadow: inset 0 .2rem .4rem rgba(0,0,0,.05);
419
+ // $custom-file-button-color: $custom-file-color;
420
+ // $custom-file-button-bg: #eee;
421
+ // $custom-file-text: (
422
+ // placeholder: (
423
+ // en: "Choose file..."
424
+ // ),
425
+ // button-label: (
426
+ // en: "Browse"
427
+ // )
428
+ // );
429
+
430
+
324
431
  // Form validation icons
325
- // $form-icon-success: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==";
326
- // $form-icon-warning: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+";
327
- // $form-icon-danger: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=";
432
+ // $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");
433
+ // $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");
434
+ // $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");
328
435
 
329
436
 
330
437
  // Dropdowns
331
438
  //
332
439
  // Dropdown menu container and contents.
333
440
 
441
+ // $dropdown-min-width: 160px;
442
+ // $dropdown-padding-y: 5px;
443
+ // $dropdown-margin-top: 2px;
334
444
  // $dropdown-bg: #fff;
335
445
  // $dropdown-border-color: rgba(0,0,0,.15);
336
446
  // $dropdown-border-width: $border-width;
337
447
  // $dropdown-divider-bg: #e5e5e5;
448
+ // $dropdown-box-shadow: 0 6px 12px rgba(0,0,0,.175);
338
449
 
339
450
  // $dropdown-link-color: $gray-dark;
340
451
  // $dropdown-link-hover-color: darken($gray-dark, 5%);
@@ -345,6 +456,8 @@
345
456
 
346
457
  // $dropdown-link-disabled-color: $gray-light;
347
458
 
459
+ // $dropdown-item-padding-x: 20px;
460
+
348
461
  // $dropdown-header-color: $gray-light;
349
462
 
350
463
 
@@ -353,6 +466,7 @@
353
466
  // Warning: Avoid customizing these values. They're used for a bird's eye view
354
467
  // of components dependent on the z-axis and are designed to all work together.
355
468
 
469
+ // $zindex-dropdown-backdrop: 990;
356
470
  // $zindex-navbar: 1000;
357
471
  // $zindex-dropdown: 1000;
358
472
  // $zindex-popover: 1060;
@@ -366,8 +480,9 @@
366
480
  // Navbar
367
481
 
368
482
  // $navbar-border-radius: $border-radius;
369
- // $navbar-padding-horizontal: $spacer;
370
- // $navbar-padding-vertical: ($spacer / 2);
483
+ // $navbar-padding-x: $spacer;
484
+ // $navbar-padding-y: ($spacer / 2);
485
+ // $navbar-brand-padding-y: .25rem;
371
486
 
372
487
  // $navbar-dark-color: rgba(255,255,255,.5);
373
488
  // $navbar-dark-hover-color: rgba(255,255,255,.75);
@@ -382,27 +497,27 @@
382
497
 
383
498
  // Navs
384
499
 
385
- // $nav-link-padding: .5em 1em;
386
- // $nav-link-hover-bg: $gray-lighter;
387
-
388
- // $nav-disabled-link-color: $gray-light;
389
- // $nav-disabled-link-hover-color: $gray-light;
390
-
391
- // $nav-tabs-border-color: #ddd;
392
-
393
- // $nav-tabs-link-border-width: $border-width;
394
- // $nav-tabs-link-hover-border-color: $gray-lighter;
395
-
396
- // $nav-tabs-active-link-hover-bg: $body-bg;
397
- // $nav-tabs-active-link-hover-color: $gray;
398
- // $nav-tabs-active-link-hover-border-color: #ddd;
399
-
400
- // $nav-tabs-justified-link-border-color: #ddd;
401
- // $nav-tabs-justified-active-link-border-color: $body-bg;
402
-
403
- // $nav-pills-border-radius: $border-radius;
404
- // $nav-pills-active-link-hover-bg: $component-active-bg;
405
- // $nav-pills-active-link-hover-color: $component-active-color;
500
+ // $nav-item-margin: .2rem;
501
+ // $nav-item-inline-spacer: 1rem;
502
+ // $nav-link-padding: .5em 1em;
503
+ // $nav-link-hover-bg: $gray-lighter;
504
+ // $nav-disabled-link-color: $gray-light;
505
+ // $nav-disabled-link-hover-color: $gray-light;
506
+ // $nav-disabled-link-hover-bg: transparent;
507
+
508
+ // $nav-tabs-border-color: #ddd;
509
+ // $nav-tabs-border-width: $border-width;
510
+ // $nav-tabs-border-radius: $border-radius;
511
+ // $nav-tabs-link-hover-border-color: $gray-lighter;
512
+ // $nav-tabs-active-link-hover-color: $gray;
513
+ // $nav-tabs-active-link-hover-bg: $body-bg;
514
+ // $nav-tabs-active-link-hover-border-color: #ddd;
515
+ // $nav-tabs-justified-link-border-color: #ddd;
516
+ // $nav-tabs-justified-active-link-border-color: $body-bg;
517
+
518
+ // $nav-pills-border-radius: $border-radius;
519
+ // $nav-pills-active-link-color: $component-active-color;
520
+ // $nav-pills-active-link-bg: $component-active-bg;
406
521
 
407
522
 
408
523
  // Pagination
@@ -433,21 +548,6 @@
433
548
  // $pagination-disabled-border: #ddd;
434
549
 
435
550
 
436
- // Pager
437
-
438
- // $pager-bg: $pagination-bg;
439
- // $pager-border-width: $border-width;
440
- // $pager-border-color: $pagination-border-color;
441
- // $pager-border-radius: 15px;
442
-
443
- // $pager-hover-bg: $pagination-hover-bg;
444
-
445
- // $pager-active-bg: $pagination-active-bg;
446
- // $pager-active-color: $pagination-active-color;
447
-
448
- // $pager-disabled-color: $pagination-disabled-color;
449
-
450
-
451
551
  // Jumbotron
452
552
 
453
553
  // $jumbotron-padding: 2rem;
@@ -468,6 +568,7 @@
468
568
 
469
569
  // $state-warning-text: #8a6d3b;
470
570
  // $state-warning-bg: #fcf8e3;
571
+ // $mark-bg: $state-warning-bg;
471
572
  // $state-warning-border: darken($state-warning-bg, 5%);
472
573
 
473
574
  // $state-danger-text: #a94442;
@@ -480,13 +581,19 @@
480
581
  // $card-spacer-y: .75rem;
481
582
  // $card-border-width: 1px;
482
583
  // $card-border-radius: $border-radius;
483
- // $card-border-color: #e5e5e5;
584
+ // $card-border-color: rgba(0,0,0,.125);
484
585
  // $card-border-radius-inner: $card-border-radius;
485
586
  // $card-cap-bg: #f5f5f5;
486
587
  // $card-bg: #fff;
487
588
 
488
589
  // $card-link-hover-color: #fff;
489
590
 
591
+ // $card-img-overlay-padding: 1.25rem;
592
+
593
+ // $card-deck-margin: .625rem;
594
+
595
+ // $card-columns-sm-up-column-gap: 1.25rem;
596
+
490
597
 
491
598
  // Tooltips
492
599
 
@@ -494,6 +601,9 @@
494
601
  // $tooltip-color: #fff;
495
602
  // $tooltip-bg: #000;
496
603
  // $tooltip-opacity: .9;
604
+ // $tooltip-padding-y: 3px;
605
+ // $tooltip-padding-x: 8px;
606
+ // $tooltip-margin: 3px;
497
607
 
498
608
  // $tooltip-arrow-width: 5px;
499
609
  // $tooltip-arrow-color: $tooltip-bg;
@@ -501,49 +611,71 @@
501
611
 
502
612
  // Popovers
503
613
 
614
+ // $popover-inner-padding: 1px;
504
615
  // $popover-bg: #fff;
505
616
  // $popover-max-width: 276px;
506
617
  // $popover-border-width: $border-width;
507
618
  // $popover-border-color: rgba(0,0,0,.2);
619
+ // $popover-box-shadow: 0 5px 10px rgba(0,0,0,.2);
508
620
 
509
621
  // $popover-title-bg: darken($popover-bg, 3%);
622
+ // $popover-title-padding-x: 14px;
623
+ // $popover-title-padding-y: 8px;
624
+
625
+ // $popover-content-padding-x: 14px;
626
+ // $popover-content-padding-y: 9px;
510
627
 
511
628
  // $popover-arrow-width: 10px;
512
629
  // $popover-arrow-color: $popover-bg;
513
630
 
514
- // $popover-arrow-outer-width: ($popover-arrow-width + 1);
515
- // $popover-arrow-outer-color: fade-in($popover-border-color, 0.05);
631
+ // $popover-arrow-outer-width: ($popover-arrow-width + 1px);
632
+ // $popover-arrow-outer-color: fade-in($popover-border-color, .05);
516
633
 
517
634
 
518
- // Labels
635
+ // Tags
519
636
 
520
- // $label-default-bg: $gray-light;
521
- // $label-primary-bg: $brand-primary;
522
- // $label-success-bg: $brand-success;
523
- // $label-info-bg: $brand-info;
524
- // $label-warning-bg: $brand-warning;
525
- // $label-danger-bg: $brand-danger;
637
+ // $tag-default-bg: $gray-light;
638
+ // $tag-primary-bg: $brand-primary;
639
+ // $tag-success-bg: $brand-success;
640
+ // $tag-info-bg: $brand-info;
641
+ // $tag-warning-bg: $brand-warning;
642
+ // $tag-danger-bg: $brand-danger;
526
643
 
527
- // $label-color: #fff;
528
- // $label-link-hover-color: #fff;
529
- // $label-font-weight: bold;
644
+ // $tag-color: #fff;
645
+ // $tag-link-hover-color: #fff;
646
+ // $tag-font-size: 75%;
647
+ // $tag-font-weight: bold;
648
+ // $tag-padding-x: .4em;
649
+ // $tag-padding-y: .25em;
530
650
 
651
+ // $tag-pill-padding-x: .6em;
652
+ // Use a higher than normal value to ensure completely rounded edges when
653
+ // customizing padding or font-size on labels.
654
+ // $tag-pill-border-radius: 10rem;
531
655
 
532
656
  // Modals
533
657
 
534
658
  // Padding applied to the modal body
535
659
  // $modal-inner-padding: 15px;
536
660
 
661
+ // $modal-dialog-margin: 10px;
662
+ // $modal-dialog-sm-up-margin-y: 30px;
663
+
537
664
  // $modal-title-padding: 15px;
538
- // $modal-title-line-height: $line-height;
665
+ // $modal-title-line-height: $line-height-base;
539
666
 
540
- // $modal-content-bg: #fff;
541
- // $modal-content-border-color: rgba(0,0,0,.2);
667
+ // $modal-content-bg: #fff;
668
+ // $modal-content-border-color: rgba(0,0,0,.2);
669
+ // $modal-content-border-width: $border-width;
670
+ // $modal-content-xs-box-shadow: 0 3px 9px rgba(0,0,0,.5);
671
+ // $modal-content-sm-up-box-shadow: 0 5px 15px rgba(0,0,0,.5);
542
672
 
543
673
  // $modal-backdrop-bg: #000;
544
674
  // $modal-backdrop-opacity: .5;
545
675
  // $modal-header-border-color: #e5e5e5;
546
676
  // $modal-footer-border-color: $modal-header-border-color;
677
+ // $modal-header-border-width: $modal-content-border-width;
678
+ // $modal-footer-border-width: $modal-header-border-width;
547
679
 
548
680
  // $modal-lg: 900px;
549
681
  // $modal-md: 600px;
@@ -578,9 +710,10 @@
578
710
 
579
711
  // Progress bars
580
712
 
581
- // $progress-bg: #f5f5f5;
582
- // $progress-bar-color: #fff;
713
+ // $progress-bg: #eee;
714
+ // $progress-bar-color: #0074d9;
583
715
  // $progress-border-radius: $border-radius;
716
+ // $progress-box-shadow: inset 0 .1rem .1rem rgba(0,0,0,.1);
584
717
 
585
718
  // $progress-bar-bg: $brand-primary;
586
719
  // $progress-bar-success-bg: $brand-success;
@@ -610,6 +743,10 @@
610
743
  // $list-group-link-hover-color: $list-group-link-color;
611
744
  // $list-group-link-heading-color: #333;
612
745
 
746
+ // $list-group-item-padding-x: 1.25rem;
747
+ // $list-group-item-padding-y: .75rem;
748
+ // $list-group-item-heading-margin-bottom: 5px;
749
+
613
750
 
614
751
  // Image thumbnails
615
752
 
@@ -618,12 +755,19 @@
618
755
  // $thumbnail-border-width: $border-width;
619
756
  // $thumbnail-border-color: #ddd;
620
757
  // $thumbnail-border-radius: $border-radius;
758
+ // $thumbnail-box-shadow: 0 1px 2px rgba(0,0,0,.075);
759
+
760
+
761
+ // Figures
762
+
763
+ // $figure-caption-font-size: 90%;
621
764
 
622
765
 
623
766
  // Breadcrumbs
624
767
 
625
- // $breadcrumb-padding-vertical: .75rem;
626
- // $breadcrumb-padding-horizontal: 1rem;
768
+ // $breadcrumb-padding-y: .75rem;
769
+ // $breadcrumb-padding-x: 1rem;
770
+ // $breadcrumb-item-padding: .5rem;
627
771
 
628
772
  // $breadcrumb-bg: $gray-lighter;
629
773
  // $breadcrumb-divider-color: $gray-light;
@@ -631,20 +775,36 @@
631
775
  // $breadcrumb-divider: "/";
632
776
 
633
777
 
778
+ // Media objects
779
+
780
+ // $media-margin-top: 15px;
781
+ // $media-heading-margin-bottom: 5px;
782
+ // $media-alignment-padding-x: 10px;
783
+
784
+
634
785
  // Carousel
635
786
 
636
787
  // $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);
637
788
 
638
789
  // $carousel-control-color: #fff;
639
790
  // $carousel-control-width: 15%;
791
+ // $carousel-control-sm-up-size: 30px;
640
792
  // $carousel-control-opacity: .5;
641
793
  // $carousel-control-font-size: 20px;
642
794
 
795
+ // $carousel-indicators-width: 60%;
796
+
797
+ // $carousel-indicator-size: 10px;
798
+ // $carousel-indicator-active-size: 12px;
643
799
  // $carousel-indicator-active-bg: #fff;
644
800
  // $carousel-indicator-border-color: #fff;
645
801
 
802
+ // $carousel-caption-width: 70%;
803
+ // $carousel-caption-sm-up-width: 60%;
646
804
  // $carousel-caption-color: #fff;
647
805
 
806
+ // $carousel-icon-width: 20px;
807
+
648
808
 
649
809
  // Close
650
810
 
@@ -655,6 +815,9 @@
655
815
 
656
816
  // Code
657
817
 
818
+ // $code-font-size: 90%;
819
+ // $code-padding-x: .4rem;
820
+ // $code-padding-y: .2rem;
658
821
  // $code-color: #bd4147;
659
822
  // $code-bg: #f7f7f9;
660
823