active_frontend 16.2.1 → 16.2.2

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
  SHA256:
3
- metadata.gz: e02cc189b83767af669e0eb98c7f73dd727f3b7f911900bcaf184992989be23e
4
- data.tar.gz: bee683e8ec7007fa4b3482ae8896bada7a6b11ece08609ddb7ad75b2a996d289
3
+ metadata.gz: 1c0d9ee0ecad40be942f6f0caf23daea8c967ac6692a31440df9e06eeabcb0aa
4
+ data.tar.gz: 4cbdc2e4580e3b31316403047bca59d7b355bf6e8d558db73f8472b8438fc515
5
5
  SHA512:
6
- metadata.gz: 6a12d82f1e80b43b9e6ca8bcaa5d67253a1d04c86a382aad2a27234d778de9791c0104c1158e8ba4ec3b2af18fb73170a7f77c567464da2d2cc886fbce345643
7
- data.tar.gz: 8b46d07611d18f8e8b40f13b4ea05a7937de803e9bb33b4493b57fc3e585810c7cca916eee55b6d26f1634250b8690980ac8eb152b5db2e07c99e5120c16a4be
6
+ metadata.gz: c4957a338dbd1e580921385bc7517e095d04017a2cf544276d765c8a67bc11fc8b3b8c9196ed451460ba2093b39b10641ddabde21839cc268fdb9607bc54806e
7
+ data.tar.gz: 53e4d4f72891bce1357228d984a26b79254591ff9bb1015c391d1892a19d0f3642cd3d33c8af6b1417846a12be3117d6bfd981a64e9f6c766f0bbea6003640c2
data/.DS_Store CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveFrontend
4
- VERSION ||= '16.2.1'
4
+ VERSION ||= '16.2.2'
5
5
  end
@@ -177,6 +177,7 @@ body {
177
177
  font-weight: text-weight(semilight);
178
178
  letter-spacing: -0.4px;
179
179
  line-height: text-line-height(b);
180
+ padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
180
181
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
181
182
  text-align: left;
182
183
  text-decoration: none;
@@ -3,6 +3,7 @@
3
3
  // Card
4
4
 
5
5
  // scss-lint:disable NestingDepth
6
+ // scss-lint:disable SelectorDepth
6
7
 
7
8
  // Card
8
9
  // ==================================================
@@ -18,6 +19,24 @@
18
19
  width: calc(100% + 3px);
19
20
  }
20
21
 
22
+ > .nav-tabs {
23
+ margin: 0;
24
+ padding: 0;
25
+ width: 100%;
26
+
27
+ > li {
28
+ display: table-cell;
29
+ float: none;
30
+ margin: 0;
31
+ width: 1%;
32
+
33
+ > a {
34
+ padding: 15px 0 14px;
35
+ text-align: center;
36
+ }
37
+ }
38
+ }
39
+
21
40
  .table-encase,
22
41
  .table-border,
23
42
  .table-responsive {
@@ -117,7 +117,11 @@
117
117
  $width: nth($widths, $i);
118
118
 
119
119
  @if $width {
120
- .#{dasherize($type, $name)} { width: calc(100% - (20px + env(safe-area-inset-right) + env(safe-area-inset-left))); }
120
+ .#{dasherize($type, $name)} {
121
+ width: calc(100% - 20px);
122
+ width: calc(100% - (20px + constant(safe-area-inset-right) + constant(safe-area-inset-left)));
123
+ width: calc(100% - (20px + env(safe-area-inset-right) + env(safe-area-inset-left)));
124
+ }
121
125
  }
122
126
  }
123
127
  }
@@ -76,7 +76,11 @@
76
76
  height: initial;
77
77
  padding-top: 54px;
78
78
 
79
- &.with-sticky-navbar { padding-bottom: calc(54px + env(safe-area-inset-bottom)); }
79
+ &.with-sticky-navbar {
80
+ padding-bottom: 54px;
81
+ padding-bottom: calc(54px + constant(safe-area-inset-bottom));
82
+ padding-bottom: calc(54px + env(safe-area-inset-bottom));
83
+ }
80
84
  }
81
85
  }
82
86
  .layout-sidebar {
@@ -13,6 +13,8 @@
13
13
  border-top: 1px solid color(haze);
14
14
  box-sizing: border-box;
15
15
  display: table;
16
+ height: 54px;
17
+ height: calc(54px + constant(safe-area-inset-bottom));
16
18
  height: calc(54px + env(safe-area-inset-bottom));
17
19
  line-height: 1;
18
20
  table-layout: fixed;
@@ -43,7 +43,11 @@
43
43
  text-align: center;
44
44
  }
45
45
  .sidebar-body,
46
- .sidebar-subtitle { padding: 0 calc(15px + env(safe-area-inset-right) + env(safe-area-inset-left)); }
46
+ .sidebar-subtitle {
47
+ padding: 0 15px;
48
+ padding: 0 calc(15px + constant(safe-area-inset-right) + constant(safe-area-inset-left));
49
+ padding: 0 calc(15px + env(safe-area-inset-right) + env(safe-area-inset-left));
50
+ }
47
51
  .sidebar-subtitle {
48
52
  background: color(light-haze);
49
53
  border-bottom: 1px solid;
@@ -57,6 +61,8 @@
57
61
  border-bottom-width: 1px;
58
62
  box-sizing: border-box;
59
63
  display: block;
64
+ padding: 20px 15px;
65
+ padding: 20px calc(15px + constant(safe-area-inset-right) + constant(safe-area-inset-left));
60
66
  padding: 20px calc(15px + env(safe-area-inset-right) + env(safe-area-inset-left));
61
67
  width: 100%;
62
68
  }
@@ -66,6 +72,8 @@
66
72
  border-bottom-style: solid;
67
73
  border-bottom-width: 1px;
68
74
  list-style: none;
75
+ padding: 15px 30px;
76
+ padding: 15px calc(30px + constant(safe-area-inset-right) + constant(safe-area-inset-left));
69
77
  padding: 15px calc(30px + env(safe-area-inset-right) + env(safe-area-inset-left));
70
78
 
71
79
  a {
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: 16.2.1
4
+ version: 16.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-30 00:00:00.000000000 Z
11
+ date: 2018-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails