active_frontend 12.4.18 → 12.4.19
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: 240ac0010d5da2305197c8b93c5620cb8e657f16
|
|
4
|
+
data.tar.gz: b6013c4896b317b40d12b735447ebc19a1c16735
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 202e873ed8f8d1fccfe77ab41d54cd291544e268090cc4d81136234dd375db2cdbb3a02a39e40ef3382bab55033f83347fb8451a7d87a43b38a5f23b94382e20
|
|
7
|
+
data.tar.gz: 820df9b20fb6bd2c560f094ccf2988b80690d0d6da0f202664d5c3f6f91c336e4c049997d25b07f4bf5ac2710aa397e51d003c1fbdc25058b43c97095a331fc6
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/* Table of Contents
|
|
2
2
|
==================================================
|
|
3
3
|
# Canvas
|
|
4
|
-
# Canvas Alt
|
|
5
4
|
# Media Queries */
|
|
6
5
|
|
|
7
6
|
/* # Canvas
|
|
@@ -41,10 +40,18 @@
|
|
|
41
40
|
max-width: calc(100% - 55px);
|
|
42
41
|
width: calc(100% - 55px);
|
|
43
42
|
}
|
|
43
|
+
.canvas-content-with-dual-toolbar {
|
|
44
|
+
max-width: calc(100% - 110px);
|
|
45
|
+
width: calc(100% - 110px);
|
|
46
|
+
}
|
|
44
47
|
.canvas-content-with-sidebar-and-toolbar {
|
|
45
48
|
max-width: calc(100% - 335px);
|
|
46
49
|
width: calc(100% - 335px);
|
|
47
50
|
}
|
|
51
|
+
.canvas-content-with-sidebar-and-dual-toolbar {
|
|
52
|
+
max-width: calc(100% - 390px);
|
|
53
|
+
width: calc(100% - 390px);
|
|
54
|
+
}
|
|
48
55
|
.canvas-sidebar {
|
|
49
56
|
max-width: 280px;
|
|
50
57
|
width: 280px;
|
|
@@ -97,6 +104,10 @@
|
|
|
97
104
|
max-width: calc(100% - 305px);
|
|
98
105
|
width: calc(100% - 305px);
|
|
99
106
|
}
|
|
107
|
+
.canvas-content-with-sidebar-and-dual-toolbar {
|
|
108
|
+
max-width: calc(100% - 360px);
|
|
109
|
+
width: calc(100% - 360px);
|
|
110
|
+
}
|
|
100
111
|
}
|
|
101
112
|
@media only screen and (max-width: 1199px) {
|
|
102
113
|
.canvas-sidebar {
|
|
@@ -111,6 +122,10 @@
|
|
|
111
122
|
max-width: calc(100% - 275px);
|
|
112
123
|
width: calc(100% - 275px);
|
|
113
124
|
}
|
|
125
|
+
.canvas-content-with-sidebar-and-dual-toolbar {
|
|
126
|
+
max-width: calc(100% - 330px);
|
|
127
|
+
width: calc(100% - 330px);
|
|
128
|
+
}
|
|
114
129
|
}
|
|
115
130
|
@media only screen and (max-width: 959px) {
|
|
116
131
|
.canvas-sidebar {
|
|
@@ -125,13 +140,18 @@
|
|
|
125
140
|
max-width: calc(100% - 255px);
|
|
126
141
|
width: calc(100% - 255px);
|
|
127
142
|
}
|
|
143
|
+
.canvas-content-with-sidebar-and-dual-toolbar {
|
|
144
|
+
max-width: calc(100% - 310px);
|
|
145
|
+
width: calc(100% - 310px);
|
|
146
|
+
}
|
|
128
147
|
}
|
|
129
148
|
@media only screen and (max-width: 767px) {
|
|
130
149
|
.canvas-sidebar,
|
|
131
150
|
.canvas-toolbar { display: none; }
|
|
132
151
|
.canvas-content-with-sidebar,
|
|
133
152
|
.canvas-content-with-toolbar,
|
|
134
|
-
.canvas-content-with-sidebar-and-toolbar
|
|
153
|
+
.canvas-content-with-sidebar-and-toolbar,
|
|
154
|
+
.canvas-content-with-sidebar-and-dual-toolbar {
|
|
135
155
|
max-width: 100%;
|
|
136
156
|
width: 100%;
|
|
137
157
|
}
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
.subheader-nav > li > a:focus { border-color: inherit; }
|
|
54
54
|
.subheader-nav > li > a.active,
|
|
55
55
|
.subheader-nav > li > a:active { border-color: $color-primary; }
|
|
56
|
+
.subheader-nav-large > li > a { min-width: 220px; }
|
|
56
57
|
.subheader-nav .label {
|
|
57
58
|
border-radius: 2px;
|
|
58
59
|
font-size: 9px;
|
|
@@ -98,12 +99,15 @@
|
|
|
98
99
|
================================================== */
|
|
99
100
|
@media only screen and (max-width: 1365px) {
|
|
100
101
|
.subheader-nav > li > a { min-width: 130px; }
|
|
102
|
+
.subheader-nav-large > li > a { min-width: 200px; }
|
|
101
103
|
}
|
|
102
104
|
@media only screen and (max-width: 1199px) {
|
|
103
105
|
.subheader-nav > li > a { min-width: 100px; }
|
|
106
|
+
.subheader-nav-large > li > a { min-width: 200px; }
|
|
104
107
|
}
|
|
105
108
|
@media only screen and (max-width: 959px) {
|
|
106
109
|
.subheader-nav > li > a { min-width: 70px; }
|
|
110
|
+
.subheader-nav-large > li > a { min-width: 180px; }
|
|
107
111
|
}
|
|
108
112
|
@media only screen and (max-width: 767px) {
|
|
109
113
|
.subheader { display: none; }
|
|
@@ -14,4 +14,10 @@
|
|
|
14
14
|
@include transition(none);
|
|
15
15
|
visibility: visible;
|
|
16
16
|
}
|
|
17
|
-
.typeahead.dropdown-menu > li > a b { color: $color-primary; }
|
|
17
|
+
.typeahead.dropdown-menu > li > a b { color: $color-primary; }
|
|
18
|
+
x {
|
|
19
|
+
display: block;
|
|
20
|
+
color: $color-gray;
|
|
21
|
+
font-style: italic;
|
|
22
|
+
font-weight: normal;
|
|
23
|
+
}
|