bootswatch-sass 3.3.5 → 3.3.6.1
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 +4 -4
- data/assets/javascripts/bootstrap.js +2 -2
- data/assets/javascripts/bootstrap/affix.js +2 -2
- data/assets/javascripts/bootstrap/alert.js +2 -2
- data/assets/javascripts/bootstrap/button.js +2 -2
- data/assets/javascripts/bootstrap/carousel.js +2 -2
- data/assets/javascripts/bootstrap/collapse.js +2 -2
- data/assets/javascripts/bootstrap/dropdown.js +4 -4
- data/assets/javascripts/bootstrap/modal.js +2 -2
- data/assets/javascripts/bootstrap/popover.js +2 -2
- data/assets/javascripts/bootstrap/scrollspy.js +2 -2
- data/assets/javascripts/bootstrap/tab.js +2 -2
- data/assets/javascripts/bootstrap/tooltip.js +2 -2
- data/assets/javascripts/bootstrap/transition.js +1 -1
- data/assets/stylesheets/_bootstrap.scss +1 -1
- data/assets/stylesheets/bootstrap/_breadcrumbs.scss +3 -1
- data/assets/stylesheets/bootstrap/_button-groups.scss +2 -2
- data/assets/stylesheets/bootstrap/_carousel.scss +7 -6
- data/assets/stylesheets/bootstrap/_forms.scss +9 -3
- data/assets/stylesheets/bootstrap/_glyphicons.scss +2 -2
- data/assets/stylesheets/bootstrap/_input-groups.scss +7 -3
- data/assets/stylesheets/bootstrap/_jumbotron.scss +2 -0
- data/assets/stylesheets/bootstrap/_modals.scss +1 -1
- data/assets/stylesheets/bootstrap/_pagination.scss +2 -2
- data/assets/stylesheets/bootstrap/_theme.scss +1 -1
- data/assets/stylesheets/bootstrap/_type.scss +1 -1
- data/assets/stylesheets/bootstrap/_variables.scss +2 -0
- data/assets/stylesheets/bootstrap/mixins/_buttons.scss +1 -4
- data/assets/stylesheets/bootstrap/mixins/_grid.scss +2 -2
- data/assets/stylesheets/bootstrap/mixins/_hide-text.scss +1 -1
- data/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +2 -2
- data/assets/stylesheets/cerulean/_variables.scss +4 -2
- data/assets/stylesheets/cosmo/_bootswatch.scss +2 -1
- data/assets/stylesheets/cosmo/_variables.scss +3 -1
- data/assets/stylesheets/cyborg/_bootswatch.scss +9 -1
- data/assets/stylesheets/cyborg/_variables.scss +3 -1
- data/assets/stylesheets/darkly/_bootswatch.scss +2 -1
- data/assets/stylesheets/darkly/_variables.scss +3 -1
- data/assets/stylesheets/flatly/_bootswatch.scss +3 -2
- data/assets/stylesheets/flatly/_variables.scss +3 -1
- data/assets/stylesheets/journal/_bootswatch.scss +2 -1
- data/assets/stylesheets/journal/_variables.scss +3 -1
- data/assets/stylesheets/lumen/_bootswatch.scss +11 -8
- data/assets/stylesheets/lumen/_variables.scss +7 -5
- data/assets/stylesheets/paper/_bootswatch.scss +53 -26
- data/assets/stylesheets/paper/_variables.scss +5 -3
- data/assets/stylesheets/readable/_bootswatch.scss +3 -2
- data/assets/stylesheets/readable/_variables.scss +3 -1
- data/assets/stylesheets/sandstone/_bootswatch.scss +2 -1
- data/assets/stylesheets/sandstone/_variables.scss +3 -1
- data/assets/stylesheets/simplex/_bootswatch.scss +2 -1
- data/assets/stylesheets/simplex/_variables.scss +3 -1
- data/assets/stylesheets/slate/_variables.scss +3 -1
- data/assets/stylesheets/spacelab/_bootswatch.scss +6 -1
- data/assets/stylesheets/spacelab/_variables.scss +3 -1
- data/assets/stylesheets/superhero/_bootswatch.scss +8 -19
- data/assets/stylesheets/superhero/_variables.scss +5 -3
- data/assets/stylesheets/united/_bootswatch.scss +2 -1
- data/assets/stylesheets/united/_variables.scss +3 -1
- data/assets/stylesheets/yeti/_bootswatch.scss +6 -3
- data/assets/stylesheets/yeti/_variables.scss +3 -1
- data/lib/bootswatch-sass/version.rb +1 -1
- metadata +3 -3
@@ -6,8 +6,8 @@
|
|
6
6
|
@mixin container-fixed($gutter: $grid-gutter-width) {
|
7
7
|
margin-right: auto;
|
8
8
|
margin-left: auto;
|
9
|
-
padding-left: ($gutter / 2);
|
10
|
-
padding-right: ($gutter / 2);
|
9
|
+
padding-left: floor(($gutter / 2));
|
10
|
+
padding-right: ceil(($gutter / 2));
|
11
11
|
@include clearfix;
|
12
12
|
}
|
13
13
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
// Vendor Prefixes
|
2
2
|
//
|
3
3
|
// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
|
4
|
-
// Autoprefixer in our Gruntfile. They
|
4
|
+
// Autoprefixer in our Gruntfile. They have been removed in v4.
|
5
5
|
|
6
6
|
// - Animations
|
7
7
|
// - Backface visibility
|
@@ -54,7 +54,7 @@
|
|
54
54
|
// Prevent browsers from flickering when using CSS 3D transforms.
|
55
55
|
// Default value is `visible`, but can be changed to `hidden`
|
56
56
|
|
57
|
-
@mixin backface-visibility($visibility){
|
57
|
+
@mixin backface-visibility($visibility) {
|
58
58
|
-webkit-backface-visibility: $visibility;
|
59
59
|
-moz-backface-visibility: $visibility;
|
60
60
|
backface-visibility: $visibility;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Cerulean 3.3.
|
2
|
+
// Cerulean 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -68,7 +68,7 @@ $line-height-computed: floor(($font-size-base * $line-height-base)) !default;
|
|
68
68
|
//** By default, this inherits from the `<body>`.
|
69
69
|
$headings-font-family: $font-family-base !default;
|
70
70
|
$headings-font-weight: 500 !default;
|
71
|
-
$headings-line-height: 1.
|
71
|
+
$headings-line-height: 1.2 !default;
|
72
72
|
$headings-color: #317EAC !default;
|
73
73
|
|
74
74
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-lighter !default;
|
|
864
864
|
$page-header-border-color: $gray-lighter !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-lighter !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Cosmo 3.3.
|
2
|
+
// Cosmo 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-lighter !default;
|
|
864
864
|
$page-header-border-color: $gray-lighter !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-lighter !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:400,700" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -35,6 +36,13 @@
|
|
35
36
|
color: $brand-info;
|
36
37
|
}
|
37
38
|
|
39
|
+
.bg-success,
|
40
|
+
.bg-info,
|
41
|
+
.bg-warning,
|
42
|
+
.bg-danger {
|
43
|
+
color: #fff;
|
44
|
+
}
|
45
|
+
|
38
46
|
// Tables =====================================================================
|
39
47
|
|
40
48
|
table,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Cyborg 3.3.
|
2
|
+
// Cyborg 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-dark !default;
|
|
864
864
|
$page-header-border-color: $gray-dark !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-dark !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Darkly 3.3.
|
2
|
+
// Darkly 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray !default;
|
|
864
864
|
$page-header-border-color: transparent !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -119,7 +120,7 @@ table,
|
|
119
120
|
// Forms ======================================================================
|
120
121
|
|
121
122
|
.form-control,
|
122
|
-
input
|
123
|
+
input {
|
123
124
|
border-width: 2px;
|
124
125
|
@include box-shadow(none);
|
125
126
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Flatly 3.3.
|
2
|
+
// Flatly 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-lighter !default;
|
|
864
864
|
$page-header-border-color: transparent !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-lighter !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Journal 3.3.
|
2
|
+
// Journal 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-lighter !default;
|
|
864
864
|
$page-header-border-color: $gray-lighter !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-lighter !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
@mixin shadow($width: 4px){
|
8
9
|
border-width: 0 1px $width 1px;
|
@@ -190,13 +191,15 @@ table,
|
|
190
191
|
}
|
191
192
|
}
|
192
193
|
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
194
|
+
&:not(.table-bordered) {
|
195
|
+
> thead > tr > th,
|
196
|
+
> tbody > tr > th,
|
197
|
+
> tfoot > tr > th,
|
198
|
+
> thead > tr > td,
|
199
|
+
> tbody > tr > td,
|
200
|
+
> tfoot > tr > td {
|
201
|
+
border-color: transparent;
|
202
|
+
}
|
200
203
|
}
|
201
204
|
}
|
202
205
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
$bootstrap-sass-asset-helper: false !default;
|
2
|
-
// Lumen 3.3.
|
2
|
+
// Lumen 3.3.6
|
3
3
|
// Variables
|
4
4
|
// --------------------------------------------------
|
5
5
|
|
@@ -136,7 +136,7 @@ $table-bg-hover: #f5f5f5 !default;
|
|
136
136
|
$table-bg-active: $table-bg-hover !default;
|
137
137
|
|
138
138
|
//** Border color for table and cell borders.
|
139
|
-
$table-border-color:
|
139
|
+
$table-border-color: $gray-lighter !default;
|
140
140
|
|
141
141
|
|
142
142
|
//== Buttons
|
@@ -599,9 +599,9 @@ $modal-title-line-height: $line-height-base !default;
|
|
599
599
|
//** Background color of modal content area
|
600
600
|
$modal-content-bg: #fff !default;
|
601
601
|
//** Modal content border color
|
602
|
-
$modal-content-border-color: rgba(0,0,0,.
|
602
|
+
$modal-content-border-color: rgba(0,0,0,.05) !default;
|
603
603
|
//** Modal content border color **for IE8**
|
604
|
-
$modal-content-fallback-border-color:
|
604
|
+
$modal-content-fallback-border-color: $gray-lighter !default;
|
605
605
|
|
606
606
|
//** Modal backdrop background color
|
607
607
|
$modal-backdrop-bg: #000 !default;
|
@@ -672,7 +672,7 @@ $progress-bar-info-bg: $brand-info !default;
|
|
672
672
|
//** Background color on `.list-group-item`
|
673
673
|
$list-group-bg: #fff !default;
|
674
674
|
//** `.list-group-item` border color
|
675
|
-
$list-group-border:
|
675
|
+
$list-group-border: $gray-lighter !default;
|
676
676
|
//** List group border radius
|
677
677
|
$list-group-border-radius: $border-radius-base !default;
|
678
678
|
|
@@ -864,5 +864,7 @@ $blockquote-border-color: $gray-lighter !default;
|
|
864
864
|
$page-header-border-color: $gray-lighter !default;
|
865
865
|
//** Width of horizontal description list titles
|
866
866
|
$dl-horizontal-offset: $component-offset-horizontal !default;
|
867
|
+
//** Point at which .dl-horizontal becomes horizontal
|
868
|
+
$dl-horizontal-breakpoint: $grid-float-breakpoint !default;
|
867
869
|
//** Horizontal line color.
|
868
870
|
$hr-border: $gray-lighter !default;
|
@@ -2,7 +2,8 @@
|
|
2
2
|
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
-
|
5
|
+
$web-font-path: "https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" !default;
|
6
|
+
@import url($web-font-path);
|
6
7
|
|
7
8
|
// Navbar =====================================================================
|
8
9
|
|
@@ -15,13 +16,13 @@
|
|
15
16
|
}
|
16
17
|
|
17
18
|
&-inverse {
|
18
|
-
.form
|
19
|
-
color: #fff;
|
20
|
-
@include placeholder($navbar-inverse-link-color);
|
19
|
+
.navbar-form {
|
21
20
|
|
22
|
-
|
23
|
-
|
21
|
+
input[type=text],
|
22
|
+
input[type=password] {
|
23
|
+
color: #fff;
|
24
24
|
@include box-shadow(inset 0 -1px 0 $navbar-inverse-link-color);
|
25
|
+
@include placeholder($navbar-inverse-link-color);
|
25
26
|
|
26
27
|
&:focus {
|
27
28
|
@include box-shadow(inset 0 -2px 0 #fff);
|
@@ -38,17 +39,20 @@
|
|
38
39
|
background-size: 200%;
|
39
40
|
background-position: 50%;
|
40
41
|
|
41
|
-
&:hover,
|
42
|
-
&:active:hover,
|
43
42
|
&:focus {
|
43
|
+
background-color: $bg;
|
44
|
+
}
|
45
|
+
|
46
|
+
&:hover,
|
47
|
+
&:active:hover {
|
44
48
|
background-color: darken($bg, 6%);
|
45
49
|
}
|
46
50
|
|
47
51
|
&:active {
|
48
|
-
background-color: darken($bg,
|
49
|
-
@include gradient-radial(darken($bg,
|
52
|
+
background-color: darken($bg, 12%);
|
53
|
+
@include gradient-radial(darken($bg, 12%) 10%, $bg 11%);
|
50
54
|
background-size: 1000%;
|
51
|
-
@include box-shadow(2px 2px
|
55
|
+
@include box-shadow(2px 2px 4px rgba(0,0,0,.4));
|
52
56
|
}
|
53
57
|
}
|
54
58
|
}
|
@@ -59,26 +63,34 @@
|
|
59
63
|
@include btn(info,$btn-info-bg);
|
60
64
|
@include btn(warning,$btn-warning-bg);
|
61
65
|
@include btn(danger,$btn-danger-bg);
|
66
|
+
@include btn(link,#fff);
|
62
67
|
|
63
68
|
.btn {
|
64
69
|
text-transform: uppercase;
|
65
|
-
border
|
66
|
-
|
67
|
-
@include
|
68
|
-
@include transition(all 0.2s);
|
70
|
+
border: none;
|
71
|
+
@include box-shadow(1px 1px 4px rgba(0,0,0,.4));
|
72
|
+
@include transition(all 0.4s);
|
69
73
|
|
70
74
|
&-link {
|
75
|
+
border-radius: $btn-border-radius-base;
|
71
76
|
@include box-shadow(none);
|
77
|
+
color: $btn-default-color;
|
72
78
|
|
73
79
|
&:hover,
|
74
80
|
&:focus {
|
75
|
-
|
81
|
+
@include box-shadow(none);
|
82
|
+
color: $btn-default-color;
|
76
83
|
text-decoration: none;
|
77
84
|
}
|
78
85
|
}
|
79
86
|
|
80
|
-
&-default
|
81
|
-
|
87
|
+
&-default {
|
88
|
+
|
89
|
+
&.disabled {
|
90
|
+
background-color: rgba(0, 0, 0, 0.1);
|
91
|
+
color: rgba(0, 0, 0, 0.4);
|
92
|
+
opacity: 1;
|
93
|
+
}
|
82
94
|
}
|
83
95
|
}
|
84
96
|
|
@@ -105,7 +117,6 @@
|
|
105
117
|
body {
|
106
118
|
-webkit-font-smoothing: antialiased;
|
107
119
|
letter-spacing: .1px;
|
108
|
-
text-rendering: optimizeLegibility;
|
109
120
|
}
|
110
121
|
|
111
122
|
p {
|
@@ -116,7 +127,6 @@ input,
|
|
116
127
|
button {
|
117
128
|
-webkit-font-smoothing: antialiased;
|
118
129
|
letter-spacing: .1px;
|
119
|
-
text-rendering: optimizeLegibility;
|
120
130
|
}
|
121
131
|
|
122
132
|
a {
|
@@ -238,9 +248,9 @@ input[type="radio"],
|
|
238
248
|
.radio input[type="radio"],
|
239
249
|
.radio-inline input[type="radio"] {
|
240
250
|
position: relative;
|
241
|
-
margin-top:
|
251
|
+
margin-top: 6px;
|
242
252
|
margin-right: 4px;
|
243
|
-
vertical-align:
|
253
|
+
vertical-align: top;
|
244
254
|
border: none;
|
245
255
|
background-color: transparent;
|
246
256
|
-webkit-appearance: none;
|
@@ -257,7 +267,6 @@ input[type="radio"],
|
|
257
267
|
display: block;
|
258
268
|
width: 18px;
|
259
269
|
height: 18px;
|
260
|
-
margin-top: -3px;
|
261
270
|
border-radius: 50%;
|
262
271
|
@include transition(240ms);
|
263
272
|
}
|
@@ -265,12 +274,14 @@ input[type="radio"],
|
|
265
274
|
&:before {
|
266
275
|
position: absolute;
|
267
276
|
left: 0;
|
268
|
-
top:
|
277
|
+
top: -3px;
|
269
278
|
background-color: $brand-primary;
|
270
279
|
@include scale(0);
|
271
280
|
}
|
272
281
|
|
273
282
|
&:after {
|
283
|
+
position: relative;
|
284
|
+
top: -3px;
|
274
285
|
border: 2px solid $gray;
|
275
286
|
}
|
276
287
|
|
@@ -296,8 +307,8 @@ input[type="checkbox"],
|
|
296
307
|
.checkbox input[type="checkbox"],
|
297
308
|
.checkbox-inline input[type="checkbox"] {
|
298
309
|
position: relative;
|
299
|
-
vertical-align: -4px;
|
300
310
|
border: none;
|
311
|
+
margin-bottom: -4px;
|
301
312
|
-webkit-appearance: none;
|
302
313
|
appearance: none;
|
303
314
|
cursor: pointer;
|
@@ -306,6 +317,10 @@ input[type="checkbox"],
|
|
306
317
|
outline: none;
|
307
318
|
}
|
308
319
|
|
320
|
+
&:focus:after {
|
321
|
+
border-color: $brand-primary;
|
322
|
+
}
|
323
|
+
|
309
324
|
&:after {
|
310
325
|
content: "";
|
311
326
|
display: block;
|
@@ -350,8 +365,12 @@ input[type="checkbox"],
|
|
350
365
|
.has-warning {
|
351
366
|
input:not([type=checkbox]),
|
352
367
|
.form-control,
|
368
|
+
input.form-control[readonly],
|
369
|
+
input[type=text][readonly],
|
370
|
+
[type=text].form-control[readonly],
|
353
371
|
input:not([type=checkbox]):focus,
|
354
372
|
.form-control:focus {
|
373
|
+
border-bottom: none;
|
355
374
|
@include box-shadow(inset 0 -2px 0 $brand-warning);
|
356
375
|
}
|
357
376
|
}
|
@@ -359,8 +378,12 @@ input[type="checkbox"],
|
|
359
378
|
.has-error {
|
360
379
|
input:not([type=checkbox]),
|
361
380
|
.form-control,
|
381
|
+
input.form-control[readonly],
|
382
|
+
input[type=text][readonly],
|
383
|
+
[type=text].form-control[readonly],
|
362
384
|
input:not([type=checkbox]):focus,
|
363
385
|
.form-control:focus {
|
386
|
+
border-bottom: none;
|
364
387
|
@include box-shadow(inset 0 -2px 0 $brand-danger);
|
365
388
|
}
|
366
389
|
}
|
@@ -368,8 +391,12 @@ input[type="checkbox"],
|
|
368
391
|
.has-success {
|
369
392
|
input:not([type=checkbox]),
|
370
393
|
.form-control,
|
394
|
+
input.form-control[readonly],
|
395
|
+
input[type=text][readonly],
|
396
|
+
[type=text].form-control[readonly],
|
371
397
|
input:not([type=checkbox]):focus,
|
372
398
|
.form-control:focus {
|
399
|
+
border-bottom: none;
|
373
400
|
@include box-shadow(inset 0 -2px 0 $brand-success);
|
374
401
|
}
|
375
402
|
}
|
@@ -475,7 +502,7 @@ input[type="checkbox"],
|
|
475
502
|
}
|
476
503
|
|
477
504
|
.badge {
|
478
|
-
padding:
|
505
|
+
padding: 4px 6px 4px;
|
479
506
|
}
|
480
507
|
|
481
508
|
.progress {
|