active_frontend 10.2.4 → 10.2.5
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/_button.scss +10 -1
- data/vendor/assets/stylesheets/_dropdown.scss +2 -2
- data/vendor/assets/stylesheets/_header.scss +2 -1
- data/vendor/assets/stylesheets/_loader.scss +4 -1
- data/vendor/assets/stylesheets/_missive.scss +2 -3
- data/vendor/assets/stylesheets/_pagination.scss +6 -7
- 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: 42df159b24d626f23924f969410832506a8abc62
|
|
4
|
+
data.tar.gz: 4e584dd845b3c183db052425116e6d4d9bb97419
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c77499a92c6ac9769d6b65619a9b3da73b2264b495601cfe1c6de733e24dbf8ebd25226dc7d337158e6f15947193260785daefefc719f2f96f3b38cd65923d55
|
|
7
|
+
data.tar.gz: 665572755c32ed3f23a9e2ea26a1fdae148eb4ac297ad326672c9d6b185672f43e7dfd4dbdebef66cafe3e3fea082ee2affb4f99b0e0f51a47538698af14c60f
|
|
@@ -728,9 +728,9 @@ input.btn-block {
|
|
|
728
728
|
.btn-group > .btn,
|
|
729
729
|
.btn-group-vertical > .btn {
|
|
730
730
|
border-radius: 0;
|
|
731
|
-
margin-left: -1px;
|
|
732
731
|
position: relative;
|
|
733
732
|
}
|
|
733
|
+
.btn-group > .btn { margin-left: -1px; }
|
|
734
734
|
.btn-group > .btn:first-child {
|
|
735
735
|
border-bottom-left-radius: 2px;
|
|
736
736
|
border-top-left-radius: 2px;
|
|
@@ -851,4 +851,13 @@ input.btn-block {
|
|
|
851
851
|
border-bottom-left-radius: 0;
|
|
852
852
|
border-top-right-radius: 2px;
|
|
853
853
|
}
|
|
854
|
+
}
|
|
855
|
+
@media
|
|
856
|
+
only screen and (-webkit-min-device-pixel-ratio: 2),
|
|
857
|
+
only screen and ( min--moz-device-pixel-ratio: 2),
|
|
858
|
+
only screen and ( -o-min-device-pixel-ratio: 2/1),
|
|
859
|
+
only screen and ( min-device-pixel-ratio: 2),
|
|
860
|
+
only screen and ( min-resolution: 192dpi),
|
|
861
|
+
only screen and ( min-resolution: 2dppx) {
|
|
862
|
+
.btn-group > .dropdown-toggle:not(:first-child) { border-left-width: 0.5px; }
|
|
854
863
|
}
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
position: absolute;
|
|
32
32
|
text-align: left;
|
|
33
33
|
text-transform: none;
|
|
34
|
-
-webkit-transition: all 0.
|
|
35
|
-
transition: all 0.
|
|
34
|
+
-webkit-transition: all 0.1s ease-in-out;
|
|
35
|
+
transition: all 0.1s ease-in-out;
|
|
36
36
|
top: 100%;
|
|
37
37
|
visibility: hidden;
|
|
38
38
|
z-index: 1000;
|
|
@@ -102,7 +102,8 @@
|
|
|
102
102
|
.header-nav > li.lined > a:hover,
|
|
103
103
|
.header-nav > li.lined > a.active,
|
|
104
104
|
.header-nav > li.lined > a:active,
|
|
105
|
-
.header-nav > li.lined > a:focus
|
|
105
|
+
.header-nav > li.lined > a:focus,
|
|
106
|
+
.header-nav > li.lined.active > a { border-color: $color-primary; }
|
|
106
107
|
.header-nav-alt > li > a { padding: 10px 0 9px 0; }
|
|
107
108
|
.header-toolchain > li > a {
|
|
108
109
|
font-size: 26px;
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
width: 100%;
|
|
23
23
|
z-index: 9999;
|
|
24
24
|
}
|
|
25
|
-
.loader-backdrop {
|
|
25
|
+
.loader-backdrop {
|
|
26
|
+
height: 5px;
|
|
27
|
+
background: $color-haze-light;
|
|
28
|
+
}
|
|
26
29
|
.loader-bar { background: $color-primary; }
|
|
27
30
|
.loader-peg {
|
|
28
31
|
box-shadow: 0 0 10px $color-primary, 0 0 5px $color-primary;
|
|
@@ -30,10 +30,9 @@
|
|
|
30
30
|
padding: 20px 15px 20px 0;
|
|
31
31
|
width: calc(100% - 100px);
|
|
32
32
|
}
|
|
33
|
-
.missive-content
|
|
34
|
-
.missive-content > p {
|
|
33
|
+
.missive-content {
|
|
35
34
|
font-size: 14px;
|
|
36
|
-
line-height:
|
|
35
|
+
line-height: 22px;
|
|
37
36
|
}
|
|
38
37
|
.missive-content > p:last-child { margin-bottom: 0; }
|
|
39
38
|
|
|
@@ -20,24 +20,23 @@
|
|
|
20
20
|
background: $color-haze-light;
|
|
21
21
|
border-radius: 500px;
|
|
22
22
|
color: $color-black;
|
|
23
|
+
display: inline-block;
|
|
23
24
|
min-width: 8px;
|
|
24
|
-
padding: 9px 10px 7px 10px;
|
|
25
25
|
text-align: center;
|
|
26
26
|
text-decoration: none;
|
|
27
27
|
}
|
|
28
|
+
.pagination > ul > li > a { padding: 10px 12px 8px 12px; }
|
|
29
|
+
.pagination > ul > li.active { padding: 10px 12px 8px 12px; }
|
|
28
30
|
.pagination > ul > li > a:active,
|
|
29
31
|
.pagination > ul > li.active {
|
|
30
32
|
background: $color-primary;
|
|
31
33
|
color: $color-white;
|
|
32
34
|
}
|
|
33
|
-
.pagination > ul > li.active {
|
|
34
|
-
padding-bottom: 6px;
|
|
35
|
-
padding-top: 8px;
|
|
36
|
-
}
|
|
37
35
|
.pagination > ul > li > a:hover,
|
|
38
36
|
.pagination > ul > li > a:focus { background: $color-haze; }
|
|
39
|
-
.pagination > ul > li.pagination-icon
|
|
40
|
-
.pagination > ul > li.pagination-icon:
|
|
37
|
+
.pagination > ul > li.pagination-icon > a { padding: 9px 10px 7px 10px; }
|
|
38
|
+
.pagination > ul > li.pagination-icon:first-child > a { padding-right: 13px; }
|
|
39
|
+
.pagination > ul > li.pagination-icon:last-child > a { padding-left: 13px; }
|
|
41
40
|
.pagination-centered { text-align: center; }
|
|
42
41
|
.pagination-right { text-align: right; }
|
|
43
42
|
.pagination-left { text-align: left; }
|
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: 10.2.
|
|
4
|
+
version: 10.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|