active_frontend 14.1.5 → 14.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/active_frontend/version.rb +1 -1
- data/lib/generators/active_frontend/templates/install.scss +1 -0
- data/vendor/assets/stylesheets/active_frontend.scss +1 -0
- data/vendor/assets/stylesheets/components/_dropmenu.scss +1 -1
- data/vendor/assets/stylesheets/components/_subheader.scss +54 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df02f168f60b76b48a84b015703636bfa9e78902
|
4
|
+
data.tar.gz: cf9b6f148f3fda527341dccdc4946c3bbac75997
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ead8bc213bc8a4382adec416f57ffe76e98d15a0b0b783f9f4faa019a4ee3695ff24aa839e0cdc1b73bf98c92699ec7cf391adb92316d34406abe65bb0152f45
|
7
|
+
data.tar.gz: 9f764b5ee8c47243a723a55c3cffbdb7bbd51df5c0672576490c654f6c60fbc5f8d6562fcc7a433fa63f8ceef28d061e6c4dfa9234690d1fe3b02cca6dc8e033
|
@@ -0,0 +1,54 @@
|
|
1
|
+
// Table of Contents
|
2
|
+
// ==================================================
|
3
|
+
// Subheader
|
4
|
+
|
5
|
+
// Subheader
|
6
|
+
// ==================================================
|
7
|
+
.subheader {
|
8
|
+
background: color(white);
|
9
|
+
border-bottom: 1px solid color(dark-haze);
|
10
|
+
box-sizing: border-box;
|
11
|
+
height: 54px;
|
12
|
+
line-height: 1;
|
13
|
+
padding: 10px 0;
|
14
|
+
|
15
|
+
&.absolute,
|
16
|
+
&.fixed { z-index: 1040; }
|
17
|
+
&.absolute {
|
18
|
+
position: absolute;
|
19
|
+
width: inherit;
|
20
|
+
}
|
21
|
+
&.fixed {
|
22
|
+
left: 0;
|
23
|
+
position: fixed;
|
24
|
+
right: 0;
|
25
|
+
top: 76px;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
.subheader-switch {
|
29
|
+
margin-top: 5px;
|
30
|
+
line-height: 25px;
|
31
|
+
}
|
32
|
+
.subheader-nav {
|
33
|
+
list-style: none;
|
34
|
+
margin-top: 9px;
|
35
|
+
padding: 0;
|
36
|
+
|
37
|
+
> li {
|
38
|
+
float: left;
|
39
|
+
margin-right: 15px;
|
40
|
+
|
41
|
+
&:last-child { margin-right: 0; }
|
42
|
+
|
43
|
+
&.btn-group + .btn-group { margin-left: 0; }
|
44
|
+
|
45
|
+
.indicator {
|
46
|
+
background: color(red);
|
47
|
+
border-radius: border-radius(xl);
|
48
|
+
height: 5px;
|
49
|
+
margin-left: 17px;
|
50
|
+
position: absolute;
|
51
|
+
width: 5px;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
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.1.
|
4
|
+
version: 14.1.6
|
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-07-
|
11
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -305,6 +305,7 @@ files:
|
|
305
305
|
- vendor/assets/stylesheets/components/_selectpicker.scss
|
306
306
|
- vendor/assets/stylesheets/components/_sidebar.scss
|
307
307
|
- vendor/assets/stylesheets/components/_spinner.scss
|
308
|
+
- vendor/assets/stylesheets/components/_subheader.scss
|
308
309
|
- vendor/assets/stylesheets/components/_switch.scss
|
309
310
|
- vendor/assets/stylesheets/components/_tag.scss
|
310
311
|
- vendor/assets/stylesheets/components/_timepicker.scss
|