active_frontend 14.0.22 → 14.0.23
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/vendor/assets/stylesheets/_variable.scss +4 -4
- data/vendor/assets/stylesheets/components/_alert.scss +8 -1
- data/vendor/assets/stylesheets/components/_calendar.scss +1 -1
- data/vendor/assets/stylesheets/components/_grid.scss +2 -6
- data/vendor/assets/stylesheets/components/_header.scss +8 -1
- data/vendor/assets/stylesheets/components/_label_and_badge.scss +18 -0
- data/vendor/assets/stylesheets/components/_navbar.scss +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b048b35d222795e53f2ae6ccd04b1840e254d02
|
|
4
|
+
data.tar.gz: 5ccad3c85ea91f2fe19d5f399f84f648e78de8ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7e7d2d0d1367199a79becb61682b9c76a8a4b632511cf70993e504d439b398a19acd150674496a0b795b1baf469ca554c94c323b4c517315fd46543f4535105
|
|
7
|
+
data.tar.gz: 1564a4bece040e7ebc5954d1018d225133ca1b9a8aca913b77a9f66445583a3ec5cb5af6af6729e32597a2ab9aea8cb09e40d0a13bab3755127b39aef2bbaf3b
|
|
@@ -172,10 +172,10 @@ $grid-column-widths: (
|
|
|
172
172
|
three-fourths: 75%
|
|
173
173
|
);
|
|
174
174
|
$grid-container-widths: (
|
|
175
|
-
l: (calc(100% -
|
|
176
|
-
m: (calc(100% -
|
|
177
|
-
b: (calc(100% -
|
|
178
|
-
s: (calc(100% -
|
|
175
|
+
l: (calc(100% - 160px), 1360px),
|
|
176
|
+
m: (calc(100% - 80px), 1180px),
|
|
177
|
+
b: (calc(100% - 40px), 960px),
|
|
178
|
+
s: (calc(100% - 20px), 760px),
|
|
179
179
|
null: (100%, null)
|
|
180
180
|
);
|
|
181
181
|
$grid-row-margins: (
|
|
@@ -20,12 +20,19 @@
|
|
|
20
20
|
|
|
21
21
|
.alert-close { float: right; }
|
|
22
22
|
|
|
23
|
+
&.absolute,
|
|
24
|
+
&.fixed { z-index: 1050; }
|
|
25
|
+
|
|
26
|
+
&.absolute {
|
|
27
|
+
position: absolute;
|
|
28
|
+
width: inherit;
|
|
29
|
+
}
|
|
30
|
+
|
|
23
31
|
&.fixed {
|
|
24
32
|
left: 0;
|
|
25
33
|
position: fixed;
|
|
26
34
|
right: 0;
|
|
27
35
|
top: 0;
|
|
28
|
-
z-index: 1050;
|
|
29
36
|
}
|
|
30
37
|
}
|
|
31
38
|
|
|
@@ -87,9 +87,7 @@
|
|
|
87
87
|
$width: nth($widths, 2);
|
|
88
88
|
|
|
89
89
|
@if $width {
|
|
90
|
-
|
|
91
|
-
.conatinerFixed-#{$name} { width: 960px; }
|
|
92
|
-
}
|
|
90
|
+
.container-fixed-#{$name} { width: 960px; }
|
|
93
91
|
}
|
|
94
92
|
}
|
|
95
93
|
|
|
@@ -101,9 +99,7 @@
|
|
|
101
99
|
$width: nth($widths, 2);
|
|
102
100
|
|
|
103
101
|
@if $width {
|
|
104
|
-
|
|
105
|
-
.conatinerFixed-#{$name} { width: 760px; }
|
|
106
|
-
}
|
|
102
|
+
.container-fixed-#{$name} { width: 760px; }
|
|
107
103
|
}
|
|
108
104
|
}
|
|
109
105
|
|
|
@@ -13,12 +13,19 @@
|
|
|
13
13
|
line-height: 1;
|
|
14
14
|
padding: 18px;
|
|
15
15
|
|
|
16
|
+
&.absolute,
|
|
17
|
+
&.fixed { z-index: 1040; }
|
|
18
|
+
|
|
19
|
+
&.absolute {
|
|
20
|
+
position: absolute;
|
|
21
|
+
width: inherit;
|
|
22
|
+
}
|
|
23
|
+
|
|
16
24
|
&.fixed {
|
|
17
25
|
left: 0;
|
|
18
26
|
position: fixed;
|
|
19
27
|
right: 0;
|
|
20
28
|
top: 0;
|
|
21
|
-
z-index: 1040;
|
|
22
29
|
}
|
|
23
30
|
}
|
|
24
31
|
.header-brand,
|
|
@@ -44,6 +44,24 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
// Sizes
|
|
48
|
+
// ==================================================
|
|
49
|
+
.badge-size-l,
|
|
50
|
+
.label-size-l,
|
|
51
|
+
.badge-size-m,
|
|
52
|
+
.label-size-m { font-size: text-size(b); }
|
|
53
|
+
.badge-size-l,
|
|
54
|
+
.badge-size-m { min-width: 16px; }
|
|
55
|
+
.badge-size-l { padding: 15px; }
|
|
56
|
+
.badge-size-m { padding: 10px; }
|
|
57
|
+
.label-size-l { padding: 13px 20px; }
|
|
58
|
+
.label-size-m { padding: 10px 15px; }
|
|
59
|
+
.badge-size-s,
|
|
60
|
+
.label-size-s {
|
|
61
|
+
font-size: text-size(xs);
|
|
62
|
+
padding: 4px 8px 5px;
|
|
63
|
+
}
|
|
64
|
+
|
|
47
65
|
// Styles
|
|
48
66
|
// ==================================================
|
|
49
67
|
.badge-block,
|
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: 14.0.
|
|
4
|
+
version: 14.0.23
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-11-
|
|
11
|
+
date: 2016-11-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|