active_frontend 10.2.10 → 10.3.0
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/lib/active_frontend/version.rb +1 -1
- data/lib/generators/active_frontend/templates/install.scss +3 -1
- data/vendor/assets/javascripts/_swoggle.js +1 -1
- data/vendor/assets/stylesheets/_ad.scss +41 -62
- data/vendor/assets/stylesheets/_alert.scss +74 -27
- data/vendor/assets/stylesheets/_animation.scss +632 -560
- data/vendor/assets/stylesheets/_aside.scss +14 -11
- data/vendor/assets/stylesheets/_breadcrumb.scss +3 -3
- data/vendor/assets/stylesheets/_button.scss +41 -30
- data/vendor/assets/stylesheets/_canvas.scss +2 -1
- data/vendor/assets/stylesheets/_carousel.scss +7 -6
- data/vendor/assets/stylesheets/_code.scss +12 -14
- data/vendor/assets/stylesheets/_collapse.scss +2 -1
- data/vendor/assets/stylesheets/_color.scss +53 -21
- data/vendor/assets/stylesheets/_colorpicker.scss +4 -3
- data/vendor/assets/stylesheets/_datepicker.scss +10 -9
- data/vendor/assets/stylesheets/_dropdown.scss +12 -11
- data/vendor/assets/stylesheets/_footer.scss +7 -7
- data/vendor/assets/stylesheets/_form.scss +33 -10
- data/vendor/assets/stylesheets/_grid.scss +64 -215
- data/vendor/assets/stylesheets/_header.scss +4 -4
- data/vendor/assets/stylesheets/_label_and_badge.scss +69 -165
- data/vendor/assets/stylesheets/_link.scss +2 -1
- data/vendor/assets/stylesheets/_list.scss +19 -7
- data/vendor/assets/stylesheets/_loader.scss +29 -9
- data/vendor/assets/stylesheets/_map.scss +13 -1
- data/vendor/assets/stylesheets/_missive.scss +7 -7
- data/vendor/assets/stylesheets/_modal.scss +6 -3
- data/vendor/assets/stylesheets/_nav_and_tab.scss +11 -11
- data/vendor/assets/stylesheets/_navbar.scss +5 -5
- data/vendor/assets/stylesheets/_pagination.scss +1 -1
- data/vendor/assets/stylesheets/_panel.scss +10 -7
- data/vendor/assets/stylesheets/_placeholder.scss +4 -4
- data/vendor/assets/stylesheets/_popover.scss +7 -7
- data/vendor/assets/stylesheets/_progress.scss +79 -17
- data/vendor/assets/stylesheets/_reset.scss +7 -4
- data/vendor/assets/stylesheets/_sidebar.scss +12 -10
- data/vendor/assets/stylesheets/_slider.scss +5 -5
- data/vendor/assets/stylesheets/_spinner.scss +297 -152
- data/vendor/assets/stylesheets/_stripe.scss +30 -0
- data/vendor/assets/stylesheets/_swoggle.scss +88 -93
- data/vendor/assets/stylesheets/_table.scss +10 -18
- data/vendor/assets/stylesheets/_timepicker.scss +6 -5
- data/vendor/assets/stylesheets/_toolbar.scss +11 -11
- data/vendor/assets/stylesheets/_tooltip.scss +1 -1
- data/vendor/assets/stylesheets/_transition.scss +2 -1
- data/vendor/assets/stylesheets/_trunk.scss +14 -12
- data/vendor/assets/stylesheets/_typeahead.scss +2 -1
- data/vendor/assets/stylesheets/_typography.scss +60 -27
- data/vendor/assets/stylesheets/active_frontend.scss +3 -1
- metadata +3 -2
@@ -0,0 +1,30 @@
|
|
1
|
+
/* Table of Contents
|
2
|
+
==================================================
|
3
|
+
# Stripe
|
4
|
+
# Styles */
|
5
|
+
|
6
|
+
/* # Stripe
|
7
|
+
================================================== */
|
8
|
+
.stripe {
|
9
|
+
background: $color-primary;
|
10
|
+
height: 3px;
|
11
|
+
left: 0;
|
12
|
+
position: fixed;
|
13
|
+
right: 0;
|
14
|
+
top: 0;
|
15
|
+
width: 100%;
|
16
|
+
z-index: 1050;
|
17
|
+
}
|
18
|
+
|
19
|
+
/* # Styles
|
20
|
+
================================================== */
|
21
|
+
.stripe-two {
|
22
|
+
background: -webkit-linear-gradient(45deg, $color-primary 0%, $color-secondary 100%);
|
23
|
+
background: -ms-linear-gradient(45deg, $color-primary 0%, $color-secondary 100%);
|
24
|
+
background: linear-gradient(45deg, $color-primary 0%, $color-secondary 100%);
|
25
|
+
}
|
26
|
+
.stripe-three {
|
27
|
+
background: -webkit-linear-gradient(45deg, $color-tertiary 0%, $color-primary 50%, $color-secondary 100%);
|
28
|
+
background: -ms-linear-gradient(45deg, $color-tertiary 0%, $color-primary 50%, $color-secondary 100%);
|
29
|
+
background: linear-gradient(45deg, $color-tertiary 0%, $color-primary 50%, $color-secondary 100%);
|
30
|
+
}
|
@@ -1,6 +1,57 @@
|
|
1
1
|
/* Table of Contents
|
2
2
|
==================================================
|
3
|
-
#
|
3
|
+
# Variables
|
4
|
+
# Swoggle
|
5
|
+
# Colors */
|
6
|
+
|
7
|
+
/* # Variables
|
8
|
+
================================================== */
|
9
|
+
$onblack-colors: (
|
10
|
+
dark-yellow: $color-dark-yellow,
|
11
|
+
yellow: $color-yellow,
|
12
|
+
light-yellow: $color-light-yellow
|
13
|
+
);
|
14
|
+
$ongray-colors: (
|
15
|
+
dark-haze: $color-dark-haze,
|
16
|
+
haze: $color-haze,
|
17
|
+
light-haze: $color-light-haze,
|
18
|
+
white: $color-white
|
19
|
+
);
|
20
|
+
$onwhite-colors: (
|
21
|
+
dark-black: $color-dark-black,
|
22
|
+
black: $color-black,
|
23
|
+
light-black: $color-light-black,
|
24
|
+
dark-gray: $color-dark-gray,
|
25
|
+
gray: $color-gray,
|
26
|
+
light-gray: $color-light-gray,
|
27
|
+
dark-lime: $color-dark-lime,
|
28
|
+
lime: $color-lime,
|
29
|
+
light-lime: $color-light-lime,
|
30
|
+
dark-green: $color-dark-green,
|
31
|
+
green: $color-green,
|
32
|
+
light-green: $color-light-green,
|
33
|
+
dark-teal: $color-dark-teal,
|
34
|
+
teal: $color-teal,
|
35
|
+
light-teal: $color-light-teal,
|
36
|
+
dark-blue: $color-dark-blue,
|
37
|
+
blue: $color-blue,
|
38
|
+
light-blue: $color-light-blue,
|
39
|
+
dark-indigo: $color-dark-indigo,
|
40
|
+
indigo: $color-indigo,
|
41
|
+
light-indigo: $color-light-indigo,
|
42
|
+
dark-purple: $color-dark-purple,
|
43
|
+
purple: $color-purple,
|
44
|
+
light-purple: $color-light-purple,
|
45
|
+
dark-pink: $color-dark-pink,
|
46
|
+
pink: $color-pink,
|
47
|
+
light-pink: $color-light-pink,
|
48
|
+
dark-red: $color-dark-red,
|
49
|
+
red: $color-red,
|
50
|
+
light-red: $color-light-red,
|
51
|
+
dark-orange: $color-dark-orange,
|
52
|
+
orange: $color-orange,
|
53
|
+
light-orange: $color-light-orange
|
54
|
+
);
|
4
55
|
|
5
56
|
/* # Swoggle
|
6
57
|
================================================== */
|
@@ -14,10 +65,10 @@
|
|
14
65
|
z-index: -1;
|
15
66
|
}
|
16
67
|
.swoggle {
|
17
|
-
background: $color-haze
|
68
|
+
background: $color-light-haze;
|
69
|
+
border: 1px solid $color-light-haze;
|
18
70
|
border-radius: 500px;
|
19
|
-
|
20
|
-
color: $color-black;
|
71
|
+
color: $color-gray;
|
21
72
|
cursor: pointer;
|
22
73
|
display: inline-block;
|
23
74
|
-webkit-font-smoothing: antialiased;
|
@@ -33,9 +84,11 @@
|
|
33
84
|
text-rendering: geometricPrecision;
|
34
85
|
text-transform: uppercase;
|
35
86
|
-webkit-transition: all 0.5s ease-in-out;
|
36
|
-
|
87
|
+
-ms-transition: all 0.5s ease-in-out;
|
88
|
+
transition: all 0.5s ease-in-out;
|
37
89
|
-webkit-user-select: none;
|
38
|
-
|
90
|
+
-ms-user-select: none;
|
91
|
+
user-select: none;
|
39
92
|
vertical-align: middle;
|
40
93
|
}
|
41
94
|
.swoggle span,
|
@@ -68,99 +121,41 @@
|
|
68
121
|
display: inline-block;
|
69
122
|
position: relative;
|
70
123
|
-webkit-transform: translate3d(0,0,0);
|
71
|
-
|
124
|
+
-ms-transform: translate3d(0,0,0);
|
125
|
+
transform: translate3d(0,0,0);
|
72
126
|
top: 0;
|
73
127
|
width: 150%;
|
74
128
|
}
|
75
129
|
.swoggle.swoggle-on div { margin-left: 0; }
|
76
130
|
.swoggle.swoggle-off div { margin-left: -50%; }
|
77
|
-
.swoggle.swoggle-on.swoggle-black-light,
|
78
|
-
.swoggle.swoggle-on.swoggle-black,
|
79
|
-
.swoggle.swoggle-on.swoggle-black-dark,
|
80
|
-
.swoggle.swoggle-on.swoggle-blue,
|
81
|
-
.swoggle.swoggle-on.swoggle-gray-light,
|
82
|
-
.swoggle.swoggle-on.swoggle-gray,
|
83
|
-
.swoggle.swoggle-on.swoggle-gray-dark,
|
84
|
-
.swoggle.swoggle-on.swoggle-green,
|
85
|
-
.swoggle.swoggle-on.swoggle-indigo,
|
86
|
-
.swoggle.swoggle-on.swoggle-lime,
|
87
|
-
.swoggle.swoggle-on.swoggle-orange,
|
88
|
-
.swoggle.swoggle-on.swoggle-pink,
|
89
|
-
.swoggle.swoggle-on.swoggle-purple,
|
90
|
-
.swoggle.swoggle-on.swoggle-red,
|
91
|
-
.swoggle.swoggle-on.swoggle-teal,
|
92
|
-
.swoggle.swoggle-on.swoggle-yellow { color: $color-white; }
|
93
|
-
.swoggle.swoggle-on.swoggle-black-light {
|
94
|
-
background: $color-black-light;
|
95
|
-
border-color: $color-black-light;
|
96
|
-
}
|
97
|
-
.swoggle.swoggle-on.swoggle-black {
|
98
|
-
background: $color-black;
|
99
|
-
border-color: $color-black;
|
100
|
-
}
|
101
|
-
.swoggle.swoggle-on.swoggle-black-dark {
|
102
|
-
background: $color-black-dark;
|
103
|
-
border-color: $color-black-dark;
|
104
|
-
}
|
105
|
-
.swoggle.swoggle-on.swoggle-blue {
|
106
|
-
background: $color-blue;
|
107
|
-
border-color: $color-blue;
|
108
|
-
}
|
109
|
-
.swoggle.swoggle-on.swoggle-gray-light {
|
110
|
-
background: $color-gray-light;
|
111
|
-
border-color: $color-gray-light;
|
112
|
-
}
|
113
|
-
.swoggle.swoggle-on.swoggle-gray {
|
114
|
-
background: $color-gray;
|
115
|
-
border-color: $color-gray;
|
116
|
-
}
|
117
|
-
.swoggle.swoggle-on.swoggle-gray-dark {
|
118
|
-
background: $color-gray-dark;
|
119
|
-
border-color: $color-gray-dark;
|
120
|
-
}
|
121
|
-
.swoggle.swoggle-on.swoggle-green {
|
122
|
-
background: $color-green;
|
123
|
-
border-color: $color-green;
|
124
|
-
}
|
125
|
-
.swoggle.swoggle-on.swoggle-indigo {
|
126
|
-
background: $color-indigo;
|
127
|
-
border-color: $color-indigo;
|
128
|
-
}
|
129
|
-
.swoggle.swoggle-on.swoggle-lime {
|
130
|
-
background: $color-lime;
|
131
|
-
border-color: $color-lime;
|
132
|
-
}
|
133
|
-
.swoggle.swoggle-on.swoggle-orange {
|
134
|
-
background: $color-orange;
|
135
|
-
border-color: $color-orange;
|
136
|
-
}
|
137
|
-
.swoggle.swoggle-on.swoggle-pink {
|
138
|
-
background: $color-pink;
|
139
|
-
border-color: $color-pink;
|
140
|
-
}
|
141
|
-
.swoggle.swoggle-on.swoggle-purple {
|
142
|
-
background: $color-purple;
|
143
|
-
border-color: $color-purple;
|
144
|
-
}
|
145
|
-
.swoggle.swoggle-on.swoggle-red {
|
146
|
-
background: $color-red;
|
147
|
-
border-color: $color-red;
|
148
|
-
}
|
149
|
-
.swoggle.swoggle-on.swoggle-teal {
|
150
|
-
background: $color-teal;
|
151
|
-
border-color: $color-teal;
|
152
|
-
}
|
153
|
-
.swoggle.swoggle-on.swoggle-yellow {
|
154
|
-
background: $color-yellow;
|
155
|
-
border-color: $color-yellow;
|
156
|
-
}
|
157
131
|
.swoggle.swoggle-animate div {
|
158
132
|
-webkit-transition: margin-left 0.5s;
|
159
|
-
|
133
|
+
-ms-transition: margin-left 0.5s;
|
134
|
+
transition: margin-left 0.5s;
|
160
135
|
}
|
161
|
-
.swoggle.swoggle-disabled
|
162
|
-
.swoggle.swoggle-readonly {
|
163
|
-
|
164
|
-
|
165
|
-
|
136
|
+
.swoggle.swoggle-disabled { cursor: not-allowed !important; }
|
137
|
+
.swoggle.swoggle-readonly { cursor: default !important; }
|
138
|
+
|
139
|
+
/* # Colors
|
140
|
+
================================================== */
|
141
|
+
@each $name, $color in $onblack-colors {
|
142
|
+
.swoggle.swoggle-on.swoggle-#{$name} {
|
143
|
+
background: $color;
|
144
|
+
border-color: $color;
|
145
|
+
color: $color-black;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
@each $name, $color in $ongray-colors {
|
149
|
+
.swoggle.swoggle-on.swoggle-#{$name} {
|
150
|
+
background: $color;
|
151
|
+
border-color: $color;
|
152
|
+
color: $color-gray;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
@each $name, $color in $onwhite-colors {
|
156
|
+
.swoggle.swoggle-on.swoggle-#{$name} {
|
157
|
+
background: $color;
|
158
|
+
border-color: $color;
|
159
|
+
color: $color-white;
|
160
|
+
}
|
166
161
|
}
|
@@ -28,30 +28,20 @@ table {
|
|
28
28
|
border-top-width: 1px;
|
29
29
|
font-size: 14px;
|
30
30
|
font-weight: bold;
|
31
|
-
padding: 7px 10px
|
31
|
+
padding: 7px 10px;
|
32
32
|
}
|
33
33
|
.table th a { color: $color-black; }
|
34
|
-
.table th.tablespy-sort-asc:before
|
35
|
-
|
36
|
-
float: right;
|
37
|
-
font-family: "Ionicons";
|
38
|
-
font-style: normal;
|
39
|
-
font-weight: normal;
|
40
|
-
}
|
41
|
-
.table th.tablespy-sort-desc:before {
|
42
|
-
content: "\f3d0";
|
43
|
-
float: right;
|
44
|
-
font-family: "Ionicons";
|
45
|
-
font-style: normal;
|
46
|
-
font-weight: normal;
|
47
|
-
}
|
34
|
+
.table th.tablespy-sort-asc:before,
|
35
|
+
.table th.tablespy-sort-desc:before,
|
48
36
|
.table th.tablespy-sort-none:before {
|
49
|
-
content: "\f462";
|
50
37
|
float: right;
|
51
38
|
font-family: "Ionicons";
|
52
39
|
font-style: normal;
|
53
40
|
font-weight: normal;
|
54
41
|
}
|
42
|
+
.table th.tablespy-sort-asc:before { content: "\f3d8"; }
|
43
|
+
.table th.tablespy-sort-desc:before { content: "\f3d0"; }
|
44
|
+
.table th.tablespy-sort-none:before { content: "\f462"; }
|
55
45
|
.table th.tablespy-sort-asc,
|
56
46
|
.table th.tablespy-sort-desc,
|
57
47
|
.table th.tablespy-sort-none { cursor: pointer; }
|
@@ -64,7 +54,7 @@ table {
|
|
64
54
|
font-size: 15px;
|
65
55
|
font-weight: bold;
|
66
56
|
letter-spacing: 1px;
|
67
|
-
padding: 7px 10px
|
57
|
+
padding: 7px 10px;
|
68
58
|
text-transform: uppercase;
|
69
59
|
}
|
70
60
|
.table caption + thead tr:first-child th,
|
@@ -109,7 +99,7 @@ table {
|
|
109
99
|
.table-bordered tbody:first-child tr:first-child th,
|
110
100
|
.table-bordered tbody:first-child tr:first-child td { border-top: 0; }
|
111
101
|
.table-striped tbody > tr:nth-child(odd) > td,
|
112
|
-
.table-striped tbody > tr:nth-child(odd) > th { background: $color-haze
|
102
|
+
.table-striped tbody > tr:nth-child(odd) > th { background: $color-light-haze; }
|
113
103
|
.table-hover tbody tr:hover > td,
|
114
104
|
.table-hover tbody tr:hover > th { background: $color-haze; }
|
115
105
|
.table-unbordered,
|
@@ -129,6 +119,8 @@ table {
|
|
129
119
|
border: 1px solid $color-haze;
|
130
120
|
max-height: 300px;
|
131
121
|
-webkit-overflow-scrolling: touch;
|
122
|
+
-ms-overflow-scrolling: touch;
|
123
|
+
overflow-scrolling: touch;
|
132
124
|
overflow: scroll;
|
133
125
|
}
|
134
126
|
.table-responsive > .table > thead > tr > th,
|
@@ -9,7 +9,8 @@
|
|
9
9
|
opacity: 1;
|
10
10
|
padding: 5px 0;
|
11
11
|
-webkit-transition: none;
|
12
|
-
|
12
|
+
-ms-transition: none;
|
13
|
+
transition: none;
|
13
14
|
visibility: visible;
|
14
15
|
}
|
15
16
|
.timepicker-widget.dropdown-menu.open {
|
@@ -17,7 +18,7 @@
|
|
17
18
|
z-index: 1060;
|
18
19
|
}
|
19
20
|
.timepicker-widget.dropdown-menu:before {
|
20
|
-
border-bottom: 7px solid $color-haze
|
21
|
+
border-bottom: 7px solid $color-dark-haze;
|
21
22
|
border-right: 7px solid $color-transparent;
|
22
23
|
border-left: 7px solid $color-transparent;
|
23
24
|
content: "";
|
@@ -25,7 +26,7 @@
|
|
25
26
|
position: absolute;
|
26
27
|
}
|
27
28
|
.timepicker-widget.dropdown-menu:after {
|
28
|
-
border-bottom: 6px solid $color-haze
|
29
|
+
border-bottom: 6px solid $color-dark-haze;
|
29
30
|
border-right: 6px solid $color-transparent;
|
30
31
|
border-left: 6px solid $color-transparent;
|
31
32
|
content: "";
|
@@ -40,12 +41,12 @@
|
|
40
41
|
.timepicker-widget.timepicker-orient-top:after { top: -6px; }
|
41
42
|
.timepicker-widget.timepicker-orient-bottom:before {
|
42
43
|
border-bottom: 0;
|
43
|
-
border-top: 7px solid $color-haze
|
44
|
+
border-top: 7px solid $color-dark-haze;
|
44
45
|
bottom: -7px;
|
45
46
|
}
|
46
47
|
.timepicker-widget.timepicker-orient-bottom:after {
|
47
48
|
border-bottom: 0;
|
48
|
-
border-top: 6px solid $color-haze
|
49
|
+
border-top: 6px solid $color-dark-haze;
|
49
50
|
bottom: -6px;
|
50
51
|
}
|
51
52
|
.timepicker-widget > table {
|
@@ -25,7 +25,7 @@
|
|
25
25
|
border-bottom: 1px solid $color-haze;
|
26
26
|
border-radius: 0;
|
27
27
|
box-sizing: border-box;
|
28
|
-
color: $color-black
|
28
|
+
color: $color-light-black;
|
29
29
|
display: block;
|
30
30
|
font-size: 21px;
|
31
31
|
height: 55px;
|
@@ -47,7 +47,7 @@
|
|
47
47
|
.toolbar > a[disabled]:active,
|
48
48
|
.toolbar > a[disabled]:focus {
|
49
49
|
background: $color-transparent;
|
50
|
-
color: $color-black
|
50
|
+
color: $color-light-black;
|
51
51
|
cursor: not-allowed;
|
52
52
|
pointer-events: none;
|
53
53
|
}
|
@@ -61,7 +61,7 @@
|
|
61
61
|
.toolbar-dark,
|
62
62
|
.toolbar-dark.toolbar-alt {
|
63
63
|
background: $color-black;
|
64
|
-
border-color: $color-black
|
64
|
+
border-color: $color-dark-black;
|
65
65
|
}
|
66
66
|
.toolbar-dark > a,
|
67
67
|
.toolbar-dark > a[disabled],
|
@@ -69,18 +69,18 @@
|
|
69
69
|
.toolbar-dark > a[disabled]:active,
|
70
70
|
.toolbar-dark > a[disabled]:focus {
|
71
71
|
color: $color-gray;
|
72
|
-
border-color: $color-black
|
72
|
+
border-color: $color-dark-black;
|
73
73
|
}
|
74
74
|
.toolbar-light,
|
75
75
|
.toolbar-light.toolbar-alt {
|
76
|
-
background: $color-haze
|
77
|
-
border-color: $color-haze
|
76
|
+
background: $color-light-haze;
|
77
|
+
border-color: $color-dark-haze;
|
78
78
|
}
|
79
|
-
.toolbar-
|
80
|
-
.toolbar-
|
81
|
-
.toolbar-
|
82
|
-
.toolbar-
|
83
|
-
.toolbar-
|
79
|
+
.toolbar-light > a,
|
80
|
+
.toolbar-light > a[disabled],
|
81
|
+
.toolbar-light > a[disabled]:hover,
|
82
|
+
.toolbar-light > a[disabled]:active,
|
83
|
+
.toolbar-light > a[disabled]:focus { border-color: $color-dark-haze; }
|
84
84
|
|
85
85
|
/* # Media Queries
|
86
86
|
================================================== */
|
@@ -7,6 +7,7 @@
|
|
7
7
|
.tooltip {
|
8
8
|
color: $color-white;
|
9
9
|
display: block;
|
10
|
+
float: none;
|
10
11
|
font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
|
11
12
|
font-size: 11px;
|
12
13
|
font-style: normal;
|
@@ -15,7 +16,6 @@
|
|
15
16
|
line-height: 17px;
|
16
17
|
opacity: 0;
|
17
18
|
filter: alpha(opacity=0);
|
18
|
-
float: none;
|
19
19
|
position: absolute;
|
20
20
|
text-decoration: none;
|
21
21
|
text-transform: none;
|
@@ -29,8 +29,8 @@
|
|
29
29
|
}
|
30
30
|
.trunk-nav > li,
|
31
31
|
.trunk-user > li {
|
32
|
-
font-weight: 500;
|
33
32
|
font-size: 11px;
|
33
|
+
font-weight: 500;
|
34
34
|
line-height: 11px;
|
35
35
|
margin: 5px;
|
36
36
|
}
|
@@ -50,7 +50,7 @@
|
|
50
50
|
}
|
51
51
|
.trunk-nav > li.title {
|
52
52
|
border-bottom: 1px solid $color-haze;
|
53
|
-
color: $color-
|
53
|
+
color: $color-primary;
|
54
54
|
font-size: 12px;
|
55
55
|
letter-spacing: 1px;
|
56
56
|
line-height: 12px;
|
@@ -66,14 +66,15 @@
|
|
66
66
|
.trunk-nav > li > a,
|
67
67
|
.trunk-user > li > a {
|
68
68
|
-webkit-appearance: none;
|
69
|
-
|
69
|
+
-ms-appearance: none;
|
70
|
+
appearance: none;
|
70
71
|
border-radius: 2px;
|
71
|
-
color: $color-gray
|
72
|
+
color: $color-dark-gray;
|
72
73
|
cursor: pointer;
|
73
74
|
display: block;
|
74
75
|
-webkit-font-smoothing: antialiased;
|
75
|
-
font-weight: 500;
|
76
76
|
font-size: 11px;
|
77
|
+
font-weight: 500;
|
77
78
|
letter-spacing: 1px;
|
78
79
|
line-height: 11px;
|
79
80
|
padding: 11px 0 9px 0;
|
@@ -82,7 +83,8 @@
|
|
82
83
|
text-rendering: geometricPrecision;
|
83
84
|
text-transform: uppercase;
|
84
85
|
-webkit-transition: all 0.3s linear;
|
85
|
-
|
86
|
+
-ms-transition: all 0.3s linear;
|
87
|
+
transition: all 0.3s linear;
|
86
88
|
vertical-align: middle;
|
87
89
|
white-space: nowrap;
|
88
90
|
}
|
@@ -123,11 +125,7 @@
|
|
123
125
|
================================================== */
|
124
126
|
.trunk-dark {
|
125
127
|
background: $color-black;
|
126
|
-
border-color: $color-black
|
127
|
-
}
|
128
|
-
.trunk-light {
|
129
|
-
background: $color-haze-light;
|
130
|
-
border-color: $color-haze-dark;
|
128
|
+
border-color: $color-dark-black;
|
131
129
|
}
|
132
130
|
.trunk-dark .trunk-nav > li.title,
|
133
131
|
.trunk-dark .trunk-nav > li > a,
|
@@ -146,9 +144,13 @@
|
|
146
144
|
border-color: $color-primary;
|
147
145
|
color: $color-primary;
|
148
146
|
}
|
147
|
+
.trunk-light {
|
148
|
+
background: $color-light-haze;
|
149
|
+
border-color: $color-dark-haze;
|
150
|
+
}
|
149
151
|
.trunk-light .trunk-nav > li.title,
|
150
152
|
.trunk-light .trunk-nav > li.divider,
|
151
|
-
.trunk-light .trunk-nav > li > a { border-color: $color-haze
|
153
|
+
.trunk-light .trunk-nav > li > a { border-color: $color-dark-haze; }
|
152
154
|
.trunk-light .trunk-nav > li > a:hover,
|
153
155
|
.trunk-light .trunk-nav > li > a:active,
|
154
156
|
.trunk-light .trunk-nav > li > a.active,
|