active_frontend 2.0.15 → 2.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b15ed4e1c646544af27977f24ff54d00d3d52946
|
|
4
|
+
data.tar.gz: df317b6a5d82307e44da1283b45a829d4e443411
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc9f63894436b2fefd8c473e70169fb859b43ea575fc658b360d52f34e5b081ad5f746dfb0ddc0fa29879cde4ea50ffdb7c62ecc7caddfd7b54c987221c1809e
|
|
7
|
+
data.tar.gz: b1ac701c5c3bfd69ad84ba405432a7f2eb77a0c912a0750a2ec891db16867ecb6ba191f9bb3f144874d2525aa314bd187c46d310e4a4c7777e50647f2373e53b
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
}
|
|
22
22
|
.canvas-content {
|
|
23
23
|
padding: 30px 0;
|
|
24
|
-
max-width: calc(100% - 280px);
|
|
25
|
-
width: calc(100% - 280px);
|
|
26
|
-
}
|
|
27
|
-
.canvas-content.canvas-content-without-sidebar {
|
|
28
24
|
max-width: 100%;
|
|
29
25
|
width: 100%;
|
|
30
26
|
}
|
|
27
|
+
.canvas-content.canvas-content-with-sidebar {
|
|
28
|
+
max-width: calc(100% - 280px);
|
|
29
|
+
width: calc(100% - 280px);
|
|
30
|
+
}
|
|
31
31
|
.canvas-with-header > .canvas-content,
|
|
32
32
|
.canvas-with-header > .canvas-sidebar,
|
|
33
33
|
.canvas-with-header-and-footer > .canvas-content,
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
/* # Media Queries
|
|
52
52
|
================================================== */
|
|
53
53
|
@media only screen and (max-width: 1365px) {
|
|
54
|
-
.canvas-content {
|
|
54
|
+
.canvas-content.canvas-content-with-sidebar {
|
|
55
55
|
max-width: calc(100% - 250px);
|
|
56
56
|
width: calc(100% - 250px);
|
|
57
57
|
}
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
@media only screen and (max-width: 1199px) {
|
|
64
|
-
.canvas-content {
|
|
64
|
+
.canvas-content.canvas-content-with-sidebar {
|
|
65
65
|
max-width: calc(100% - 220px);
|
|
66
66
|
width: calc(100% - 220px);
|
|
67
67
|
}
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
@media only screen and (max-width: 959px) {
|
|
74
|
-
.canvas-content {
|
|
74
|
+
.canvas-content.canvas-content-with-sidebar {
|
|
75
75
|
max-width: 100%;
|
|
76
76
|
width: 100%;
|
|
77
77
|
}
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
.dropdown-menu > li > a:active,
|
|
58
58
|
.dropdown-menu > li > a.active,
|
|
59
59
|
.dropdown-submenu:active > a,
|
|
60
|
-
.dropdown-submenu.active > a { color: rgba(
|
|
60
|
+
.dropdown-submenu.active > a { color: rgba(0,132,255,1); }
|
|
61
61
|
.open > .dropdown-menu { display: block; }
|
|
62
62
|
.pull-right > .dropdown-menu {
|
|
63
63
|
left: auto;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
==================================================
|
|
3
3
|
# Container
|
|
4
4
|
# Desktop
|
|
5
|
+
# Laptop
|
|
5
6
|
# Tablet
|
|
6
7
|
# Mobile
|
|
7
8
|
# Display
|
|
@@ -142,13 +143,25 @@
|
|
|
142
143
|
.hidden { display: none !important; }
|
|
143
144
|
.visible-phone { display: none !important; }
|
|
144
145
|
.visible-tablet { display: none !important; }
|
|
146
|
+
.visible-laptop { display: none !important; }
|
|
145
147
|
.hidden-desktop { display: none !important; }
|
|
146
148
|
|
|
149
|
+
/* # Laptop
|
|
150
|
+
================================================== */
|
|
151
|
+
@media only screen and (min-width: 960px) and (max-width: 1365px) {
|
|
152
|
+
.visible-laptop { display: inherit !important; }
|
|
153
|
+
.hidden-laptop { display: none !important; }
|
|
154
|
+
.hidden-desktop { display: inherit !important; }
|
|
155
|
+
.visible-desktop { display: none !important ; }
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
/* # Tablet
|
|
148
159
|
================================================== */
|
|
149
160
|
@media only screen and (min-width: 768px) and (max-width: 959px) {
|
|
150
|
-
.visible-tablet { display: inherit !important; }
|
|
151
161
|
.hidden-tablet { display: none !important; }
|
|
162
|
+
.visible-tablet { display: inherit !important; }
|
|
163
|
+
.hidden-laptop { display: inherit !important; }
|
|
164
|
+
.visible-laptop { display: none !important ; }
|
|
152
165
|
.hidden-desktop { display: inherit !important; }
|
|
153
166
|
.visible-desktop { display: none !important ; }
|
|
154
167
|
}
|
|
@@ -259,6 +272,8 @@
|
|
|
259
272
|
.container .offset-by-two-thirds { padding-left: 0; }
|
|
260
273
|
.visible-phone { display: inherit !important; }
|
|
261
274
|
.hidden-phone { display: none !important; }
|
|
275
|
+
.hidden-laptop { display: inherit !important; }
|
|
276
|
+
.visible-laptop { display: none !important; }
|
|
262
277
|
.hidden-desktop { display: inherit !important; }
|
|
263
278
|
.visible-desktop { display: none !important; }
|
|
264
279
|
}
|
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: 2.0
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|