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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 96d51756c1b213a83e45b5039637461cfea4a28f
4
- data.tar.gz: 46a2715856ba135e4df4c0123bbd4b4428a330b4
3
+ metadata.gz: 2b048b35d222795e53f2ae6ccd04b1840e254d02
4
+ data.tar.gz: 5ccad3c85ea91f2fe19d5f399f84f648e78de8ba
5
5
  SHA512:
6
- metadata.gz: acb5375cf211c05ffb30095b41ba620afb23a065bd44e257f4e7757273f78a57c6880e808a41eea0d16ecd1b203416672b0c9ffdfc730c6d3fd32c9172afd729
7
- data.tar.gz: 2e12c705802cf6107ae5f29734977852953f689cf451362f97fe8a9a06eaf5a15809ff3ab601b1dd5ac0214b344d62d870e398e930e07bd816026522a8f67ecb
6
+ metadata.gz: e7e7d2d0d1367199a79becb61682b9c76a8a4b632511cf70993e504d439b398a19acd150674496a0b795b1baf469ca554c94c323b4c517315fd46543f4535105
7
+ data.tar.gz: 1564a4bece040e7ebc5954d1018d225133ca1b9a8aca913b77a9f66445583a3ec5cb5af6af6729e32597a2ab9aea8cb09e40d0a13bab3755127b39aef2bbaf3b
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = '14.0.22'.freeze
2
+ VERSION = '14.0.23'.freeze
3
3
  end
@@ -172,10 +172,10 @@ $grid-column-widths: (
172
172
  three-fourths: 75%
173
173
  );
174
174
  $grid-container-widths: (
175
- l: (calc(100% - 60px), 1360px),
176
- m: (calc(100% - 40px), 1180px),
177
- b: (calc(100% - 20px), 960px),
178
- s: (calc(100% - 10px), 760px),
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
 
@@ -78,7 +78,7 @@
78
78
  color: color(white);
79
79
  cursor: default;
80
80
  font-size: text-size(s);
81
- padding: 2px 3px 3px;
81
+ padding: 0 3px 1px;
82
82
  }
83
83
  .calendar-event-draggable { cursor: pointer; }
84
84
  .calendar-event-inner {
@@ -87,9 +87,7 @@
87
87
  $width: nth($widths, 2);
88
88
 
89
89
  @if $width {
90
- @if $width > 960 {
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
- @if $width > 760 {
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,
@@ -52,9 +52,9 @@
52
52
 
53
53
  &.fixed {
54
54
  bottom: 0;
55
+ left: 0;
55
56
  position: fixed;
56
- min-width: inherit;
57
- width: inherit;
57
+ right: 0;
58
58
  z-index: 1040;
59
59
  }
60
60
  }
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.22
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-23 00:00:00.000000000 Z
11
+ date: 2016-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails