active_frontend 10.2.1 → 10.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 +4 -4
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/stylesheets/_alert.scss +12 -2
- data/vendor/assets/stylesheets/_code.scss +15 -6
- data/vendor/assets/stylesheets/_footer.scss +3 -3
- data/vendor/assets/stylesheets/_nav_and_tab.scss +3 -0
- data/vendor/assets/stylesheets/_table.scss +7 -7
- data/vendor/assets/stylesheets/_toolbar.scss +6 -1
- data/vendor/assets/stylesheets/_trunk.scss +2 -1
- 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: f696d3ac88a5057db4d6daf76c9c178f90add83f
|
4
|
+
data.tar.gz: db57ab3286f27bd1abe453406cd176cc1b7b9468
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a2cdcefcbcb0d38a9fe65bbe52a578f366c4cfc2ef6b307a8b516342707df5877f2a9717f5afde638afebc9f3a593e242b6631edd50e73f3442f322ad20b3dd
|
7
|
+
data.tar.gz: 4bfc0baab69e08913257ce4a962cb247371084afa74794e432a5faca327536294038866e7ecd11d305e01cacf64a0cfb64e49638047684c91a394866766f2c22
|
@@ -27,11 +27,11 @@
|
|
27
27
|
width: 100%;
|
28
28
|
}
|
29
29
|
.alert > a {
|
30
|
-
color: $color-white;
|
31
30
|
border-bottom: 1px dotted $color-white;
|
31
|
+
color: $color-white;
|
32
32
|
font-style: italic;
|
33
33
|
}
|
34
|
-
.alert-lined { border:
|
34
|
+
.alert-lined { border: 1px solid rgba(0,0,0,0.1); }
|
35
35
|
.alert-close {
|
36
36
|
border: 0 !important;
|
37
37
|
color: $color-white !important;
|
@@ -65,6 +65,16 @@
|
|
65
65
|
.alert-alert { background: $color-red; }
|
66
66
|
.alert-teal { background: $color-teal; }
|
67
67
|
.alert-yellow { background: $color-yellow; }
|
68
|
+
.alert-white {
|
69
|
+
background: $color-white;
|
70
|
+
border-color: $color-haze;
|
71
|
+
color: $color-gray;
|
72
|
+
}
|
73
|
+
.alert-white > a {
|
74
|
+
border-bottom-color: $color-gray;
|
75
|
+
color: $color-gray;
|
76
|
+
}
|
77
|
+
.alert-white .alert-close { color: $color-gray !important; }
|
68
78
|
|
69
79
|
/* # Media Queries
|
70
80
|
================================================== */
|
@@ -1,18 +1,18 @@
|
|
1
1
|
/* Table of Contents
|
2
2
|
==================================================
|
3
|
-
# Code
|
4
|
-
# Pre
|
3
|
+
# Code/Pre
|
5
4
|
# Pygments
|
6
5
|
# Colors
|
7
6
|
# Media Queries */
|
8
7
|
|
9
|
-
/* # Code
|
8
|
+
/* # Code/Pre
|
10
9
|
================================================== */
|
11
10
|
code {
|
12
11
|
background: $color-haze-light;
|
13
12
|
border: 1px solid $color-haze-dark;
|
14
13
|
border-radius: 2px;
|
15
14
|
color: $color-black;
|
15
|
+
counter-reset: code-line 0;
|
16
16
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
17
17
|
font-size: 12px;
|
18
18
|
font-weight: normal;
|
@@ -27,14 +27,12 @@ code {
|
|
27
27
|
white-space: pre;
|
28
28
|
vertical-align: middle;
|
29
29
|
}
|
30
|
-
|
31
|
-
/* # Pre
|
32
|
-
================================================== */
|
33
30
|
pre {
|
34
31
|
background: $color-haze-light;
|
35
32
|
border: 1px solid $color-haze-dark;
|
36
33
|
border-radius: 2px;
|
37
34
|
color: $color-black;
|
35
|
+
counter-reset: code-line 0;
|
38
36
|
display: block;
|
39
37
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
40
38
|
font-size: 12px;
|
@@ -49,10 +47,21 @@ pre {
|
|
49
47
|
word-wrap: break-word;
|
50
48
|
white-space: pre;
|
51
49
|
}
|
50
|
+
.code-numbered,
|
51
|
+
.pre-numbered { padding-left: 30px; }
|
52
52
|
.pre-scrollable {
|
53
53
|
max-height: 300px;
|
54
54
|
overflow: scroll;
|
55
55
|
}
|
56
|
+
.code-line { counter-increment: code-line; }
|
57
|
+
.code-line:before {
|
58
|
+
content: counter(code-line);
|
59
|
+
color: $color-black;
|
60
|
+
left: 0;
|
61
|
+
position: fixed;
|
62
|
+
text-align: center;
|
63
|
+
width: 30px;
|
64
|
+
}
|
56
65
|
|
57
66
|
/* # Pygments
|
58
67
|
================================================== */
|
@@ -18,9 +18,6 @@
|
|
18
18
|
.footer {
|
19
19
|
background: $color-white;
|
20
20
|
border-top: 1px solid $color-haze;
|
21
|
-
background-size: 100% 1px, 100% 1px;
|
22
|
-
background-position: top, bottom;
|
23
|
-
background-repeat: no-repeat;
|
24
21
|
box-sizing: border-box;
|
25
22
|
color: $color-gray;
|
26
23
|
margin-top: 40px;
|
@@ -103,6 +100,9 @@
|
|
103
100
|
@media only screen and (max-width: 959px) {
|
104
101
|
.footer-app { width: 100%; }
|
105
102
|
}
|
103
|
+
@media only screen and (max-width: 767px) {
|
104
|
+
.footer-alt { padding: 25px 0 10px 0; }
|
105
|
+
}
|
106
106
|
@media
|
107
107
|
only screen and (-webkit-min-device-pixel-ratio: 2),
|
108
108
|
only screen and ( min--moz-device-pixel-ratio: 2),
|
@@ -88,6 +88,9 @@
|
|
88
88
|
margin-right: 20px;
|
89
89
|
padding-bottom: 10px;
|
90
90
|
}
|
91
|
+
.nav-tabs > li > a:hover,
|
92
|
+
.nav-tabs > li > a:active,
|
93
|
+
.nav-tabs > li > a:focus { border-bottom-color: $color-haze; }
|
91
94
|
.nav-tabs > .active > a,
|
92
95
|
.nav-tabs > .active > a:hover,
|
93
96
|
.nav-tabs > .active > a:active,
|
@@ -16,7 +16,7 @@ table {
|
|
16
16
|
.table th,
|
17
17
|
.table td {
|
18
18
|
background: $color-white;
|
19
|
-
border-top: 1px solid $color-haze
|
19
|
+
border-top: 1px solid $color-haze;
|
20
20
|
font-size: 16px;
|
21
21
|
line-height: 25px;
|
22
22
|
padding: 9px 10px 6px 10px;
|
@@ -58,7 +58,7 @@ table {
|
|
58
58
|
.table th.tablespy-sort-empty:before { content: ""; }
|
59
59
|
.table th.tablespy-sort-empty { pointer-events: none; }
|
60
60
|
.table caption {
|
61
|
-
border-bottom: 1px solid $color-haze
|
61
|
+
border-bottom: 1px solid $color-haze;
|
62
62
|
border-top: 0;
|
63
63
|
color: $color-black;
|
64
64
|
font-size: 15px;
|
@@ -73,7 +73,7 @@ table {
|
|
73
73
|
.table colgroup + thead tr:first-child td,
|
74
74
|
.table thead:first-child tr:first-child th,
|
75
75
|
.table thead:first-child tr:first-child td { border-top: 0; }
|
76
|
-
.table tbody + tbody { border-top: 1px solid $color-haze
|
76
|
+
.table tbody + tbody { border-top: 1px solid $color-haze; }
|
77
77
|
.table-align-bottom th,
|
78
78
|
.table-align-bottom td { vertical-align: bottom; }
|
79
79
|
.table-align-top th,
|
@@ -89,16 +89,16 @@ table {
|
|
89
89
|
padding: 5px 5px 3px 5px;
|
90
90
|
}
|
91
91
|
.table-bordered {
|
92
|
-
border: 1px solid $color-haze
|
92
|
+
border: 1px solid $color-haze;
|
93
93
|
border-collapse: separate;
|
94
94
|
border-left: 0;
|
95
95
|
}
|
96
96
|
.table-bordered caption {
|
97
|
-
border: 1px solid $color-haze
|
97
|
+
border: 1px solid $color-haze;
|
98
98
|
border-bottom-width: 0;
|
99
99
|
}
|
100
100
|
.table-bordered th,
|
101
|
-
.table-bordered td { border-left: 1px solid $color-haze
|
101
|
+
.table-bordered td { border-left: 1px solid $color-haze; }
|
102
102
|
.table-bordered caption + thead tr:first-child th,
|
103
103
|
.table-bordered caption + tbody tr:first-child th,
|
104
104
|
.table-bordered caption + tbody tr:first-child td,
|
@@ -126,7 +126,7 @@ table {
|
|
126
126
|
================================================== */
|
127
127
|
@media only screen and (max-width: 960px) {
|
128
128
|
.table-responsive {
|
129
|
-
border: 1px solid $color-haze
|
129
|
+
border: 1px solid $color-haze;
|
130
130
|
max-height: 300px;
|
131
131
|
-webkit-overflow-scrolling: touch;
|
132
132
|
overflow: scroll;
|
@@ -46,6 +46,7 @@
|
|
46
46
|
.toolbar > a[disabled]:active,
|
47
47
|
.toolbar > a[disabled]:focus {
|
48
48
|
background: $color-transparent;
|
49
|
+
color: $color-black-light;
|
49
50
|
cursor: not-allowed;
|
50
51
|
pointer-events: none;
|
51
52
|
}
|
@@ -57,7 +58,11 @@
|
|
57
58
|
background: $color-black;
|
58
59
|
border-color: $color-black-dark;
|
59
60
|
}
|
60
|
-
.toolbar-dark > a
|
61
|
+
.toolbar-dark > a,
|
62
|
+
.toolbar-dark > a[disabled],
|
63
|
+
.toolbar-dark > a[disabled]:hover,
|
64
|
+
.toolbar-dark > a[disabled]:active,
|
65
|
+
.toolbar-dark > a[disabled]:focus { color: $color-gray; }
|
61
66
|
.toolbar-light,
|
62
67
|
.toolbar-light.toolbar-alt {
|
63
68
|
background: $color-haze-light;
|
@@ -110,7 +110,8 @@
|
|
110
110
|
border-color: $color-haze-dark;
|
111
111
|
}
|
112
112
|
.trunk-dark .trunk-nav > li > a,
|
113
|
-
.trunk-dark .trunk-user > li > a { color: $color-
|
113
|
+
.trunk-dark .trunk-user > li > a { color: $color-gray; }
|
114
|
+
.trunk-dark .trunk-nav > li > a { border-color: $color-gray; }
|
114
115
|
.trunk-dark .trunk-nav > li > a:hover,
|
115
116
|
.trunk-dark .trunk-nav > li > a:active,
|
116
117
|
.trunk-dark .trunk-nav > li > a.active,
|
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.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: 2015-
|
11
|
+
date: 2015-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|