bootswatch 4.1.2 → 4.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/cerulean/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/cosmo/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +59 -3
- data/assets/stylesheets/bootswatch/cyborg/_variables.scss +3 -3
- data/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +57 -10
- data/assets/stylesheets/bootswatch/darkly/_variables.scss +8 -2
- data/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +68 -6
- data/assets/stylesheets/bootswatch/flatly/_variables.scss +3 -1
- data/assets/stylesheets/bootswatch/journal/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/journal/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/litera/_bootswatch.scss +63 -1
- data/assets/stylesheets/bootswatch/litera/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +67 -1
- data/assets/stylesheets/bootswatch/lumen/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/lux/_bootswatch.scss +7 -1
- data/assets/stylesheets/bootswatch/lux/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/materia/_bootswatch.scss +2 -1
- data/assets/stylesheets/bootswatch/materia/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/minty/_bootswatch.scss +63 -1
- data/assets/stylesheets/bootswatch/minty/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/pulse/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/pulse/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/sandstone/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/simplex/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/sketchy/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/sketchy/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/slate/_bootswatch.scss +61 -5
- data/assets/stylesheets/bootswatch/slate/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/solar/_bootswatch.scss +64 -3
- data/assets/stylesheets/bootswatch/solar/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/spacelab/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +65 -1
- data/assets/stylesheets/bootswatch/superhero/_variables.scss +3 -1
- data/assets/stylesheets/bootswatch/united/_bootswatch.scss +1 -1
- data/assets/stylesheets/bootswatch/united/_variables.scss +1 -1
- data/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +62 -1
- data/assets/stylesheets/bootswatch/yeti/_variables.scss +1 -1
- data/lib/bootswatch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3145c6188128460b9745c38fd4991079028db880c7b5626affb1e8611a69794b
|
4
|
+
data.tar.gz: 604ca072849e36a06a31482e7c0e1f954d5c5eaf8b854898c24bbac108b053b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3bdaaaf2fb4720c6cc8b044f959d8120cf33eaa1101e08f4c4d2099579ad2febe976d1ce99069f8a82189446e3a1fbf0672b8787b33a287ba49f6b2166e59a9
|
7
|
+
data.tar.gz: 3141d42dec76825e583e3ba4af9e50a9e0785f800d8bad3804f5052a690ec43d46ee1a0c985f0bfe939ec3d034ea727d2f63373a0c0c37ad6f181c6dfe2b5e67
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Cyborg 4.1.
|
1
|
+
// Cyborg 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -54,8 +54,28 @@ table {
|
|
54
54
|
|
55
55
|
.table {
|
56
56
|
|
57
|
-
|
58
|
-
|
57
|
+
&-primary {
|
58
|
+
&, > th, > td {
|
59
|
+
background-color: $primary;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
&-secondary {
|
64
|
+
&, > th, > td {
|
65
|
+
background-color: $secondary;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
&-light {
|
70
|
+
&, > th, > td {
|
71
|
+
background-color: $light;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
&-dark {
|
76
|
+
&, > th, > td {
|
77
|
+
background-color: $dark;
|
78
|
+
}
|
59
79
|
}
|
60
80
|
|
61
81
|
&-success {
|
@@ -82,8 +102,38 @@ table {
|
|
82
102
|
}
|
83
103
|
}
|
84
104
|
|
105
|
+
&-active {
|
106
|
+
&, > th, > td {
|
107
|
+
background-color: $table-active-bg;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
85
111
|
&-hover {
|
86
112
|
|
113
|
+
.table-primary:hover {
|
114
|
+
&, > th, > td {
|
115
|
+
background-color: darken($primary, 5%);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
.table-secondary:hover {
|
120
|
+
&, > th, > td {
|
121
|
+
background-color: darken($secondary, 5%);
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
.table-light:hover {
|
126
|
+
&, > th, > td {
|
127
|
+
background-color: darken($light, 5%);
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
.table-dark:hover {
|
132
|
+
&, > th, > td {
|
133
|
+
background-color: darken($dark, 5%);
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
87
137
|
.table-success:hover {
|
88
138
|
&, > th, > td {
|
89
139
|
background-color: darken($success, 5%);
|
@@ -108,6 +158,12 @@ table {
|
|
108
158
|
}
|
109
159
|
}
|
110
160
|
|
161
|
+
.table-active:hover {
|
162
|
+
&, > th, > td {
|
163
|
+
background-color: $table-active-bg;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
111
167
|
}
|
112
168
|
}
|
113
169
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Cyborg 4.1.
|
1
|
+
// Cyborg 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
//
|
@@ -34,8 +34,8 @@ $success: $green !default;
|
|
34
34
|
$info: $cyan !default;
|
35
35
|
$warning: $yellow !default;
|
36
36
|
$danger: $red !default;
|
37
|
-
$light: $gray-
|
38
|
-
$dark: $gray-
|
37
|
+
$light: $gray-800 !default;
|
38
|
+
$dark: $gray-400 !default;
|
39
39
|
|
40
40
|
|
41
41
|
// Body
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Darkly 4.1.
|
1
|
+
// Darkly 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -39,18 +39,29 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
39
39
|
// Tables ======================================================================
|
40
40
|
|
41
41
|
.table {
|
42
|
-
|
43
|
-
&-
|
44
|
-
|
45
|
-
|
46
|
-
|
42
|
+
|
43
|
+
&-primary {
|
44
|
+
&, > th, > td {
|
45
|
+
background-color: $primary;
|
46
|
+
}
|
47
47
|
}
|
48
|
-
}
|
49
48
|
|
50
|
-
|
49
|
+
&-secondary {
|
50
|
+
&, > th, > td {
|
51
|
+
background-color: $secondary;
|
52
|
+
}
|
53
|
+
}
|
51
54
|
|
52
|
-
|
53
|
-
|
55
|
+
&-light {
|
56
|
+
&, > th, > td {
|
57
|
+
background-color: $light;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
&-dark {
|
62
|
+
&, > th, > td {
|
63
|
+
background-color: $dark;
|
64
|
+
}
|
54
65
|
}
|
55
66
|
|
56
67
|
&-success {
|
@@ -77,8 +88,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
77
88
|
}
|
78
89
|
}
|
79
90
|
|
91
|
+
&-active {
|
92
|
+
&, > th, > td {
|
93
|
+
background-color: $table-active-bg;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
80
97
|
&-hover {
|
81
98
|
|
99
|
+
.table-primary:hover {
|
100
|
+
&, > th, > td {
|
101
|
+
background-color: darken($primary, 5%);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
.table-secondary:hover {
|
106
|
+
&, > th, > td {
|
107
|
+
background-color: darken($secondary, 5%);
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
.table-light:hover {
|
112
|
+
&, > th, > td {
|
113
|
+
background-color: darken($light, 5%);
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.table-dark:hover {
|
118
|
+
&, > th, > td {
|
119
|
+
background-color: darken($dark, 5%);
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
82
123
|
.table-success:hover {
|
83
124
|
&, > th, > td {
|
84
125
|
background-color: darken($success, 5%);
|
@@ -103,6 +144,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
103
144
|
}
|
104
145
|
}
|
105
146
|
|
147
|
+
.table-active:hover {
|
148
|
+
&, > th, > td {
|
149
|
+
background-color: $table-active-bg;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
106
153
|
}
|
107
154
|
}
|
108
155
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Darkly 4.1.
|
1
|
+
// Darkly 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
//
|
@@ -35,7 +35,9 @@ $info: $cyan !default;
|
|
35
35
|
$warning: $yellow !default;
|
36
36
|
$danger: $red !default;
|
37
37
|
$light: $gray-800 !default;
|
38
|
-
$dark: $gray-
|
38
|
+
$dark: $gray-500 !default;
|
39
|
+
|
40
|
+
$yiq-contrasted-threshold: 175 !default;
|
39
41
|
|
40
42
|
// Body
|
41
43
|
|
@@ -52,6 +54,10 @@ $font-family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe
|
|
52
54
|
|
53
55
|
$font-size-base: 0.9375rem !default;
|
54
56
|
|
57
|
+
$h1-font-size: 3rem !default;
|
58
|
+
$h2-font-size: 2.5rem !default;
|
59
|
+
$h3-font-size: 2rem !default;
|
60
|
+
|
55
61
|
// Tables
|
56
62
|
|
57
63
|
$table-accent-bg: $gray-800 !default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Flatly 4.1.
|
1
|
+
// Flatly 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -43,10 +43,8 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
43
43
|
|
44
44
|
.table {
|
45
45
|
|
46
|
-
|
47
|
-
|
48
|
-
}
|
49
|
-
|
46
|
+
&-primary,
|
47
|
+
&-secondary,
|
50
48
|
&-success,
|
51
49
|
&-info,
|
52
50
|
&-warning,
|
@@ -54,6 +52,30 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
54
52
|
color: #fff;
|
55
53
|
}
|
56
54
|
|
55
|
+
&-primary {
|
56
|
+
&, > th, > td {
|
57
|
+
background-color: $primary;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
&-secondary {
|
62
|
+
&, > th, > td {
|
63
|
+
background-color: $secondary;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
&-light {
|
68
|
+
&, > th, > td {
|
69
|
+
background-color: $light;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
&-dark {
|
74
|
+
&, > th, > td {
|
75
|
+
background-color: $dark;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
57
79
|
&-success {
|
58
80
|
&, > th, > td {
|
59
81
|
background-color: $success;
|
@@ -78,8 +100,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
78
100
|
}
|
79
101
|
}
|
80
102
|
|
103
|
+
&-active {
|
104
|
+
&, > th, > td {
|
105
|
+
background-color: $table-active-bg;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
81
109
|
&-hover {
|
82
110
|
|
111
|
+
.table-primary:hover {
|
112
|
+
&, > th, > td {
|
113
|
+
background-color: darken($primary, 5%);
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
.table-secondary:hover {
|
118
|
+
&, > th, > td {
|
119
|
+
background-color: darken($secondary, 5%);
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
.table-light:hover {
|
124
|
+
&, > th, > td {
|
125
|
+
background-color: darken($light, 5%);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
.table-dark:hover {
|
130
|
+
&, > th, > td {
|
131
|
+
background-color: darken($dark, 5%);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
83
135
|
.table-success:hover {
|
84
136
|
&, > th, > td {
|
85
137
|
background-color: darken($success, 5%);
|
@@ -104,6 +156,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
104
156
|
}
|
105
157
|
}
|
106
158
|
|
159
|
+
.table-active:hover {
|
160
|
+
&, > th, > td {
|
161
|
+
background-color: $table-active-bg;
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
107
165
|
}
|
108
166
|
}
|
109
167
|
|
@@ -147,7 +205,6 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
147
205
|
}
|
148
206
|
}
|
149
207
|
|
150
|
-
|
151
208
|
.alert {
|
152
209
|
border: none;
|
153
210
|
color: $white;
|
@@ -178,4 +235,9 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
|
|
178
235
|
// Containers ==================================================================
|
179
236
|
.modal .close{
|
180
237
|
color: $black;
|
238
|
+
|
239
|
+
&:not(:disabled):not(.disabled):hover,
|
240
|
+
&:not(:disabled):not(.disabled):focus {
|
241
|
+
color: $black;
|
242
|
+
}
|
181
243
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Flatly 4.1.
|
1
|
+
// Flatly 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
//
|
@@ -37,6 +37,8 @@ $danger: $red !default;
|
|
37
37
|
$light: $gray-200 !default;
|
38
38
|
$dark: $gray-700 !default;
|
39
39
|
|
40
|
+
$yiq-contrasted-threshold: 175 !default;
|
41
|
+
|
40
42
|
// Links
|
41
43
|
|
42
44
|
$link-color: $success !default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Litera 4.1.
|
1
|
+
// Litera 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -81,6 +81,8 @@ table,
|
|
81
81
|
.table {
|
82
82
|
font-size: 0.875em;
|
83
83
|
|
84
|
+
&-primary,
|
85
|
+
&-secondary,
|
84
86
|
&-success,
|
85
87
|
&-info,
|
86
88
|
&-warning,
|
@@ -91,6 +93,30 @@ table,
|
|
91
93
|
|
92
94
|
.table {
|
93
95
|
|
96
|
+
&-primary {
|
97
|
+
&, > th, > td {
|
98
|
+
background-color: $primary;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
&-secondary {
|
103
|
+
&, > th, > td {
|
104
|
+
background-color: $secondary;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
&-light {
|
109
|
+
&, > th, > td {
|
110
|
+
background-color: $light;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
&-dark {
|
115
|
+
&, > th, > td {
|
116
|
+
background-color: $dark;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
94
120
|
&-success {
|
95
121
|
&, > th, > td {
|
96
122
|
background-color: $success;
|
@@ -115,8 +141,38 @@ table,
|
|
115
141
|
}
|
116
142
|
}
|
117
143
|
|
144
|
+
&-active {
|
145
|
+
&, > th, > td {
|
146
|
+
background-color: $table-active-bg;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
118
150
|
&-hover {
|
119
151
|
|
152
|
+
.table-primary:hover {
|
153
|
+
&, > th, > td {
|
154
|
+
background-color: darken($primary, 5%);
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.table-secondary:hover {
|
159
|
+
&, > th, > td {
|
160
|
+
background-color: darken($secondary, 5%);
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
.table-light:hover {
|
165
|
+
&, > th, > td {
|
166
|
+
background-color: darken($light, 5%);
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
.table-dark:hover {
|
171
|
+
&, > th, > td {
|
172
|
+
background-color: darken($dark, 5%);
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
120
176
|
.table-success:hover {
|
121
177
|
&, > th, > td {
|
122
178
|
background-color: darken($success, 5%);
|
@@ -141,6 +197,12 @@ table,
|
|
141
197
|
}
|
142
198
|
}
|
143
199
|
|
200
|
+
.table-active:hover {
|
201
|
+
&, > th, > td {
|
202
|
+
background-color: $table-active-bg;
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
144
206
|
}
|
145
207
|
}
|
146
208
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Lumen 4.1.
|
1
|
+
// Lumen 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -115,6 +115,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400
|
|
115
115
|
|
116
116
|
.table {
|
117
117
|
|
118
|
+
&-primary,
|
118
119
|
&-success,
|
119
120
|
&-info,
|
120
121
|
&-warning,
|
@@ -127,6 +128,30 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400
|
|
127
128
|
border-color: $primary;
|
128
129
|
}
|
129
130
|
|
131
|
+
&-primary {
|
132
|
+
&, > th, > td {
|
133
|
+
background-color: $primary;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
&-secondary {
|
138
|
+
&, > th, > td {
|
139
|
+
background-color: $secondary;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
&-light {
|
144
|
+
&, > th, > td {
|
145
|
+
background-color: $light;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
|
149
|
+
&-dark {
|
150
|
+
&, > th, > td {
|
151
|
+
background-color: $dark;
|
152
|
+
}
|
153
|
+
}
|
154
|
+
|
130
155
|
&-success {
|
131
156
|
&, > th, > td {
|
132
157
|
background-color: $success;
|
@@ -151,8 +176,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400
|
|
151
176
|
}
|
152
177
|
}
|
153
178
|
|
179
|
+
&-active {
|
180
|
+
&, > th, > td {
|
181
|
+
background-color: $table-active-bg;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
154
185
|
&-hover {
|
155
186
|
|
187
|
+
.table-primary:hover {
|
188
|
+
&, > th, > td {
|
189
|
+
background-color: darken($primary, 5%);
|
190
|
+
}
|
191
|
+
}
|
192
|
+
|
193
|
+
.table-secondary:hover {
|
194
|
+
&, > th, > td {
|
195
|
+
background-color: darken($secondary, 5%);
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
.table-light:hover {
|
200
|
+
&, > th, > td {
|
201
|
+
background-color: darken($light, 5%);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
.table-dark:hover {
|
206
|
+
&, > th, > td {
|
207
|
+
background-color: darken($dark, 5%);
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
156
211
|
.table-success:hover {
|
157
212
|
&, > th, > td {
|
158
213
|
background-color: darken($success, 5%);
|
@@ -177,6 +232,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400
|
|
177
232
|
}
|
178
233
|
}
|
179
234
|
|
235
|
+
.table-active:hover {
|
236
|
+
&, > th, > td {
|
237
|
+
background-color: $table-active-bg;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
|
180
241
|
}
|
181
242
|
}
|
182
243
|
|
@@ -420,5 +481,10 @@ a.list-group-item {
|
|
420
481
|
|
421
482
|
.close {
|
422
483
|
color: $black;
|
484
|
+
|
485
|
+
&:not(:disabled):not(.disabled):hover,
|
486
|
+
&:not(:disabled):not(.disabled):focus {
|
487
|
+
color: $black;
|
488
|
+
}
|
423
489
|
}
|
424
490
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Lux 4.1.
|
1
|
+
// Lux 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -118,6 +118,12 @@ th {
|
|
118
118
|
th, td {
|
119
119
|
padding: 1.5rem;
|
120
120
|
}
|
121
|
+
|
122
|
+
&-sm {
|
123
|
+
th, td {
|
124
|
+
padding: 0.75rem;
|
125
|
+
}
|
126
|
+
}
|
121
127
|
}
|
122
128
|
|
123
129
|
// Forms =======================================================================
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Materia 4.1.
|
1
|
+
// Materia 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -306,6 +306,7 @@ input[type=number],
|
|
306
306
|
select,
|
307
307
|
select.form-control {
|
308
308
|
appearance: none;
|
309
|
+
padding: 0.5rem 0;
|
309
310
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=);
|
310
311
|
background-size: 13px;
|
311
312
|
background-repeat: no-repeat;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Minty 4.1.
|
1
|
+
// Minty 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -79,6 +79,8 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Montserrat" !default;
|
|
79
79
|
|
80
80
|
.table {
|
81
81
|
|
82
|
+
&-primary,
|
83
|
+
&-secondary,
|
82
84
|
&-success,
|
83
85
|
&-info,
|
84
86
|
&-warning,
|
@@ -86,6 +88,30 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Montserrat" !default;
|
|
86
88
|
color: #fff;
|
87
89
|
}
|
88
90
|
|
91
|
+
&-primary {
|
92
|
+
&, > th, > td {
|
93
|
+
background-color: $primary;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
&-secondary {
|
98
|
+
&, > th, > td {
|
99
|
+
background-color: $secondary;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
&-light {
|
104
|
+
&, > th, > td {
|
105
|
+
background-color: $light;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
&-dark {
|
110
|
+
&, > th, > td {
|
111
|
+
background-color: $dark;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
89
115
|
&-success {
|
90
116
|
&, > th, > td {
|
91
117
|
background-color: $success;
|
@@ -110,8 +136,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Montserrat" !default;
|
|
110
136
|
}
|
111
137
|
}
|
112
138
|
|
139
|
+
&-active {
|
140
|
+
&, > th, > td {
|
141
|
+
background-color: $table-active-bg;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
113
145
|
&-hover {
|
114
146
|
|
147
|
+
.table-primary:hover {
|
148
|
+
&, > th, > td {
|
149
|
+
background-color: darken($primary, 5%);
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
.table-secondary:hover {
|
154
|
+
&, > th, > td {
|
155
|
+
background-color: darken($secondary, 5%);
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
.table-light:hover {
|
160
|
+
&, > th, > td {
|
161
|
+
background-color: darken($light, 5%);
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
.table-dark:hover {
|
166
|
+
&, > th, > td {
|
167
|
+
background-color: darken($dark, 5%);
|
168
|
+
}
|
169
|
+
}
|
170
|
+
|
115
171
|
.table-success:hover {
|
116
172
|
&, > th, > td {
|
117
173
|
background-color: darken($success, 5%);
|
@@ -135,6 +191,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Montserrat" !default;
|
|
135
191
|
background-color: darken($warning, 5%);
|
136
192
|
}
|
137
193
|
}
|
194
|
+
|
195
|
+
.table-active:hover {
|
196
|
+
&, > th, > td {
|
197
|
+
background-color: $table-active-bg;
|
198
|
+
}
|
199
|
+
}
|
138
200
|
}
|
139
201
|
|
140
202
|
.thead-dark th {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Slate 4.1.
|
1
|
+
// Slate 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -215,18 +215,38 @@ h1, h2, h3, h4, h5, h6 {
|
|
215
215
|
// Tables ======================================================================
|
216
216
|
|
217
217
|
.table {
|
218
|
+
|
219
|
+
&-primary,
|
220
|
+
&-secondary,
|
218
221
|
&-success,
|
219
222
|
&-info,
|
220
223
|
&-warning,
|
221
224
|
&-danger {
|
222
225
|
color: #fff;
|
223
226
|
}
|
224
|
-
}
|
225
227
|
|
226
|
-
|
228
|
+
&-primary {
|
229
|
+
&, > th, > td {
|
230
|
+
background-color: $primary;
|
231
|
+
}
|
232
|
+
}
|
227
233
|
|
228
|
-
|
229
|
-
|
234
|
+
&-secondary {
|
235
|
+
&, > th, > td {
|
236
|
+
background-color: $secondary;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
&-light {
|
241
|
+
&, > th, > td {
|
242
|
+
background-color: $light;
|
243
|
+
}
|
244
|
+
}
|
245
|
+
|
246
|
+
&-dark {
|
247
|
+
&, > th, > td {
|
248
|
+
background-color: $dark;
|
249
|
+
}
|
230
250
|
}
|
231
251
|
|
232
252
|
&-success {
|
@@ -253,8 +273,38 @@ h1, h2, h3, h4, h5, h6 {
|
|
253
273
|
}
|
254
274
|
}
|
255
275
|
|
276
|
+
&-active {
|
277
|
+
&, > th, > td {
|
278
|
+
background-color: $table-active-bg;
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
256
282
|
&-hover {
|
257
283
|
|
284
|
+
.table-primary:hover {
|
285
|
+
&, > th, > td {
|
286
|
+
background-color: darken($primary, 5%);
|
287
|
+
}
|
288
|
+
}
|
289
|
+
|
290
|
+
.table-secondary:hover {
|
291
|
+
&, > th, > td {
|
292
|
+
background-color: darken($secondary, 5%);
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
.table-light:hover {
|
297
|
+
&, > th, > td {
|
298
|
+
background-color: darken($light, 5%);
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
.table-dark:hover {
|
303
|
+
&, > th, > td {
|
304
|
+
background-color: darken($dark, 5%);
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
258
308
|
.table-success:hover {
|
259
309
|
&, > th, > td {
|
260
310
|
background-color: darken($success, 5%);
|
@@ -279,6 +329,12 @@ h1, h2, h3, h4, h5, h6 {
|
|
279
329
|
}
|
280
330
|
}
|
281
331
|
|
332
|
+
.table-active:hover {
|
333
|
+
&, > th, > td {
|
334
|
+
background-color: $table-active-bg;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
|
282
338
|
}
|
283
339
|
}
|
284
340
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Solar 4.1.
|
1
|
+
// Solar 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -16,15 +16,40 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro" !defau
|
|
16
16
|
// Tables ======================================================================
|
17
17
|
|
18
18
|
.table {
|
19
|
+
|
20
|
+
&-primary,
|
21
|
+
&-secondary,
|
22
|
+
&-dark,
|
19
23
|
&-success,
|
20
24
|
&-info,
|
21
25
|
&-warning,
|
22
26
|
&-danger {
|
23
27
|
color: #fff;
|
24
28
|
}
|
25
|
-
}
|
26
29
|
|
27
|
-
|
30
|
+
&-primary {
|
31
|
+
&, > th, > td {
|
32
|
+
background-color: $primary;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
&-secondary {
|
37
|
+
&, > th, > td {
|
38
|
+
background-color: $secondary;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
&-light {
|
43
|
+
&, > th, > td {
|
44
|
+
background-color: $light;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
&-dark {
|
49
|
+
&, > th, > td {
|
50
|
+
background-color: $dark;
|
51
|
+
}
|
52
|
+
}
|
28
53
|
|
29
54
|
&-success {
|
30
55
|
&, > th, > td {
|
@@ -50,8 +75,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro" !defau
|
|
50
75
|
}
|
51
76
|
}
|
52
77
|
|
78
|
+
&-active {
|
79
|
+
&, > th, > td {
|
80
|
+
background-color: $table-active-bg;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
53
84
|
&-hover {
|
54
85
|
|
86
|
+
.table-primary:hover {
|
87
|
+
&, > th, > td {
|
88
|
+
background-color: darken($primary, 5%);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.table-secondary:hover {
|
93
|
+
&, > th, > td {
|
94
|
+
background-color: darken($secondary, 5%);
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.table-light:hover {
|
99
|
+
&, > th, > td {
|
100
|
+
background-color: darken($light, 5%);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.table-dark:hover {
|
105
|
+
&, > th, > td {
|
106
|
+
background-color: darken($dark, 5%);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
55
110
|
.table-success:hover {
|
56
111
|
&, > th, > td {
|
57
112
|
background-color: darken($success, 5%);
|
@@ -76,6 +131,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Source+Sans+Pro" !defau
|
|
76
131
|
}
|
77
132
|
}
|
78
133
|
|
134
|
+
.table-active:hover {
|
135
|
+
&, > th, > td {
|
136
|
+
background-color: $table-active-bg;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
79
140
|
}
|
80
141
|
}
|
81
142
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Superhero 4.1.
|
1
|
+
// Superhero 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -60,6 +60,34 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa
|
|
60
60
|
color: $text-muted;
|
61
61
|
}
|
62
62
|
|
63
|
+
&-dark {
|
64
|
+
color: #fff;
|
65
|
+
}
|
66
|
+
|
67
|
+
&-primary {
|
68
|
+
&, > th, > td {
|
69
|
+
background-color: $primary;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
&-secondary {
|
74
|
+
&, > th, > td {
|
75
|
+
background-color: $secondary;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
&-light {
|
80
|
+
&, > th, > td {
|
81
|
+
background-color: $light;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
&-dark {
|
86
|
+
&, > th, > td {
|
87
|
+
background-color: $dark;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
63
91
|
&-success {
|
64
92
|
&, > th, > td {
|
65
93
|
background-color: $success;
|
@@ -84,8 +112,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa
|
|
84
112
|
}
|
85
113
|
}
|
86
114
|
|
115
|
+
&-active {
|
116
|
+
&, > th, > td {
|
117
|
+
background-color: $table-active-bg;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
87
121
|
&-hover {
|
88
122
|
|
123
|
+
.table-primary:hover {
|
124
|
+
&, > th, > td {
|
125
|
+
background-color: darken($primary, 5%);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
.table-secondary:hover {
|
130
|
+
&, > th, > td {
|
131
|
+
background-color: darken($secondary, 5%);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
.table-light:hover {
|
136
|
+
&, > th, > td {
|
137
|
+
background-color: darken($light, 5%);
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
.table-dark:hover {
|
142
|
+
&, > th, > td {
|
143
|
+
background-color: darken($dark, 5%);
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
89
147
|
.table-success:hover {
|
90
148
|
&, > th, > td {
|
91
149
|
background-color: darken($success, 5%);
|
@@ -110,6 +168,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:300,400,700" !defa
|
|
110
168
|
}
|
111
169
|
}
|
112
170
|
|
171
|
+
.table-active:hover {
|
172
|
+
&, > th, > td {
|
173
|
+
background-color: $table-active-bg;
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
113
177
|
}
|
114
178
|
}
|
115
179
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Superhero 4.1.
|
1
|
+
// Superhero 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
//
|
@@ -58,6 +58,8 @@ $text-muted: rgba(255,255,255,.4) !default;
|
|
58
58
|
$table-accent-bg: rgba($white,.05) !default;
|
59
59
|
$table-hover-bg: rgba($white,.075) !default;
|
60
60
|
|
61
|
+
$table-border-color: rgba($black,.15) !default;
|
62
|
+
|
61
63
|
$table-dark-bg: $light !default;
|
62
64
|
$table-dark-border-color: $gray-200 !default;
|
63
65
|
$table-dark-color: $body-bg !default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Yeti 4.1.
|
1
|
+
// Yeti 4.1.3
|
2
2
|
// Bootswatch
|
3
3
|
|
4
4
|
|
@@ -218,6 +218,7 @@ table {
|
|
218
218
|
|
219
219
|
.table {
|
220
220
|
|
221
|
+
&-primary,
|
221
222
|
&-success,
|
222
223
|
&-info,
|
223
224
|
&-warning,
|
@@ -225,6 +226,30 @@ table {
|
|
225
226
|
color: #fff;
|
226
227
|
}
|
227
228
|
|
229
|
+
&-primary {
|
230
|
+
&, > th, > td {
|
231
|
+
background-color: $primary;
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
&-secondary {
|
236
|
+
&, > th, > td {
|
237
|
+
background-color: $secondary;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
|
241
|
+
&-light {
|
242
|
+
&, > th, > td {
|
243
|
+
background-color: $light;
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
&-dark {
|
248
|
+
&, > th, > td {
|
249
|
+
background-color: $dark;
|
250
|
+
}
|
251
|
+
}
|
252
|
+
|
228
253
|
&-success {
|
229
254
|
&, > th, > td {
|
230
255
|
background-color: $success;
|
@@ -249,8 +274,38 @@ table {
|
|
249
274
|
}
|
250
275
|
}
|
251
276
|
|
277
|
+
&-active {
|
278
|
+
&, > th, > td {
|
279
|
+
background-color: $table-active-bg;
|
280
|
+
}
|
281
|
+
}
|
282
|
+
|
252
283
|
&-hover {
|
253
284
|
|
285
|
+
.table-primary:hover {
|
286
|
+
&, > th, > td {
|
287
|
+
background-color: darken($primary, 5%);
|
288
|
+
}
|
289
|
+
}
|
290
|
+
|
291
|
+
.table-secondary:hover {
|
292
|
+
&, > th, > td {
|
293
|
+
background-color: darken($secondary, 5%);
|
294
|
+
}
|
295
|
+
}
|
296
|
+
|
297
|
+
.table-light:hover {
|
298
|
+
&, > th, > td {
|
299
|
+
background-color: darken($light, 5%);
|
300
|
+
}
|
301
|
+
}
|
302
|
+
|
303
|
+
.table-dark:hover {
|
304
|
+
&, > th, > td {
|
305
|
+
background-color: darken($dark, 5%);
|
306
|
+
}
|
307
|
+
}
|
308
|
+
|
254
309
|
.table-success:hover {
|
255
310
|
&, > th, > td {
|
256
311
|
background-color: darken($success, 5%);
|
@@ -275,6 +330,12 @@ table {
|
|
275
330
|
}
|
276
331
|
}
|
277
332
|
|
333
|
+
.table-active:hover {
|
334
|
+
&, > th, > td {
|
335
|
+
background-color: $table-active-bg;
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
278
339
|
}
|
279
340
|
}
|
280
341
|
|
data/lib/bootswatch/version.rb
CHANGED