active_frontend 14.0.58 → 14.0.59
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: 1bdea52865f12be0bf39f327564d07df1db1bfd7
|
4
|
+
data.tar.gz: a753edc4a22437786462ff9682283cbac1f95d86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de96e17679d7c6e1887386b35088926a3d5d553f23c2e8009a3ce26743eda7099e5bbded7e6429b748106e05f376155596b999f291a30fec5a93dad742029507
|
7
|
+
data.tar.gz: 371412a2dcbbf6e74d057a88246568dfb5b6bc342f16c44d9628f12bbd707ef2d236925a432290fde6c3d8ef102509f6d86d2467c97060a634c4583f5abddf60
|
@@ -71,6 +71,13 @@ $colors-black-text: 'transparent', 'dark-haze', 'haze', 'light-haze', 'white';
|
|
71
71
|
|
72
72
|
// Common
|
73
73
|
// ==================================================
|
74
|
+
$common-border-widths: (
|
75
|
+
xl: 6px,
|
76
|
+
l: 3px,
|
77
|
+
m: 2px,
|
78
|
+
b: 1px,
|
79
|
+
n: 0
|
80
|
+
);
|
74
81
|
$common-border-radiuses: (
|
75
82
|
xl: 999px,
|
76
83
|
l: 10px,
|
@@ -8,6 +8,7 @@
|
|
8
8
|
// Margins
|
9
9
|
// Displays
|
10
10
|
// Colors
|
11
|
+
// Border widths
|
11
12
|
// Box shadows
|
12
13
|
// Border radiuses
|
13
14
|
// Border colors
|
@@ -96,6 +97,16 @@
|
|
96
97
|
.light { background: color(light-haze); }
|
97
98
|
.white { background: color(white); }
|
98
99
|
|
100
|
+
// Border width
|
101
|
+
// ==================================================
|
102
|
+
@each $name, $width in $common-border-widths {
|
103
|
+
.border-width-#{$name} { border-width: $width; }
|
104
|
+
.border-width-bottom-#{$name} { border-bottom-width: $width; }
|
105
|
+
.border-width-left-#{$name} { border-left-width: $width; }
|
106
|
+
.border-width-right-#{$name} { border-right-width: $width; }
|
107
|
+
.border-width-top-#{$name} { border-top-width: $width; }
|
108
|
+
}
|
109
|
+
|
99
110
|
// Box shadows
|
100
111
|
// ==================================================
|
101
112
|
.box-shadow-bottom { box-shadow: 0 1px 2px darker-color(dark-haze); }
|
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.59
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|