twitter-bootstrap-rails 3.2.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-bootstrap-rails might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/README.md +263 -247
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +273 -214
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/javascripts/twitter/bootstrap/affix.js +60 -35
- data/app/assets/javascripts/twitter/bootstrap/alert.js +15 -9
- data/app/assets/javascripts/twitter/bootstrap/button.js +33 -20
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +79 -47
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +84 -43
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +65 -47
- data/app/assets/javascripts/twitter/bootstrap/modal.js +138 -44
- data/app/assets/javascripts/twitter/bootstrap/popover.js +12 -14
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +57 -38
- data/app/assets/javascripts/twitter/bootstrap/tab.js +54 -24
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +202 -87
- data/app/assets/javascripts/twitter/bootstrap/transition.js +19 -8
- data/app/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +1 -1
- data/app/assets/stylesheets/twitter-bootstrap-static/sprites.css.erb +1 -1
- data/app/helpers/bootstrap_flash_helper.rb +8 -3
- data/app/helpers/form_errors_helper.rb +11 -11
- data/app/helpers/glyph_helper.rb +7 -3
- data/app/helpers/modal_helper.rb +9 -13
- data/app/helpers/navbar_helper.rb +5 -2
- data/app/helpers/twitter_breadcrumbs_helper.rb +4 -1
- data/app/views/twitter-bootstrap/_breadcrumbs.html.erb +5 -5
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.css +3 -4
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +7 -15
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +5 -5
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +3 -3
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +3 -5
- data/lib/generators/bootstrap/themed/templates/_form.html.erb +12 -9
- data/lib/generators/bootstrap/themed/templates/_form.html.haml +7 -5
- data/lib/generators/bootstrap/themed/templates/_form.html.slim +8 -6
- data/lib/generators/bootstrap/themed/templates/edit.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.erb +2 -0
- data/lib/generators/bootstrap/themed/templates/index.html.haml +1 -0
- data/lib/generators/bootstrap/themed/templates/index.html.slim +4 -3
- data/lib/generators/bootstrap/themed/templates/new.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/simple_form/_form.html.haml +1 -1
- data/lib/twitter/bootstrap/rails/breadcrumbs.rb +24 -13
- data/lib/twitter/bootstrap/rails/engine.rb +17 -12
- data/lib/twitter/bootstrap/rails/version.rb +1 -1
- data/spec/lib/breadcrumbs_spec.rb +42 -17
- data/spec/lib/twitter_bootstrap_rails/badge_label_helper_spec.rb +10 -4
- data/spec/lib/twitter_bootstrap_rails/bootstrap_flash_helper_spec.rb +128 -0
- data/spec/lib/twitter_bootstrap_rails/form_errors_helper_spec.rb +148 -0
- data/spec/lib/twitter_bootstrap_rails/glyph_helper_spec.rb +24 -0
- data/spec/lib/twitter_bootstrap_rails/modal_helper_spec.rb +2 -2
- data/spec/lib/twitter_bootstrap_rails/navbar_helper_spec.rb +62 -12
- data/spec/spec_helper.rb +5 -1
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +1 -3
- data/vendor/toolkit/twitter/bootstrap/alerts.less +5 -0
- data/vendor/toolkit/twitter/bootstrap/badges.less +14 -3
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +6 -1
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +13 -14
- data/vendor/toolkit/twitter/bootstrap/buttons.less +14 -7
- data/vendor/toolkit/twitter/bootstrap/carousel.less +34 -7
- data/vendor/toolkit/twitter/bootstrap/close.less +1 -0
- data/vendor/toolkit/twitter/bootstrap/code.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +3 -1
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +9 -8
- data/vendor/toolkit/twitter/bootstrap/forms.less +110 -41
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +75 -3
- data/vendor/toolkit/twitter/bootstrap/grid.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/input-groups.less +8 -3
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +10 -4
- data/vendor/toolkit/twitter/bootstrap/labels.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/list-group.less +11 -13
- data/vendor/toolkit/twitter/bootstrap/media.less +40 -30
- data/vendor/toolkit/twitter/bootstrap/mixins/alerts.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/background-variant.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/border-radius.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +19 -6
- data/vendor/toolkit/twitter/bootstrap/mixins/center-block.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/clearfix.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/gradients.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +4 -4
- data/vendor/toolkit/twitter/bootstrap/mixins/grid.less +4 -4
- data/vendor/toolkit/twitter/bootstrap/mixins/hide-text.less +2 -2
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/list-group.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/opacity.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/pagination.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/panels.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-text.less +18 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/resize.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/size.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/table-row.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less +2 -1
- data/vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +8 -5
- data/vendor/toolkit/twitter/bootstrap/mixins.less +1 -0
- data/vendor/toolkit/twitter/bootstrap/modals.less +3 -3
- data/vendor/toolkit/twitter/bootstrap/navbar.less +6 -1
- data/vendor/toolkit/twitter/bootstrap/navs.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/normalize.less +12 -13
- data/vendor/toolkit/twitter/bootstrap/pager.less +1 -2
- data/vendor/toolkit/twitter/bootstrap/pagination.less +5 -4
- data/vendor/toolkit/twitter/bootstrap/panels.less +27 -4
- data/vendor/toolkit/twitter/bootstrap/popovers.less +5 -7
- data/vendor/toolkit/twitter/bootstrap/print.less +96 -96
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +1 -14
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +10 -9
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +0 -0
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +12 -1
- data/vendor/toolkit/twitter/bootstrap/tables.less +6 -5
- data/vendor/toolkit/twitter/bootstrap/theme.less +47 -16
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +1 -1
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +13 -7
- data/vendor/toolkit/twitter/bootstrap/type.less +2 -8
- data/vendor/toolkit/twitter/bootstrap/utilities.less +0 -1
- data/vendor/toolkit/twitter/bootstrap/variables.less +36 -14
- data/vendor/toolkit/twitter/bootstrap/wells.less +0 -0
- metadata +76 -52
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +0 -504
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
- data/app/assets/stylesheets/twitter-bootstrap-static/fontawesome.css.erb +0 -4
- data/vendor/static-source/fontawesome.less +0 -8
- data/vendor/toolkit/fontawesome/bordered-pulled.less +0 -16
- data/vendor/toolkit/fontawesome/core.less +0 -12
- data/vendor/toolkit/fontawesome/fixed-width.less +0 -6
- data/vendor/toolkit/fontawesome/font-awesome.less +0 -17
- data/vendor/toolkit/fontawesome/icons.less +0 -506
- data/vendor/toolkit/fontawesome/larger.less +0 -13
- data/vendor/toolkit/fontawesome/list.less +0 -19
- data/vendor/toolkit/fontawesome/mixins.less +0 -20
- data/vendor/toolkit/fontawesome/path.less +0 -14
- data/vendor/toolkit/fontawesome/rotated-flipped.less +0 -9
- data/vendor/toolkit/fontawesome/spinning.less +0 -32
- data/vendor/toolkit/fontawesome/stacked.less +0 -20
- data/vendor/toolkit/fontawesome/variables.less +0 -515
@@ -1,101 +1,101 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
//
|
4
|
-
//
|
1
|
+
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
|
2
|
+
|
3
|
+
// ==========================================================================
|
4
|
+
// Print styles.
|
5
|
+
// Inlined to avoid the additional HTTP request: h5bp.com/r
|
6
|
+
// ==========================================================================
|
5
7
|
|
6
8
|
@media print {
|
9
|
+
*,
|
10
|
+
*:before,
|
11
|
+
*:after {
|
12
|
+
background: transparent !important;
|
13
|
+
color: #000 !important; // Black prints faster: h5bp.com/s
|
14
|
+
box-shadow: none !important;
|
15
|
+
text-shadow: none !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
a,
|
19
|
+
a:visited {
|
20
|
+
text-decoration: underline;
|
21
|
+
}
|
22
|
+
|
23
|
+
a[href]:after {
|
24
|
+
content: " (" attr(href) ")";
|
25
|
+
}
|
26
|
+
|
27
|
+
abbr[title]:after {
|
28
|
+
content: " (" attr(title) ")";
|
29
|
+
}
|
30
|
+
|
31
|
+
// Don't show links that are fragment identifiers,
|
32
|
+
// or use the `javascript:` pseudo protocol
|
33
|
+
a[href^="#"]:after,
|
34
|
+
a[href^="javascript:"]:after {
|
35
|
+
content: "";
|
36
|
+
}
|
37
|
+
|
38
|
+
pre,
|
39
|
+
blockquote {
|
40
|
+
border: 1px solid #999;
|
41
|
+
page-break-inside: avoid;
|
42
|
+
}
|
43
|
+
|
44
|
+
thead {
|
45
|
+
display: table-header-group; // h5bp.com/t
|
46
|
+
}
|
47
|
+
|
48
|
+
tr,
|
49
|
+
img {
|
50
|
+
page-break-inside: avoid;
|
51
|
+
}
|
52
|
+
|
53
|
+
img {
|
54
|
+
max-width: 100% !important;
|
55
|
+
}
|
56
|
+
|
57
|
+
p,
|
58
|
+
h2,
|
59
|
+
h3 {
|
60
|
+
orphans: 3;
|
61
|
+
widows: 3;
|
62
|
+
}
|
63
|
+
|
64
|
+
h2,
|
65
|
+
h3 {
|
66
|
+
page-break-after: avoid;
|
67
|
+
}
|
68
|
+
|
69
|
+
// Bootstrap specific changes start
|
7
70
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
border: 1px solid #999;
|
37
|
-
page-break-inside: avoid;
|
38
|
-
}
|
39
|
-
|
40
|
-
thead {
|
41
|
-
display: table-header-group; // h5bp.com/t
|
42
|
-
}
|
43
|
-
|
44
|
-
tr,
|
45
|
-
img {
|
46
|
-
page-break-inside: avoid;
|
47
|
-
}
|
48
|
-
|
49
|
-
img {
|
50
|
-
max-width: 100% !important;
|
51
|
-
}
|
52
|
-
|
53
|
-
p,
|
54
|
-
h2,
|
55
|
-
h3 {
|
56
|
-
orphans: 3;
|
57
|
-
widows: 3;
|
58
|
-
}
|
59
|
-
|
60
|
-
h2,
|
61
|
-
h3 {
|
62
|
-
page-break-after: avoid;
|
63
|
-
}
|
64
|
-
|
65
|
-
// Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245
|
66
|
-
// Once fixed, we can just straight up remove this.
|
67
|
-
select {
|
68
|
-
background: #fff !important;
|
69
|
-
}
|
70
|
-
|
71
|
-
// Bootstrap components
|
72
|
-
.navbar {
|
73
|
-
display: none;
|
74
|
-
}
|
75
|
-
.table {
|
76
|
-
td,
|
77
|
-
th {
|
78
|
-
background-color: #fff !important;
|
79
|
-
}
|
80
|
-
}
|
81
|
-
.btn,
|
82
|
-
.dropup > .btn {
|
83
|
-
> .caret {
|
84
|
-
border-top-color: #000 !important;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
.label {
|
88
|
-
border: 1px solid #000;
|
89
|
-
}
|
90
|
-
|
91
|
-
.table {
|
92
|
-
border-collapse: collapse !important;
|
93
|
-
}
|
94
|
-
.table-bordered {
|
95
|
-
th,
|
96
|
-
td {
|
97
|
-
border: 1px solid #ddd !important;
|
98
|
-
}
|
99
|
-
}
|
71
|
+
// Bootstrap components
|
72
|
+
.navbar {
|
73
|
+
display: none;
|
74
|
+
}
|
75
|
+
.btn,
|
76
|
+
.dropup > .btn {
|
77
|
+
> .caret {
|
78
|
+
border-top-color: #000 !important;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
.label {
|
82
|
+
border: 1px solid #000;
|
83
|
+
}
|
84
|
+
|
85
|
+
.table {
|
86
|
+
border-collapse: collapse !important;
|
87
|
+
|
88
|
+
td,
|
89
|
+
th {
|
90
|
+
background-color: #fff !important;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
.table-bordered {
|
94
|
+
th,
|
95
|
+
td {
|
96
|
+
border: 1px solid #ddd !important;
|
97
|
+
}
|
98
|
+
}
|
100
99
|
|
100
|
+
// Bootstrap specific changes end
|
101
101
|
}
|
@@ -19,7 +19,6 @@
|
|
19
19
|
}
|
20
20
|
|
21
21
|
|
22
|
-
|
23
22
|
// Bar itself
|
24
23
|
// -------------------------
|
25
24
|
|
@@ -29,7 +28,7 @@
|
|
29
28
|
height: @line-height-computed;
|
30
29
|
margin-bottom: @line-height-computed;
|
31
30
|
background-color: @progress-bg;
|
32
|
-
border-radius: @border-radius
|
31
|
+
border-radius: @progress-border-radius;
|
33
32
|
.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
34
33
|
}
|
35
34
|
|
@@ -67,18 +66,6 @@
|
|
67
66
|
.animation(progress-bar-stripes 2s linear infinite);
|
68
67
|
}
|
69
68
|
|
70
|
-
// Account for lower percentages
|
71
|
-
.progress-bar {
|
72
|
-
&[aria-valuenow="0"] {
|
73
|
-
color: @gray-light;
|
74
|
-
min-width: 30px;
|
75
|
-
background-color: transparent;
|
76
|
-
background-image: none;
|
77
|
-
box-shadow: none;
|
78
|
-
}
|
79
|
-
}
|
80
|
-
|
81
|
-
|
82
69
|
|
83
70
|
// Variations
|
84
71
|
// -------------------------
|
@@ -12,7 +12,8 @@
|
|
12
12
|
.embed-responsive-item,
|
13
13
|
iframe,
|
14
14
|
embed,
|
15
|
-
object
|
15
|
+
object,
|
16
|
+
video {
|
16
17
|
position: absolute;
|
17
18
|
top: 0;
|
18
19
|
left: 0;
|
@@ -21,14 +22,14 @@
|
|
21
22
|
width: 100%;
|
22
23
|
border: 0;
|
23
24
|
}
|
25
|
+
}
|
24
26
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
27
|
+
// Modifier class for 16:9 aspect ratio
|
28
|
+
.embed-responsive-16by9 {
|
29
|
+
padding-bottom: 56.25%;
|
30
|
+
}
|
29
31
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
}
|
32
|
+
// Modifier class for 4:3 aspect ratio
|
33
|
+
.embed-responsive-4by3 {
|
34
|
+
padding-bottom: 75%;
|
34
35
|
}
|
File without changes
|
@@ -52,7 +52,7 @@ a {
|
|
52
52
|
&:hover,
|
53
53
|
&:focus {
|
54
54
|
color: @link-hover-color;
|
55
|
-
text-decoration:
|
55
|
+
text-decoration: @link-hover-decoration;
|
56
56
|
}
|
57
57
|
|
58
58
|
&:focus {
|
@@ -148,3 +148,14 @@ hr {
|
|
148
148
|
clip: auto;
|
149
149
|
}
|
150
150
|
}
|
151
|
+
|
152
|
+
|
153
|
+
// iOS "clickable elements" fix for role="button"
|
154
|
+
//
|
155
|
+
// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
|
156
|
+
// for traditionally non-focusable elements with role="button"
|
157
|
+
// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
|
158
|
+
|
159
|
+
[role="button"] {
|
160
|
+
cursor: pointer;
|
161
|
+
}
|
@@ -111,7 +111,7 @@ th {
|
|
111
111
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
112
112
|
|
113
113
|
.table-striped {
|
114
|
-
> tbody > tr:nth-
|
114
|
+
> tbody > tr:nth-of-type(odd) {
|
115
115
|
background-color: @table-bg-accent;
|
116
116
|
}
|
117
117
|
}
|
@@ -133,7 +133,7 @@ th {
|
|
133
133
|
// Reset default table behavior
|
134
134
|
|
135
135
|
table col[class*="col-"] {
|
136
|
-
position: static; // Prevent border hiding in Firefox and IE9
|
136
|
+
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
|
137
137
|
float: none;
|
138
138
|
display: table-column;
|
139
139
|
}
|
@@ -141,7 +141,7 @@ table {
|
|
141
141
|
td,
|
142
142
|
th {
|
143
143
|
&[class*="col-"] {
|
144
|
-
position: static; // Prevent border hiding in Firefox and IE9
|
144
|
+
position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
|
145
145
|
float: none;
|
146
146
|
display: table-cell;
|
147
147
|
}
|
@@ -169,14 +169,15 @@ table {
|
|
169
169
|
// will display normally.
|
170
170
|
|
171
171
|
.table-responsive {
|
172
|
+
overflow-x: auto;
|
173
|
+
min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
|
174
|
+
|
172
175
|
@media screen and (max-width: @screen-xs-max) {
|
173
176
|
width: 100%;
|
174
177
|
margin-bottom: (@line-height-computed * 0.75);
|
175
178
|
overflow-y: hidden;
|
176
|
-
overflow-x: auto;
|
177
179
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
178
180
|
border: 1px solid @table-border-color;
|
179
|
-
-webkit-overflow-scrolling: touch;
|
180
181
|
|
181
182
|
// Tighten up spacing
|
182
183
|
> .table {
|
@@ -1,3 +1,8 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v3.3.6 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2015 Twitter, Inc.
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
|
+
*/
|
1
6
|
|
2
7
|
//
|
3
8
|
// Load core variables and mixins
|
@@ -7,7 +12,6 @@
|
|
7
12
|
@import "mixins.less";
|
8
13
|
|
9
14
|
|
10
|
-
|
11
15
|
//
|
12
16
|
// Buttons
|
13
17
|
// --------------------------------------------------
|
@@ -28,12 +32,22 @@
|
|
28
32
|
&.active {
|
29
33
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
30
34
|
}
|
35
|
+
|
36
|
+
&.disabled,
|
37
|
+
&[disabled],
|
38
|
+
fieldset[disabled] & {
|
39
|
+
.box-shadow(none);
|
40
|
+
}
|
41
|
+
|
42
|
+
.badge {
|
43
|
+
text-shadow: none;
|
44
|
+
}
|
31
45
|
}
|
32
46
|
|
33
47
|
// Mixin for generating new styles
|
34
48
|
.btn-styles(@btn-color: #555) {
|
35
49
|
#gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
|
36
|
-
.reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
|
50
|
+
.reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
|
37
51
|
background-repeat: repeat-x;
|
38
52
|
border-color: darken(@btn-color, 14%);
|
39
53
|
|
@@ -49,10 +63,18 @@
|
|
49
63
|
border-color: darken(@btn-color, 14%);
|
50
64
|
}
|
51
65
|
|
52
|
-
|
53
|
-
&[disabled]
|
54
|
-
|
55
|
-
|
66
|
+
&.disabled,
|
67
|
+
&[disabled],
|
68
|
+
fieldset[disabled] & {
|
69
|
+
&,
|
70
|
+
&:hover,
|
71
|
+
&:focus,
|
72
|
+
&.focus,
|
73
|
+
&:active,
|
74
|
+
&.active {
|
75
|
+
background-color: darken(@btn-color, 12%);
|
76
|
+
background-image: none;
|
77
|
+
}
|
56
78
|
}
|
57
79
|
}
|
58
80
|
|
@@ -74,7 +96,6 @@
|
|
74
96
|
.btn-danger { .btn-styles(@btn-danger-bg); }
|
75
97
|
|
76
98
|
|
77
|
-
|
78
99
|
//
|
79
100
|
// Images
|
80
101
|
// --------------------------------------------------
|
@@ -85,7 +106,6 @@
|
|
85
106
|
}
|
86
107
|
|
87
108
|
|
88
|
-
|
89
109
|
//
|
90
110
|
// Dropdowns
|
91
111
|
// --------------------------------------------------
|
@@ -103,7 +123,6 @@
|
|
103
123
|
}
|
104
124
|
|
105
125
|
|
106
|
-
|
107
126
|
//
|
108
127
|
// Navbar
|
109
128
|
// --------------------------------------------------
|
@@ -118,7 +137,7 @@
|
|
118
137
|
|
119
138
|
.navbar-nav > .open > a,
|
120
139
|
.navbar-nav > .active > a {
|
121
|
-
#gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));
|
140
|
+
#gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));
|
122
141
|
.box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
|
123
142
|
}
|
124
143
|
}
|
@@ -130,11 +149,11 @@
|
|
130
149
|
// Inverted navbar
|
131
150
|
.navbar-inverse {
|
132
151
|
#gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
|
133
|
-
.reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
|
134
|
-
|
152
|
+
.reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
|
153
|
+
border-radius: @navbar-border-radius;
|
135
154
|
.navbar-nav > .open > a,
|
136
155
|
.navbar-nav > .active > a {
|
137
|
-
#gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));
|
156
|
+
#gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));
|
138
157
|
.box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
|
139
158
|
}
|
140
159
|
|
@@ -151,6 +170,17 @@
|
|
151
170
|
border-radius: 0;
|
152
171
|
}
|
153
172
|
|
173
|
+
// Fix active state of dropdown items in collapsed mode
|
174
|
+
@media (max-width: @grid-float-breakpoint-max) {
|
175
|
+
.navbar .navbar-nav .open .dropdown-menu > .active > a {
|
176
|
+
&,
|
177
|
+
&:hover,
|
178
|
+
&:focus {
|
179
|
+
color: #fff;
|
180
|
+
#gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
|
181
|
+
}
|
182
|
+
}
|
183
|
+
}
|
154
184
|
|
155
185
|
|
156
186
|
//
|
@@ -177,7 +207,6 @@
|
|
177
207
|
.alert-danger { .alert-styles(@alert-danger-bg); }
|
178
208
|
|
179
209
|
|
180
|
-
|
181
210
|
//
|
182
211
|
// Progress bars
|
183
212
|
// --------------------------------------------------
|
@@ -220,8 +249,11 @@
|
|
220
249
|
text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);
|
221
250
|
#gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));
|
222
251
|
border-color: darken(@list-group-active-border, 7.5%);
|
223
|
-
}
|
224
252
|
|
253
|
+
.badge {
|
254
|
+
text-shadow: none;
|
255
|
+
}
|
256
|
+
}
|
225
257
|
|
226
258
|
|
227
259
|
//
|
@@ -247,7 +279,6 @@
|
|
247
279
|
.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }
|
248
280
|
|
249
281
|
|
250
|
-
|
251
282
|
//
|
252
283
|
// Wells
|
253
284
|
// --------------------------------------------------
|
@@ -8,9 +8,11 @@
|
|
8
8
|
position: absolute;
|
9
9
|
z-index: @zindex-tooltip;
|
10
10
|
display: block;
|
11
|
-
|
11
|
+
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
12
|
+
// So reset our font and text properties to avoid inheriting weird values.
|
13
|
+
.reset-text();
|
12
14
|
font-size: @font-size-small;
|
13
|
-
|
15
|
+
|
14
16
|
.opacity(0);
|
15
17
|
|
16
18
|
&.in { .opacity(@tooltip-opacity); }
|
@@ -26,7 +28,6 @@
|
|
26
28
|
padding: 3px 8px;
|
27
29
|
color: @tooltip-color;
|
28
30
|
text-align: center;
|
29
|
-
text-decoration: none;
|
30
31
|
background-color: @tooltip-bg;
|
31
32
|
border-radius: @border-radius-base;
|
32
33
|
}
|
@@ -39,6 +40,7 @@
|
|
39
40
|
border-color: transparent;
|
40
41
|
border-style: solid;
|
41
42
|
}
|
43
|
+
// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
|
42
44
|
.tooltip {
|
43
45
|
&.top .tooltip-arrow {
|
44
46
|
bottom: 0;
|
@@ -49,13 +51,15 @@
|
|
49
51
|
}
|
50
52
|
&.top-left .tooltip-arrow {
|
51
53
|
bottom: 0;
|
52
|
-
|
54
|
+
right: @tooltip-arrow-width;
|
55
|
+
margin-bottom: -@tooltip-arrow-width;
|
53
56
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
54
57
|
border-top-color: @tooltip-arrow-color;
|
55
58
|
}
|
56
59
|
&.top-right .tooltip-arrow {
|
57
60
|
bottom: 0;
|
58
|
-
|
61
|
+
left: @tooltip-arrow-width;
|
62
|
+
margin-bottom: -@tooltip-arrow-width;
|
59
63
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
60
64
|
border-top-color: @tooltip-arrow-color;
|
61
65
|
}
|
@@ -82,13 +86,15 @@
|
|
82
86
|
}
|
83
87
|
&.bottom-left .tooltip-arrow {
|
84
88
|
top: 0;
|
85
|
-
|
89
|
+
right: @tooltip-arrow-width;
|
90
|
+
margin-top: -@tooltip-arrow-width;
|
86
91
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
87
92
|
border-bottom-color: @tooltip-arrow-color;
|
88
93
|
}
|
89
94
|
&.bottom-right .tooltip-arrow {
|
90
95
|
top: 0;
|
91
|
-
|
96
|
+
left: @tooltip-arrow-width;
|
97
|
+
margin-top: -@tooltip-arrow-width;
|
92
98
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
93
99
|
border-bottom-color: @tooltip-arrow-color;
|
94
100
|
}
|
@@ -211,7 +211,7 @@ dd {
|
|
211
211
|
&:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
|
212
212
|
}
|
213
213
|
|
214
|
-
@media (min-width: @
|
214
|
+
@media (min-width: @dl-horizontal-breakpoint) {
|
215
215
|
dt {
|
216
216
|
float: left;
|
217
217
|
width: (@dl-horizontal-offset - 20);
|
@@ -238,7 +238,7 @@ abbr[data-original-title] {
|
|
238
238
|
}
|
239
239
|
.initialism {
|
240
240
|
font-size: 90%;
|
241
|
-
text-
|
241
|
+
.text-uppercase();
|
242
242
|
}
|
243
243
|
|
244
244
|
// Blockquotes
|
@@ -294,12 +294,6 @@ blockquote.pull-right {
|
|
294
294
|
}
|
295
295
|
}
|
296
296
|
|
297
|
-
// Quotes
|
298
|
-
blockquote:before,
|
299
|
-
blockquote:after {
|
300
|
-
content: "";
|
301
|
-
}
|
302
|
-
|
303
297
|
// Addresses
|
304
298
|
address {
|
305
299
|
margin-bottom: @line-height-computed;
|