active_frontend 12.4.10 → 12.4.11
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 961ed313be8121533cb415edd7bfb0398f91b919
|
4
|
+
data.tar.gz: e47550c96865e23c4a84c63dbc673133a16aad08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 080d47e29a72755282e11f2531787c59219a5799f16f44967a76be410429eea6060b722807de4ff4a960fa7d2a4d0c4297f437659649f874d7cd0dfb2af91f72
|
7
|
+
data.tar.gz: 1533e2b9c4738142dd5114dcf7f0b45a4726b8ae61c8410d132eaa60a3cf038454baf65045b17ba0b7ef1bee883097e2e616db1c0789bd6ab84c9c6e77f81b35
|
@@ -44,6 +44,7 @@
|
|
44
44
|
border-bottom: 4px solid $color-transparent;
|
45
45
|
box-sizing: border-box;
|
46
46
|
display: block;
|
47
|
+
height: 35px;
|
47
48
|
padding: 12px 20px 8px 20px;
|
48
49
|
min-width: 160px;
|
49
50
|
text-align: center;
|
@@ -52,7 +53,6 @@
|
|
52
53
|
.subheader-nav > li > a:focus { border-color: inherit; }
|
53
54
|
.subheader-nav > li > a.active,
|
54
55
|
.subheader-nav > li > a:active { border-color: $color-primary; }
|
55
|
-
.subheader-nav > li > a.active { background: $color-light-haze; }
|
56
56
|
.subheader-nav .label {
|
57
57
|
border-radius: 2px;
|
58
58
|
font-size: 9px;
|
@@ -86,14 +86,12 @@
|
|
86
86
|
border-color: $color-dark-black !important;
|
87
87
|
color: $color-white;
|
88
88
|
}
|
89
|
-
.subheader-dark .subheader-nav > li > a.active { background: $color-light-black; }
|
90
89
|
.subheader-dark.subheader-shadow { box-shadow: 0 1px 2px $color-dark-black; }
|
91
90
|
.subheader-light,
|
92
91
|
.subheader-light .subheader-nav {
|
93
92
|
background: $color-light-haze;
|
94
93
|
border-color: $color-dark-haze !important;
|
95
94
|
}
|
96
|
-
.subheader-light .subheader-nav > li > a.active { background: $color-dark-haze; }
|
97
95
|
.subheader-light.subheader-shadow { box-shadow: 0 1px 2px lighten($color-light-gray, 15%); }
|
98
96
|
|
99
97
|
/* # Media Queries
|
@@ -121,6 +119,6 @@ only screen and ( min-resolution: 2dppx) {
|
|
121
119
|
.subheader-nav > li,
|
122
120
|
.subheader-nav > li:last-child { border-width: 0.5px; }
|
123
121
|
.subheader-nav > li { font-weight: 500; }
|
124
|
-
.subheader-nav > li > a {
|
122
|
+
.subheader-nav > li > a { height: 35.5px; }
|
125
123
|
.subheader-nav-toolbar-adjustment { margin-left: 34.5px; }
|
126
124
|
}
|
@@ -46,10 +46,9 @@
|
|
46
46
|
.toolbar > a:hover,
|
47
47
|
.toolbar > a.active,
|
48
48
|
.toolbar > a:active,
|
49
|
-
.toolbar > a:focus {
|
50
|
-
|
51
|
-
|
52
|
-
}
|
49
|
+
.toolbar > a:focus { background: $color-light-haze; }
|
50
|
+
.toolbar > a.active,
|
51
|
+
.toolbar > a:active { color: $color-primary; }
|
53
52
|
.toolbar > a[disabled] {
|
54
53
|
background: $color-transparent;
|
55
54
|
color: $color-gray;
|
@@ -84,28 +83,22 @@
|
|
84
83
|
/* # Styles
|
85
84
|
================================================== */
|
86
85
|
.toolbar-bordered > a {
|
87
|
-
|
88
|
-
border-right
|
89
|
-
border-right-style: solid;
|
90
|
-
border-right-color: $color-transparent;
|
86
|
+
background: $color-transparent !important;
|
87
|
+
border-right: 4px solid $color-transparent !important;
|
91
88
|
text-indent: 1px;
|
92
89
|
}
|
93
90
|
.toolbar-bordered > a:hover,
|
94
|
-
.toolbar-bordered > a:focus { background: $color-transparent !important; }
|
95
|
-
.toolbar-bordered > a:hover,
|
96
91
|
.toolbar-bordered > a.active,
|
97
92
|
.toolbar-bordered > a:active,
|
98
|
-
.toolbar-bordered > a:focus { border-right-color: $color-primary; }
|
93
|
+
.toolbar-bordered > a:focus { border-right-color: $color-primary !important; }
|
99
94
|
.toolbar-bordered.toolbar-alt > a {
|
100
|
-
border-left
|
101
|
-
border-left-style: solid;
|
102
|
-
border-left-color: $color-transparent;
|
95
|
+
border-left: 4px solid $color-transparent !important;
|
103
96
|
border-right: 0 !important;
|
104
97
|
}
|
105
98
|
.toolbar-bordered.toolbar-alt > a:hover,
|
106
99
|
.toolbar-bordered.toolbar-alt > a.active,
|
107
100
|
.toolbar-bordered.toolbar-alt > a:active,
|
108
|
-
.toolbar-bordered.toolbar-alt > a:focus { border-left-color: $color-primary; }
|
101
|
+
.toolbar-bordered.toolbar-alt > a:focus { border-left-color: $color-primary !important; }
|
109
102
|
|
110
103
|
/* # Media Queries
|
111
104
|
================================================== */
|