active_frontend 15.0.23 → 15.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/stylesheets/_variable.scss +5 -0
- data/vendor/assets/stylesheets/blocks/_button.scss +62 -50
- data/vendor/assets/stylesheets/blocks/_common.scss +8 -4
- data/vendor/assets/stylesheets/blocks/_form.scss +11 -5
- data/vendor/assets/stylesheets/blocks/_list.scss +9 -7
- data/vendor/assets/stylesheets/blocks/_multimedia.scss +7 -5
- data/vendor/assets/stylesheets/blocks/_table.scss +30 -28
- data/vendor/assets/stylesheets/blocks/_typography.scss +10 -8
- data/vendor/assets/stylesheets/components/_breadcrumb.scss +14 -10
- data/vendor/assets/stylesheets/components/_calendar.scss +4 -2
- data/vendor/assets/stylesheets/components/_carousel.scss +7 -5
- data/vendor/assets/stylesheets/components/_datepicker.scss +54 -48
- data/vendor/assets/stylesheets/components/_nav_and_tab.scss +21 -13
- data/vendor/assets/stylesheets/components/_navbar.scss +11 -9
- data/vendor/assets/stylesheets/components/_pagination.scss +27 -12
- data/vendor/assets/stylesheets/components/_timepicker.scss +5 -3
- data/vendor/assets/stylesheets/components/_wysiwyg.scss +24 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f047e9b1d4c79fa5903b3ce18b26c11a2dcc84108c15a33dc8f1efe3c6fb56e5
|
4
|
+
data.tar.gz: 7e1f65f61538461bfabba0f02586a4f470fb54d9b010ca222a7fb6401046d288
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f797c72363cf6dc3bd1ffacdf349b2b2f247c83f173344e27c2ec127e18a84640b1ec082c5ec70104e0ef17b4c3340f885ab95e68f632dbab22c23e64032e559
|
7
|
+
data.tar.gz: 1c4553288c8775c243808c67639009fb81f34824857df78085193ed964844621ef28ace6d66f91c2e4f70095123fe2ab1280bde533436ace01d9bf8b89803703
|
@@ -1,5 +1,6 @@
|
|
1
1
|
// Table of Contents
|
2
2
|
// ==================================================
|
3
|
+
// Options
|
3
4
|
// Animation
|
4
5
|
// Color
|
5
6
|
// Common
|
@@ -7,6 +8,10 @@
|
|
7
8
|
// Grid
|
8
9
|
// Progress
|
9
10
|
|
11
|
+
// Options
|
12
|
+
// ==================================================
|
13
|
+
$pseudo-elements: true;
|
14
|
+
|
10
15
|
// Animation
|
11
16
|
// ==================================================
|
12
17
|
$animation-delays: (
|
@@ -31,21 +31,23 @@
|
|
31
31
|
vertical-align: middle;
|
32
32
|
white-space: nowrap;
|
33
33
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
34
|
+
@if ($pseudo-elements) {
|
35
|
+
&:hover,
|
36
|
+
&.active,
|
37
|
+
&:focus {
|
38
|
+
background: darkish-color(haze);
|
39
|
+
box-shadow: inset 0 -2px dark-color(haze);
|
40
|
+
}
|
41
|
+
&:active,
|
42
|
+
&.disabled,
|
43
|
+
&[disabled] {
|
44
|
+
background: lightish-color(haze);
|
45
|
+
box-shadow: none;
|
46
|
+
color: transparentize(color(black), 0.35);
|
47
|
+
}
|
48
|
+
&.disabled,
|
49
|
+
&[disabled] { cursor: not-allowed; }
|
46
50
|
}
|
47
|
-
&.disabled,
|
48
|
-
&[disabled] { cursor: not-allowed; }
|
49
51
|
|
50
52
|
.badge,
|
51
53
|
.label {
|
@@ -73,41 +75,47 @@
|
|
73
75
|
&.btn-link,
|
74
76
|
&.btn-outline { color: color($name); }
|
75
77
|
&.btn-link {
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
78
|
+
@if ($pseudo-elements) {
|
79
|
+
&:hover,
|
80
|
+
&.active,
|
81
|
+
&:focus { color: darkish-color($name); }
|
82
|
+
&:active,
|
83
|
+
&.disabled,
|
84
|
+
&[disabled] { color: lightish-color($name); }
|
85
|
+
}
|
82
86
|
}
|
83
87
|
&.btn-outline {
|
84
88
|
border-color: color($name);
|
85
89
|
|
90
|
+
@if ($pseudo-elements) {
|
91
|
+
&:hover,
|
92
|
+
&:active,
|
93
|
+
&.active,
|
94
|
+
&:focus,
|
95
|
+
&.disabled,
|
96
|
+
&[disabled] {
|
97
|
+
border-color: darker-color($name);
|
98
|
+
color: text-color-on($name);
|
99
|
+
}
|
100
|
+
&.disabled,
|
101
|
+
&[disabled] { color: color($name); }
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
@if ($pseudo-elements) {
|
86
106
|
&:hover,
|
87
|
-
&:active,
|
88
107
|
&.active,
|
89
|
-
&:focus
|
108
|
+
&:focus {
|
109
|
+
background: darkish-color($name);
|
110
|
+
box-shadow: inset 0 -2px dark-color($name);
|
111
|
+
}
|
112
|
+
&:active,
|
90
113
|
&.disabled,
|
91
114
|
&[disabled] {
|
92
|
-
|
93
|
-
|
115
|
+
background: lightish-color($name);
|
116
|
+
box-shadow: none;
|
117
|
+
color: transparentize(text-color-on($name), 0.35);
|
94
118
|
}
|
95
|
-
&.disabled,
|
96
|
-
&[disabled] { color: color($name); }
|
97
|
-
}
|
98
|
-
|
99
|
-
&:hover,
|
100
|
-
&.active,
|
101
|
-
&:focus {
|
102
|
-
background: darkish-color($name);
|
103
|
-
box-shadow: inset 0 -2px dark-color($name);
|
104
|
-
}
|
105
|
-
&:active,
|
106
|
-
&.disabled,
|
107
|
-
&[disabled] {
|
108
|
-
background: lightish-color($name);
|
109
|
-
box-shadow: none;
|
110
|
-
color: transparentize(text-color-on($name), 0.35);
|
111
119
|
}
|
112
120
|
}
|
113
121
|
}
|
@@ -118,22 +126,26 @@
|
|
118
126
|
.btn-outline {
|
119
127
|
background: color(transparent);
|
120
128
|
|
121
|
-
|
122
|
-
|
129
|
+
@if ($pseudo-elements) {
|
130
|
+
.disabled,
|
131
|
+
&[disabled] { background: inherit; }
|
132
|
+
}
|
123
133
|
}
|
124
134
|
.btn-link {
|
125
135
|
border-color: color(transparent);
|
126
136
|
border-radius: 0;
|
127
137
|
padding: 0;
|
128
138
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
139
|
+
@if ($pseudo-elements) {
|
140
|
+
&:hover,
|
141
|
+
&:active,
|
142
|
+
&.active,
|
143
|
+
&:focus,
|
144
|
+
&.disabled,
|
145
|
+
&[disabled] {
|
146
|
+
background: inherit;
|
147
|
+
box-shadow: none;
|
148
|
+
}
|
137
149
|
}
|
138
150
|
}
|
139
151
|
.btn-block {
|
@@ -32,14 +32,18 @@
|
|
32
32
|
border-radius: 999px;
|
33
33
|
width: 6px;
|
34
34
|
}
|
35
|
-
|
35
|
+
@if ($pseudo-elements) {
|
36
|
+
&::-webkit-scrollbar:hover { background: rgba(color(transparent), 0.15); }
|
37
|
+
}
|
36
38
|
&::-webkit-scrollbar-thumb {
|
37
39
|
background: rgba(color(transparent), 0.5);
|
38
40
|
border-radius: 999px;
|
39
41
|
}
|
40
|
-
|
41
|
-
|
42
|
-
|
42
|
+
@if ($pseudo-elements) {
|
43
|
+
&::-webkit-scrollbar-thumb:active {
|
44
|
+
background: rgba(color(transparent), 0.6);
|
45
|
+
border-radius: 999px;
|
46
|
+
}
|
43
47
|
}
|
44
48
|
}
|
45
49
|
|
@@ -372,9 +372,11 @@ textarea {
|
|
372
372
|
text-align: center;
|
373
373
|
width: 100%;
|
374
374
|
|
375
|
-
|
376
|
-
|
377
|
-
|
375
|
+
@if ($pseudo-elements) {
|
376
|
+
&:hover {
|
377
|
+
background: color(haze);
|
378
|
+
box-shadow: none !important;
|
379
|
+
}
|
378
380
|
}
|
379
381
|
}
|
380
382
|
input[type='checkbox'],
|
@@ -426,7 +428,9 @@ textarea {
|
|
426
428
|
background: color(light-black);
|
427
429
|
box-shadow: inset 0 2px 0 0 dark-color(light-black);
|
428
430
|
|
429
|
-
|
431
|
+
@if ($pseudo-elements) {
|
432
|
+
&:hover { background: color(dark-black); }
|
433
|
+
}
|
430
434
|
}
|
431
435
|
|
432
436
|
input[type='checkbox'],
|
@@ -439,7 +443,9 @@ textarea {
|
|
439
443
|
background: color(light-haze);
|
440
444
|
box-shadow: inset 0 2px 0 0 darker-color(light-haze);
|
441
445
|
|
442
|
-
|
446
|
+
@if ($pseudo-elements) {
|
447
|
+
&:hover { background: color(dark-haze); }
|
448
|
+
}
|
443
449
|
}
|
444
450
|
|
445
451
|
input[type='checkbox'],
|
@@ -30,14 +30,16 @@ ul {
|
|
30
30
|
> li:nth-child(even) { background: color(haze); }
|
31
31
|
}
|
32
32
|
}
|
33
|
-
|
34
|
-
|
33
|
+
@if ($pseudo-elements) {
|
34
|
+
.list-hover {
|
35
|
+
> li:hover { background: color(haze); }
|
35
36
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
37
|
+
&.dark {
|
38
|
+
> li:hover { background: background-hover-color(black); }
|
39
|
+
}
|
40
|
+
&.light {
|
41
|
+
> li:hover { background: background-hover-color(haze); }
|
42
|
+
}
|
41
43
|
}
|
42
44
|
}
|
43
45
|
.list-inline {
|
@@ -51,11 +51,13 @@ svg:not(:root) {
|
|
51
51
|
|
52
52
|
&.dark { border-color: color(dark-black); }
|
53
53
|
}
|
54
|
-
@
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
54
|
+
@if ($pseudo-elements) {
|
55
|
+
@each $name, $color in $colors {
|
56
|
+
.img-avatar-hover-#{$name} {
|
57
|
+
&:hover,
|
58
|
+
&:active,
|
59
|
+
&:focus { border-color: $color; }
|
60
|
+
}
|
59
61
|
}
|
60
62
|
}
|
61
63
|
|
@@ -64,46 +64,48 @@ thead {
|
|
64
64
|
}
|
65
65
|
}
|
66
66
|
}
|
67
|
-
|
68
|
-
|
69
|
-
tr:hover {
|
70
|
-
td { background: color(haze); }
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
&.dark {
|
67
|
+
@if ($pseudo-elements) {
|
68
|
+
.table-hover {
|
75
69
|
tbody {
|
76
70
|
tr:hover {
|
77
|
-
td { background:
|
71
|
+
td { background: color(haze); }
|
78
72
|
}
|
79
73
|
}
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
74
|
+
|
75
|
+
&.dark {
|
76
|
+
tbody {
|
77
|
+
tr:hover {
|
78
|
+
td { background: background-hover-color(black); }
|
79
|
+
}
|
85
80
|
}
|
86
81
|
}
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
82
|
+
&.light {
|
83
|
+
tbody {
|
84
|
+
tr:hover {
|
85
|
+
td { background: background-hover-color(haze); }
|
86
|
+
}
|
87
|
+
}
|
93
88
|
}
|
94
89
|
}
|
95
|
-
|
96
|
-
&.dark {
|
90
|
+
.table-highlight {
|
97
91
|
tbody {
|
98
92
|
tr {
|
99
|
-
td:hover { background:
|
93
|
+
td:hover { background: color(haze); }
|
100
94
|
}
|
101
95
|
}
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
96
|
+
|
97
|
+
&.dark {
|
98
|
+
tbody {
|
99
|
+
tr {
|
100
|
+
td:hover { background: background-hover-color(black); }
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
&.light {
|
105
|
+
tbody {
|
106
|
+
tr {
|
107
|
+
td:hover { background: background-hover-color(haze); }
|
108
|
+
}
|
107
109
|
}
|
108
110
|
}
|
109
111
|
}
|
@@ -160,14 +160,16 @@ sup { vertical-align: text-top; }
|
|
160
160
|
// ==================================================
|
161
161
|
@each $name, $color in $colors {
|
162
162
|
.text-color-#{$name} { color: $color; }
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
163
|
+
@if ($pseudo-elements) {
|
164
|
+
.text-color-hover-#{$name} {
|
165
|
+
&:hover { color: $color; }
|
166
|
+
}
|
167
|
+
.text-color-focus-#{$name} {
|
168
|
+
&:focus { color: $color; }
|
169
|
+
}
|
170
|
+
.text-color-active-#{$name} {
|
171
|
+
&:active { color: $color; }
|
172
|
+
}
|
171
173
|
}
|
172
174
|
}
|
173
175
|
|
@@ -15,19 +15,23 @@
|
|
15
15
|
|
16
16
|
&.divider { margin: 0 5px; }
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
18
|
+
@if ($pseudo-elements) {
|
19
|
+
> a {
|
20
|
+
&:hover,
|
21
|
+
&:active,
|
22
|
+
&:focus { color: color(primary); }
|
23
|
+
}
|
22
24
|
}
|
23
25
|
}
|
24
26
|
|
25
|
-
@
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
@if ($pseudo-elements) {
|
28
|
+
@each $name, $color in $colors-global {
|
29
|
+
&.#{$name} {
|
30
|
+
> li {
|
31
|
+
&:hover,
|
32
|
+
&:active,
|
33
|
+
&:focus { color: color($name); }
|
34
|
+
}
|
31
35
|
}
|
32
36
|
}
|
33
37
|
}
|
@@ -20,12 +20,14 @@
|
|
20
20
|
padding: 8px 6px;
|
21
21
|
text-align: center;
|
22
22
|
}
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
23
|
+
@if ($pseudo-elements) {
|
24
|
+
th:not(.dow) {
|
25
|
+
&:hover,
|
26
|
+
&:focus {
|
27
|
+
background: color(gray);
|
28
|
+
color: color(white);
|
29
|
+
cursor: pointer;
|
30
|
+
}
|
29
31
|
}
|
30
32
|
}
|
31
33
|
td {
|
@@ -35,32 +37,34 @@
|
|
35
37
|
background: color(light-black);
|
36
38
|
color: color(primary);
|
37
39
|
}
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
40
|
+
@if ($pseudo-elements) {
|
41
|
+
&.day,
|
42
|
+
&.today {
|
43
|
+
&:hover,
|
44
|
+
&:focus {
|
45
|
+
background: color(gray);
|
46
|
+
color: color(white);
|
47
|
+
cursor: pointer;
|
48
|
+
}
|
49
|
+
&:active,
|
50
|
+
&.active {
|
51
|
+
background: color(primary);
|
52
|
+
color: color(white);
|
53
|
+
}
|
50
54
|
}
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
color: color(light-gray);
|
55
|
+
&.old,
|
56
|
+
&.new {
|
57
|
+
color: color(light-gray);
|
55
58
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
59
|
+
&:hover,
|
60
|
+
&:focus { color: color(white); }
|
61
|
+
}
|
62
|
+
&.disabled {
|
63
|
+
background: color(transparent) !important;
|
64
|
+
color: color(dark-gray) !important;
|
65
|
+
cursor: not-allowed !important;
|
66
|
+
text-decoration: line-through;
|
67
|
+
}
|
64
68
|
}
|
65
69
|
|
66
70
|
span {
|
@@ -71,24 +75,26 @@
|
|
71
75
|
padding: 13px 0;
|
72
76
|
width: 23%;
|
73
77
|
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
78
|
+
@if ($pseudo-elements) {
|
79
|
+
&:hover,
|
80
|
+
&.focus,
|
81
|
+
&.focused {
|
82
|
+
background: color(gray);
|
83
|
+
color: color(white);
|
84
|
+
cursor: pointer;
|
85
|
+
}
|
86
|
+
&:active,
|
87
|
+
&.active,
|
88
|
+
&.focused {
|
89
|
+
background: color(primary);
|
90
|
+
color: color(white);
|
91
|
+
}
|
92
|
+
&.disabled {
|
93
|
+
background: color(transparent) !important;
|
94
|
+
color: color(dark-gray) !important;
|
95
|
+
cursor: not-allowed !important;
|
96
|
+
text-decoration: line-through;
|
97
|
+
}
|
92
98
|
}
|
93
99
|
}
|
94
100
|
}
|
@@ -127,12 +127,14 @@
|
|
127
127
|
border-radius: border-radius(b);
|
128
128
|
padding: 8px 10px;
|
129
129
|
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
130
|
+
@if ($pseudo-elements) {
|
131
|
+
&:hover,
|
132
|
+
&:focus { background: color(haze); }
|
133
|
+
&:active {
|
134
|
+
background: color(primary);
|
135
|
+
border-color: darker-color(primary);
|
136
|
+
color: color(white);
|
137
|
+
}
|
136
138
|
}
|
137
139
|
}
|
138
140
|
|
@@ -153,8 +155,10 @@
|
|
153
155
|
background: color(black);
|
154
156
|
border-color: dark-color(black);
|
155
157
|
|
156
|
-
|
157
|
-
|
158
|
+
@if ($pseudo-elements) {
|
159
|
+
&:hover,
|
160
|
+
&:focus { background: color(light-black); }
|
161
|
+
}
|
158
162
|
}
|
159
163
|
}
|
160
164
|
}
|
@@ -163,8 +167,10 @@
|
|
163
167
|
> a {
|
164
168
|
background: color(white);
|
165
169
|
|
166
|
-
|
167
|
-
|
170
|
+
@if ($pseudo-elements) {
|
171
|
+
&:hover,
|
172
|
+
&:focus { background: color(light-haze); }
|
173
|
+
}
|
168
174
|
}
|
169
175
|
}
|
170
176
|
}
|
@@ -208,9 +214,11 @@
|
|
208
214
|
border-bottom: 2px solid color(transparent);
|
209
215
|
padding-bottom: 15px;
|
210
216
|
|
211
|
-
|
212
|
-
|
213
|
-
|
217
|
+
@if ($pseudo-elements) {
|
218
|
+
&:hover,
|
219
|
+
&:active,
|
220
|
+
&:focus { border-color: inherit; }
|
221
|
+
}
|
214
222
|
}
|
215
223
|
|
216
224
|
&.pull-right {
|
@@ -27,18 +27,20 @@
|
|
27
27
|
vertical-align: middle;
|
28
28
|
width: 1%;
|
29
29
|
|
30
|
-
|
31
|
-
&.active,
|
32
|
-
&:active,
|
33
|
-
&:focus { color: color(primary); }
|
34
|
-
|
35
|
-
&.primary {
|
30
|
+
@if ($pseudo-elements) {
|
36
31
|
&:hover,
|
37
32
|
&.active,
|
38
33
|
&:active,
|
39
|
-
&:focus {
|
40
|
-
|
41
|
-
|
34
|
+
&:focus { color: color(primary); }
|
35
|
+
|
36
|
+
&.primary {
|
37
|
+
&:hover,
|
38
|
+
&.active,
|
39
|
+
&:active,
|
40
|
+
&:focus {
|
41
|
+
background: darkish-color(primary);
|
42
|
+
color: color(white);
|
43
|
+
}
|
42
44
|
}
|
43
45
|
}
|
44
46
|
|
@@ -27,10 +27,15 @@
|
|
27
27
|
text-align: center;
|
28
28
|
}
|
29
29
|
|
30
|
-
a {
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
a {
|
31
|
+
background: color(haze);
|
32
|
+
|
33
|
+
@if ($pseudo-elements) {
|
34
|
+
&:hover,
|
35
|
+
&:focus { background: darkish-color(haze); }
|
36
|
+
&:active { background: lightish-color(haze); }
|
37
|
+
}
|
38
|
+
}
|
34
39
|
|
35
40
|
&.active {
|
36
41
|
background: color(primary);
|
@@ -62,18 +67,28 @@
|
|
62
67
|
&.white { background: color(transparent); }
|
63
68
|
&.dark {
|
64
69
|
li {
|
65
|
-
a {
|
66
|
-
|
67
|
-
|
68
|
-
|
70
|
+
a {
|
71
|
+
background: color(light-black);
|
72
|
+
|
73
|
+
@if ($pseudo-elements) {
|
74
|
+
&:hover,
|
75
|
+
&:focus { background: darkish-color(light-black); }
|
76
|
+
&:active { background: lightish-color(light-black); }
|
77
|
+
}
|
78
|
+
}
|
69
79
|
}
|
70
80
|
}
|
71
81
|
&.light {
|
72
82
|
li {
|
73
|
-
a {
|
74
|
-
|
75
|
-
|
76
|
-
|
83
|
+
a {
|
84
|
+
background: color(dark-haze);
|
85
|
+
|
86
|
+
@if ($pseudo-elements) {
|
87
|
+
&:hover,
|
88
|
+
&:focus { background: darkish-color(dark-haze); }
|
89
|
+
&:active { background: lightish-color(dark-haze); }
|
90
|
+
}
|
91
|
+
}
|
77
92
|
}
|
78
93
|
}
|
79
94
|
}
|
@@ -351,10 +351,12 @@
|
|
351
351
|
a {
|
352
352
|
i { display: none; }
|
353
353
|
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
354
|
+
@if ($pseudo-elements) {
|
355
|
+
&.checked,
|
356
|
+
&:hover,
|
357
|
+
&:active,
|
358
|
+
&:focus { color: color(primary); }
|
359
|
+
}
|
358
360
|
}
|
359
361
|
}
|
360
362
|
}
|
@@ -371,7 +373,9 @@
|
|
371
373
|
padding: 0;
|
372
374
|
width: 20px;
|
373
375
|
|
374
|
-
|
376
|
+
@if ($pseudo-elements) {
|
377
|
+
&:hover { border: 1px solid color(black); }
|
378
|
+
}
|
375
379
|
}
|
376
380
|
}
|
377
381
|
}
|
@@ -482,19 +486,21 @@
|
|
482
486
|
display: block !important;
|
483
487
|
padding: 3px;
|
484
488
|
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
489
|
+
@if ($pseudo-elements) {
|
490
|
+
&:hover,
|
491
|
+
&.active,
|
492
|
+
&:active,
|
493
|
+
&:focus {
|
494
|
+
background: #428bca;
|
495
|
+
clear: both;
|
496
|
+
color: color(white);
|
497
|
+
cursor: pointer;
|
498
|
+
display: block;
|
499
|
+
font-weight: text-weight(normal);
|
500
|
+
outline: 0;
|
501
|
+
text-decoration: none;
|
502
|
+
white-space: nowrap;
|
503
|
+
}
|
498
504
|
}
|
499
505
|
}
|
500
506
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_frontend
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.0
|
4
|
+
version: 15.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|