entreprise7pro-bootstrap-sass 3.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.travis.yml +19 -0
- data/CHANGELOG.md +233 -0
- data/CONTRIBUTING.md +86 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +376 -0
- data/Rakefile +98 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/images/.keep +0 -0
- data/assets/javascripts/bootstrap/affix.js +166 -0
- data/assets/javascripts/bootstrap/alert.js +97 -0
- data/assets/javascripts/bootstrap/button.js +136 -0
- data/assets/javascripts/bootstrap/carousel.js +248 -0
- data/assets/javascripts/bootstrap/collapse.js +214 -0
- data/assets/javascripts/bootstrap/dropdown.js +167 -0
- data/assets/javascripts/bootstrap/modal.js +356 -0
- data/assets/javascripts/bootstrap/popover.js +123 -0
- data/assets/javascripts/bootstrap/scrollspy.js +174 -0
- data/assets/javascripts/bootstrap/tab.js +157 -0
- data/assets/javascripts/bootstrap/tooltip.js +679 -0
- data/assets/javascripts/bootstrap/transition.js +61 -0
- data/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/assets/javascripts/bootstrap.js +2611 -0
- data/assets/javascripts/bootstrap.min.js +7 -0
- data/assets/javascripts/jquery.min.js +2 -0
- data/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/assets/stylesheets/_bootstrap.scss +56 -0
- data/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/assets/stylesheets/bootstrap/_badges.scss +68 -0
- data/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
- data/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
- data/assets/stylesheets/bootstrap/_buttons.scss +168 -0
- data/assets/stylesheets/bootstrap/_carousel.scss +263 -0
- data/assets/stylesheets/bootstrap/_close.scss +37 -0
- data/assets/stylesheets/bootstrap/_code.scss +70 -0
- data/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
- data/assets/stylesheets/bootstrap/_dropdowns.scss +212 -0
- data/assets/stylesheets/bootstrap/_forms.scss +602 -0
- data/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
- data/assets/stylesheets/bootstrap/_grid.scss +94 -0
- data/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/assets/stylesheets/bootstrap/_jumbotron.scss +55 -0
- data/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/assets/stylesheets/bootstrap/_list-group.scss +128 -0
- data/assets/stylesheets/bootstrap/_media.scss +66 -0
- data/assets/stylesheets/bootstrap/_mixins.scss +39 -0
- data/assets/stylesheets/bootstrap/_modals.scss +150 -0
- data/assets/stylesheets/bootstrap/_navbar.scss +657 -0
- data/assets/stylesheets/bootstrap/_navs.scss +242 -0
- data/assets/stylesheets/bootstrap/_normalize.scss +422 -0
- data/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/assets/stylesheets/bootstrap/_pagination.scss +86 -0
- data/assets/stylesheets/bootstrap/_panels.scss +271 -0
- data/assets/stylesheets/bootstrap/_popovers.scss +126 -0
- data/assets/stylesheets/bootstrap/_print.scss +99 -0
- data/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/assets/stylesheets/bootstrap/_responsive-utilities.scss +157 -0
- data/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
- data/assets/stylesheets/bootstrap/_tables.scss +233 -0
- data/assets/stylesheets/bootstrap/_theme.scss +293 -0
- data/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/assets/stylesheets/bootstrap/_tooltip.scss +112 -0
- data/assets/stylesheets/bootstrap/_type.scss +299 -0
- data/assets/stylesheets/bootstrap/_utilities.scss +55 -0
- data/assets/stylesheets/bootstrap/_variables.scss +875 -0
- data/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/assets/stylesheets/bootstrap/mixins/_alerts.scss +15 -0
- data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
- data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/assets/stylesheets/bootstrap/mixins/_buttons.scss +61 -0
- data/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/assets/stylesheets/bootstrap/mixins/_gradients.scss +50 -0
- data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +82 -0
- data/assets/stylesheets/bootstrap/mixins/_grid.scss +123 -0
- data/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/assets/stylesheets/bootstrap/mixins/_image.scss +28 -0
- data/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
- data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +11 -0
- data/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +10 -0
- data/assets/stylesheets/bootstrap/mixins/_opacity.scss +7 -0
- data/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
- data/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
- data/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +17 -0
- data/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +210 -0
- data/bower.json +38 -0
- data/composer.json +21 -0
- data/entreprise7pro-bootstrap-sass.gemspec +37 -0
- data/eyeglass-exports.js +7 -0
- data/lib/entreprise7pro-bootstrap-sass/engine.rb +17 -0
- data/lib/entreprise7pro-bootstrap-sass/version.rb +4 -0
- data/lib/entreprise7pro-bootstrap-sass.rb +91 -0
- data/package-lock.json +1011 -0
- data/package.json +48 -0
- data/sache.json +5 -0
- data/tasks/bower.rake +31 -0
- data/tasks/converter/char_string_scanner.rb +38 -0
- data/tasks/converter/fonts_conversion.rb +16 -0
- data/tasks/converter/js_conversion.rb +47 -0
- data/tasks/converter/less_conversion.rb +752 -0
- data/tasks/converter/logger.rb +57 -0
- data/tasks/converter/network.rb +97 -0
- data/tasks/converter.rb +80 -0
- data/templates/project/_bootstrap-variables.sass +876 -0
- data/templates/project/manifest.rb +20 -0
- data/templates/project/styles.sass +6 -0
- data/test/compilation_test.rb +30 -0
- data/test/dummy_node_mincer/apple-touch-icon-144-precomposed.png +0 -0
- data/test/dummy_node_mincer/application.css.ejs.scss +6 -0
- data/test/dummy_node_mincer/manifest.js +87 -0
- data/test/dummy_rails/README.rdoc +3 -0
- data/test/dummy_rails/Rakefile +6 -0
- data/test/dummy_rails/app/assets/images/.keep +0 -0
- data/test/dummy_rails/app/assets/javascripts/application.js +2 -0
- data/test/dummy_rails/app/assets/stylesheets/application.sass +2 -0
- data/test/dummy_rails/app/controllers/application_controller.rb +5 -0
- data/test/dummy_rails/app/controllers/pages_controller.rb +4 -0
- data/test/dummy_rails/app/helpers/application_helper.rb +2 -0
- data/test/dummy_rails/app/views/layouts/application.html.erb +14 -0
- data/test/dummy_rails/app/views/pages/root.html.slim +84 -0
- data/test/dummy_rails/config/application.rb +31 -0
- data/test/dummy_rails/config/boot.rb +5 -0
- data/test/dummy_rails/config/environment.rb +5 -0
- data/test/dummy_rails/config/environments/development.rb +23 -0
- data/test/dummy_rails/config/environments/production.rb +82 -0
- data/test/dummy_rails/config/environments/test.rb +38 -0
- data/test/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy_rails/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy_rails/config/initializers/inflections.rb +16 -0
- data/test/dummy_rails/config/initializers/mime_types.rb +5 -0
- data/test/dummy_rails/config/initializers/secret_token.rb +18 -0
- data/test/dummy_rails/config/initializers/session_store.rb +3 -0
- data/test/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy_rails/config/locales/en.yml +3 -0
- data/test/dummy_rails/config/locales/es.yml +3 -0
- data/test/dummy_rails/config/routes.rb +3 -0
- data/test/dummy_rails/config.ru +4 -0
- data/test/dummy_rails/log/.keep +0 -0
- data/test/dummy_sass_only/Gemfile +4 -0
- data/test/dummy_sass_only/compile.rb +20 -0
- data/test/dummy_sass_only/import_all.scss +2 -0
- data/test/gemfiles/default.gemfile +3 -0
- data/test/node_mincer_test.rb +35 -0
- data/test/node_sass_compile_test.sh +9 -0
- data/test/pages_test.rb +14 -0
- data/test/sass_test.rb +29 -0
- data/test/sprockets_rails_test.rb +31 -0
- data/test/support/dummy_rails_integration.rb +22 -0
- data/test/support/reporting.rb +27 -0
- data/test/test_helper.rb +36 -0
- data/test/test_helper_rails.rb +6 -0
- metadata +467 -0
@@ -0,0 +1,299 @@
|
|
1
|
+
@use "sass:math";
|
2
|
+
//
|
3
|
+
// Typography
|
4
|
+
// --------------------------------------------------
|
5
|
+
|
6
|
+
|
7
|
+
// Headings
|
8
|
+
// -------------------------
|
9
|
+
|
10
|
+
h1, h2, h3, h4, h5, h6,
|
11
|
+
.h1, .h2, .h3, .h4, .h5, .h6 {
|
12
|
+
font-family: $headings-font-family;
|
13
|
+
font-weight: $headings-font-weight;
|
14
|
+
line-height: $headings-line-height;
|
15
|
+
color: $headings-color;
|
16
|
+
|
17
|
+
small,
|
18
|
+
.small {
|
19
|
+
font-weight: 400;
|
20
|
+
line-height: 1;
|
21
|
+
color: $headings-small-color;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
h1, .h1,
|
26
|
+
h2, .h2,
|
27
|
+
h3, .h3 {
|
28
|
+
margin-top: $line-height-computed;
|
29
|
+
margin-bottom: math.div($line-height-computed, 2);
|
30
|
+
|
31
|
+
small,
|
32
|
+
.small {
|
33
|
+
font-size: 65%;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
h4, .h4,
|
37
|
+
h5, .h5,
|
38
|
+
h6, .h6 {
|
39
|
+
margin-top: math.div($line-height-computed, 2);
|
40
|
+
margin-bottom: math.div($line-height-computed, 2);
|
41
|
+
|
42
|
+
small,
|
43
|
+
.small {
|
44
|
+
font-size: 75%;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
h1, .h1 { font-size: $font-size-h1; }
|
49
|
+
h2, .h2 { font-size: $font-size-h2; }
|
50
|
+
h3, .h3 { font-size: $font-size-h3; }
|
51
|
+
h4, .h4 { font-size: $font-size-h4; }
|
52
|
+
h5, .h5 { font-size: $font-size-h5; }
|
53
|
+
h6, .h6 { font-size: $font-size-h6; }
|
54
|
+
|
55
|
+
|
56
|
+
// Body text
|
57
|
+
// -------------------------
|
58
|
+
|
59
|
+
p {
|
60
|
+
margin: 0 0 math.div($line-height-computed, 2);
|
61
|
+
}
|
62
|
+
|
63
|
+
.lead {
|
64
|
+
margin-bottom: $line-height-computed;
|
65
|
+
font-size: floor(($font-size-base * 1.15));
|
66
|
+
font-weight: 300;
|
67
|
+
line-height: 1.4;
|
68
|
+
|
69
|
+
@media (min-width: $screen-sm-min) {
|
70
|
+
font-size: ($font-size-base * 1.5);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
// Emphasis & misc
|
76
|
+
// -------------------------
|
77
|
+
|
78
|
+
// Ex: math.div(12px small font, 14px base font) * 100% = about 85%
|
79
|
+
small,
|
80
|
+
.small {
|
81
|
+
font-size: floor(math.div(100% * $font-size-small, $font-size-base));
|
82
|
+
}
|
83
|
+
|
84
|
+
mark,
|
85
|
+
.mark {
|
86
|
+
padding: .2em;
|
87
|
+
background-color: $state-warning-bg;
|
88
|
+
}
|
89
|
+
|
90
|
+
// Alignment
|
91
|
+
.text-left { text-align: left; }
|
92
|
+
.text-right { text-align: right; }
|
93
|
+
.text-center { text-align: center; }
|
94
|
+
.text-justify { text-align: justify; }
|
95
|
+
.text-nowrap { white-space: nowrap; }
|
96
|
+
|
97
|
+
// Transformation
|
98
|
+
.text-lowercase { text-transform: lowercase; }
|
99
|
+
.text-uppercase { text-transform: uppercase; }
|
100
|
+
.text-capitalize { text-transform: capitalize; }
|
101
|
+
|
102
|
+
// Contextual colors
|
103
|
+
.text-muted {
|
104
|
+
color: $text-muted;
|
105
|
+
}
|
106
|
+
|
107
|
+
@include text-emphasis-variant('.text-primary', $brand-primary);
|
108
|
+
|
109
|
+
@include text-emphasis-variant('.text-success', $state-success-text);
|
110
|
+
|
111
|
+
@include text-emphasis-variant('.text-info', $state-info-text);
|
112
|
+
|
113
|
+
@include text-emphasis-variant('.text-warning', $state-warning-text);
|
114
|
+
|
115
|
+
@include text-emphasis-variant('.text-danger', $state-danger-text);
|
116
|
+
|
117
|
+
// Contextual backgrounds
|
118
|
+
// For now we'll leave these alongside the text classes until v4 when we can
|
119
|
+
// safely shift things around (per SemVer rules).
|
120
|
+
.bg-primary {
|
121
|
+
// Given the contrast here, this is the only class to have its color inverted
|
122
|
+
// automatically.
|
123
|
+
color: #fff;
|
124
|
+
}
|
125
|
+
@include bg-variant('.bg-primary', $brand-primary);
|
126
|
+
|
127
|
+
@include bg-variant('.bg-success', $state-success-bg);
|
128
|
+
|
129
|
+
@include bg-variant('.bg-info', $state-info-bg);
|
130
|
+
|
131
|
+
@include bg-variant('.bg-warning', $state-warning-bg);
|
132
|
+
|
133
|
+
@include bg-variant('.bg-danger', $state-danger-bg);
|
134
|
+
|
135
|
+
|
136
|
+
// Page header
|
137
|
+
// -------------------------
|
138
|
+
|
139
|
+
.page-header {
|
140
|
+
padding-bottom: (math.div($line-height-computed, 2) - 1);
|
141
|
+
margin: ($line-height-computed * 2) 0 $line-height-computed;
|
142
|
+
border-bottom: 1px solid $page-header-border-color;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
// Lists
|
147
|
+
// -------------------------
|
148
|
+
|
149
|
+
// Unordered and Ordered lists
|
150
|
+
ul,
|
151
|
+
ol {
|
152
|
+
margin-top: 0;
|
153
|
+
margin-bottom: math.div($line-height-computed, 2);
|
154
|
+
ul,
|
155
|
+
ol {
|
156
|
+
margin-bottom: 0;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
// List options
|
161
|
+
|
162
|
+
// [converter] extracted from `.list-unstyled` for libsass compatibility
|
163
|
+
@mixin list-unstyled {
|
164
|
+
padding-left: 0;
|
165
|
+
list-style: none;
|
166
|
+
}
|
167
|
+
// [converter] extracted as `@mixin list-unstyled` for libsass compatibility
|
168
|
+
.list-unstyled {
|
169
|
+
@include list-unstyled;
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
// Inline turns list items into inline-block
|
174
|
+
.list-inline {
|
175
|
+
@include list-unstyled;
|
176
|
+
margin-left: -5px;
|
177
|
+
|
178
|
+
> li {
|
179
|
+
display: inline-block;
|
180
|
+
padding-right: 5px;
|
181
|
+
padding-left: 5px;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
// Description Lists
|
186
|
+
dl {
|
187
|
+
margin-top: 0; // Remove browser default
|
188
|
+
margin-bottom: $line-height-computed;
|
189
|
+
}
|
190
|
+
dt,
|
191
|
+
dd {
|
192
|
+
line-height: $line-height-base;
|
193
|
+
}
|
194
|
+
dt {
|
195
|
+
font-weight: 700;
|
196
|
+
}
|
197
|
+
dd {
|
198
|
+
margin-left: 0; // Undo browser default
|
199
|
+
}
|
200
|
+
|
201
|
+
// Horizontal description lists
|
202
|
+
//
|
203
|
+
// Defaults to being stacked without any of the below styles applied, until the
|
204
|
+
// grid breakpoint is reached (default of ~768px).
|
205
|
+
|
206
|
+
.dl-horizontal {
|
207
|
+
dd {
|
208
|
+
@include clearfix; // Clear the floated `dt` if an empty `dd` is present
|
209
|
+
}
|
210
|
+
|
211
|
+
@media (min-width: $dl-horizontal-breakpoint) {
|
212
|
+
dt {
|
213
|
+
float: left;
|
214
|
+
width: ($dl-horizontal-offset - 20);
|
215
|
+
clear: left;
|
216
|
+
text-align: right;
|
217
|
+
@include text-overflow;
|
218
|
+
}
|
219
|
+
dd {
|
220
|
+
margin-left: $dl-horizontal-offset;
|
221
|
+
}
|
222
|
+
}
|
223
|
+
}
|
224
|
+
|
225
|
+
|
226
|
+
// Misc
|
227
|
+
// -------------------------
|
228
|
+
|
229
|
+
// Abbreviations and acronyms
|
230
|
+
// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
|
231
|
+
abbr[title],
|
232
|
+
abbr[data-original-title] {
|
233
|
+
cursor: help;
|
234
|
+
}
|
235
|
+
|
236
|
+
.initialism {
|
237
|
+
font-size: 90%;
|
238
|
+
@extend .text-uppercase;
|
239
|
+
}
|
240
|
+
|
241
|
+
// Blockquotes
|
242
|
+
blockquote {
|
243
|
+
padding: math.div($line-height-computed, 2) $line-height-computed;
|
244
|
+
margin: 0 0 $line-height-computed;
|
245
|
+
font-size: $blockquote-font-size;
|
246
|
+
border-left: 5px solid $blockquote-border-color;
|
247
|
+
|
248
|
+
p,
|
249
|
+
ul,
|
250
|
+
ol {
|
251
|
+
&:last-child {
|
252
|
+
margin-bottom: 0;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
// Note: Deprecated small and .small as of v3.1.0
|
257
|
+
// Context: https://github.com/twbs/bootstrap/issues/11660
|
258
|
+
footer,
|
259
|
+
small,
|
260
|
+
.small {
|
261
|
+
display: block;
|
262
|
+
font-size: 80%; // back to default font-size
|
263
|
+
line-height: $line-height-base;
|
264
|
+
color: $blockquote-small-color;
|
265
|
+
|
266
|
+
&:before {
|
267
|
+
content: "\2014 \00A0"; // em dash, nbsp
|
268
|
+
}
|
269
|
+
}
|
270
|
+
}
|
271
|
+
|
272
|
+
// Opposite alignment of blockquote
|
273
|
+
//
|
274
|
+
// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
|
275
|
+
.blockquote-reverse,
|
276
|
+
blockquote.pull-right {
|
277
|
+
padding-right: 15px;
|
278
|
+
padding-left: 0;
|
279
|
+
text-align: right;
|
280
|
+
border-right: 5px solid $blockquote-border-color;
|
281
|
+
border-left: 0;
|
282
|
+
|
283
|
+
// Account for citation
|
284
|
+
footer,
|
285
|
+
small,
|
286
|
+
.small {
|
287
|
+
&:before { content: ""; }
|
288
|
+
&:after {
|
289
|
+
content: "\00A0 \2014"; // nbsp, em dash
|
290
|
+
}
|
291
|
+
}
|
292
|
+
}
|
293
|
+
|
294
|
+
// Addresses
|
295
|
+
address {
|
296
|
+
margin-bottom: $line-height-computed;
|
297
|
+
font-style: normal;
|
298
|
+
line-height: $line-height-base;
|
299
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
//
|
2
|
+
// Utility classes
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Floats
|
7
|
+
// -------------------------
|
8
|
+
|
9
|
+
.clearfix {
|
10
|
+
@include clearfix;
|
11
|
+
}
|
12
|
+
.center-block {
|
13
|
+
@include center-block;
|
14
|
+
}
|
15
|
+
.pull-right {
|
16
|
+
float: right !important;
|
17
|
+
}
|
18
|
+
.pull-left {
|
19
|
+
float: left !important;
|
20
|
+
}
|
21
|
+
|
22
|
+
|
23
|
+
// Toggling content
|
24
|
+
// -------------------------
|
25
|
+
|
26
|
+
// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
|
27
|
+
.hide {
|
28
|
+
display: none !important;
|
29
|
+
}
|
30
|
+
.show {
|
31
|
+
display: block !important;
|
32
|
+
}
|
33
|
+
.invisible {
|
34
|
+
visibility: hidden;
|
35
|
+
}
|
36
|
+
.text-hide {
|
37
|
+
@include text-hide;
|
38
|
+
}
|
39
|
+
|
40
|
+
|
41
|
+
// Hide from screenreaders and browsers
|
42
|
+
//
|
43
|
+
// Credit: HTML5 Boilerplate
|
44
|
+
|
45
|
+
.hidden {
|
46
|
+
display: none !important;
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
// For Affix plugin
|
51
|
+
// -------------------------
|
52
|
+
|
53
|
+
.affix {
|
54
|
+
position: fixed;
|
55
|
+
}
|