active_frontend 4.0.1 → 4.5.0

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: ee0aee1962b6322f9b817f2bc908bcdb479e2d56
4
- data.tar.gz: dd2cd73a1e8a47142e14ab0acbdb806cc613434c
3
+ metadata.gz: 1a435cea9e68d44f42cf54c9c92ee445839511ca
4
+ data.tar.gz: e72405f5eda8b81a22044cc4706915e51037a15e
5
5
  SHA512:
6
- metadata.gz: 9f3ae849feda8a9b438cdb51b4665542cf5edb31a97646c10d96c453548c4876bd82877109d5bb81cb5d4cbe8a31963b68a23eae3a808825bcd4b50e82cb3423
7
- data.tar.gz: 202ce19cf74ef7494f1e081f91737e70a8bbc2b49b4182c36024b7bb9f576a144d6c2b7bf4414b2e0069eff623c2777f6a7ea374a0a501056b6429b74e7bda68
6
+ metadata.gz: 8d4a8795414d867c4bc8e826e552814870a72218a1c4a8925394c016458142c01b5934e134ce0398059756840e5ad7c587a06e07bfe7fc4ab9f004a006e0f9da
7
+ data.tar.gz: 742e0c7f000302ab2aa18b3544e98af23ae934970ee556b6f1f5063a12649600261c6162533b380a08e324c30b83cb4c1b7e59b08326c97b0d58455e8a37a8ab
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "4.0.1"
2
+ VERSION = "4.5.0"
3
3
  end
@@ -1,6 +1,7 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
3
  # Canvas
4
+ # Alternate
4
5
  # Media Queries */
5
6
 
6
7
  /* # Canvas
@@ -20,7 +21,7 @@
20
21
  overflow-scrolling: touch;
21
22
  }
22
23
  .canvas-content {
23
- padding: 30px 0 50px 0;
24
+ padding: 30px 0 0 0;
24
25
  max-width: 100%;
25
26
  width: 100%;
26
27
  }
@@ -40,6 +41,14 @@
40
41
  max-height: calc(100% - 60px);
41
42
  }
42
43
 
44
+ /* # Alternate
45
+ ================================================== */
46
+ .canvas-app.canvas-with-header > .canvas-sidebar { margin-top: 0; }
47
+ .canvas-app.canvas-with-header .sidebar {
48
+ height: 100%;
49
+ max-height: 100%;
50
+ }
51
+
43
52
  /* # Media Queries
44
53
  ================================================== */
45
54
  @media only screen and (max-width: 1365px) {
@@ -70,6 +79,9 @@
70
79
  .canvas-sidebar { display: none; }
71
80
  }
72
81
  @media only screen and (max-width: 767px) {
73
- .canvas-with-header > .canvas-content { margin-top: 50px; }
82
+ .canvas-with-header > .canvas-content {
83
+ margin-top: 50px;
84
+ padding-bottom: 50px;
85
+ }
74
86
  .canvas-with-footer > .canvas-content { padding-bottom: 80px; }
75
87
  }
@@ -1,7 +1,9 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
3
  # Footer
4
- # Alternate */
4
+ # Alternate
5
+ # Application
6
+ # Media Queries */
5
7
 
6
8
  /* # Footer
7
9
  ================================================== */
@@ -65,4 +67,20 @@
65
67
  }
66
68
  .footer.footer-alt > .footer-brand > a { color: rgba(136,153,166,1); }
67
69
  .footer.footer-alt > .footer-nav > li > a { color: rgba(136,153,166,1); }
68
- .footer.footer-alt > .footer-footnote { color: rgba(136,153,166,1); }
70
+ .footer.footer-alt > .footer-footnote { color: rgba(136,153,166,1); }
71
+
72
+ /* # Application
73
+ ================================================== */
74
+ .footer.footer-app { width: calc(100% - 280px); }
75
+
76
+ /* # Media Queries
77
+ ================================================== */
78
+ @media only screen and (max-width: 1365px) {
79
+ .footer.footer-app { width: calc(100% - 250px); }
80
+ }
81
+ @media only screen and (max-width: 1199px) {
82
+ .footer.footer-app { width: calc(100% - 220px); }
83
+ }
84
+ @media only screen and (max-width: 959px) {
85
+ .footer.footer-app { width: 100%; }
86
+ }
@@ -2,6 +2,7 @@
2
2
  ==================================================
3
3
  # Header
4
4
  # Alternate
5
+ # Application
5
6
  # Media Queries */
6
7
 
7
8
  /* # Header
@@ -14,8 +15,8 @@
14
15
  z-index: 1030;
15
16
  }
16
17
  .header {
17
- background: rgba(91,146,250,1);
18
- border-bottom: 4px solid rgba(0,0,0,0.1);
18
+ background: rgba(255,255,255,1);
19
+ border-bottom: 4px solid rgba(245,248,250,1);
19
20
  box-sizing: border-box;
20
21
  height: 65px;
21
22
  padding: 15px 0;
@@ -23,7 +24,7 @@
23
24
  }
24
25
  .header-brand { float: left; }
25
26
  .header-brand > a {
26
- color: rgba(255,255,255,1);
27
+ color: rgba(91,146,250,1);
27
28
  font-size: 30px;
28
29
  line-height: 40px;
29
30
  text-decoration: none;
@@ -39,6 +40,7 @@
39
40
  }
40
41
  .header-search > input { margin: 0; }
41
42
  .header-nav {
43
+ color: rgba(85,94,113,1);
42
44
  float: left;
43
45
  list-style-type: none;
44
46
  margin: 5px 0 0 20px;
@@ -55,7 +57,7 @@
55
57
  }
56
58
  .header-nav > li.btn-group + li.btn-group { margin-left: 0; }
57
59
  .header-nav > li > a {
58
- color: rgba(42,44,48,1);
60
+ color: rgba(85,94,113,1);
59
61
  font-size: 12px;
60
62
  font-weight: 500;
61
63
  letter-spacing: 1px;
@@ -66,7 +68,7 @@
66
68
  .header-nav > li > a.active,
67
69
  .header-nav > li > a:active,
68
70
  .header-nav > li > a:hover,
69
- .header-nav > li > a:focus { color: rgba(255,255,255,1); }
71
+ .header-nav > li > a:focus { color: rgba(91,146,250,1); }
70
72
  .header-nav-alt {
71
73
  float: right;
72
74
  list-style-type: none;
@@ -74,6 +76,7 @@
74
76
  padding: 0;
75
77
  }
76
78
  .header-nav-alt > li {
79
+ color: rgba(85,94,113,1);
77
80
  display: inline-block;
78
81
  font-size: 12px;
79
82
  font-weight: 500;
@@ -86,7 +89,7 @@
86
89
  .header-nav-alt > li.btn-group + li.btn-group { margin-left: 0; }
87
90
  .header-nav-alt > li.btn-group { margin-top: 2px; }
88
91
  .header-nav-alt > li > a {
89
- color: rgba(255,255,255,1);
92
+ color: rgba(85,94,113,1);
90
93
  letter-spacing: 1px;
91
94
  padding: 15px 0 13px 0;
92
95
  text-transform: uppercase;
@@ -94,17 +97,17 @@
94
97
  .header-nav-alt > li > a.active,
95
98
  .header-nav-alt > li > a:active,
96
99
  .header-nav-alt > li > a:hover,
97
- .header-nav-alt > li > a:focus { color: rgba(42,44,48,1); }
100
+ .header-nav-alt > li > a:focus { color: rgba(91,146,250,1); }
98
101
  .header-nav-alt > li.inverse > a {
99
- background: rgba(255,255,255,1);
102
+ background: rgba(91,146,250,1);
100
103
  border-radius: 500px;
101
- color: rgba(42,44,48,1);
104
+ color: rgba(255,255,255,1);
102
105
  padding-left: 20px;
103
106
  padding-right: 20px;
104
107
  }
105
108
  .header-nav-alt > li.inverse > a:hover {
109
+ background: rgba(85,94,113,1);
106
110
  color: rgba(255,255,255,1);
107
- background: rgba(0,0,0,0.1);
108
111
  }
109
112
  .header-toolchain {
110
113
  float: right;
@@ -119,7 +122,7 @@
119
122
  .header-toolchain > li:first-child { margin: 0; }
120
123
  .header-toolchain > li.btn-group + li.btn-group { margin-left: 0; }
121
124
  .header-toolchain > li > a {
122
- color: rgba(42,44,48,1);
125
+ color: rgba(85,94,113,1);
123
126
  font-size: 30px;
124
127
  line-height: 30px;
125
128
  text-decoration: none;
@@ -127,21 +130,21 @@
127
130
  .header-toolchain > li > a.active,
128
131
  .header-toolchain > li > a:active,
129
132
  .header-toolchain > li > a:hover,
130
- .header-toolchain > li > a:focus { color: rgba(255,255,255,1); }
133
+ .header-toolchain > li > a:focus { color: rgba(91,146,250,1); }
131
134
  .header-user {
132
135
  float: right;
133
136
  font-size: 13px;
134
137
  margin: -1px 0 0 20px;
135
138
  }
136
139
  .header-user > a {
137
- color: rgba(255,255,255,1);
140
+ color: rgba(85,94,113,1);
138
141
  text-decoration: none;
139
142
  }
140
143
  .header-user img,
141
144
  .header-user-placeholder {
142
- background: rgba(255,255,255,1);
145
+ background: rgba(85,94,113,1);
143
146
  border-radius: 500px;
144
- color: rgba(42,44,48,1);
147
+ color: rgba(255,255,255,1);
145
148
  display: inline-block;
146
149
  height: 36px;
147
150
  margin: 0;
@@ -156,7 +159,7 @@
156
159
  }
157
160
  .header-user > ul.dropdown-menu { margin: -5px 10px 0 0; }
158
161
  .header-toggle > a {
159
- color: rgba(255,255,255,1);
162
+ color: rgba(91,146,250,1);
160
163
  float: right;
161
164
  font-size: 40px;
162
165
  padding: 4px 0px 3px 14px;
@@ -165,44 +168,23 @@
165
168
 
166
169
  /* # Alternate
167
170
  ================================================== */
168
- .header.header-alt {
169
- background: rgba(255,255,255,1);
170
- border-color: rgba(255,255,255,1);
171
- }
172
- .header.header-alt .header-brand > a { color: rgba(91,146,250,1) }
173
- .header.header-alt .header-nav > li > a { color: rgba(85,94,113,1); }
174
- .header.header-alt .header-nav > li > a.active,
175
- .header.header-alt .header-nav > li > a:active,
176
- .header.header-alt .header-nav > li > a:hover,
177
- .header.header-alt .header-nav > li > a:focus { color: rgba(91,146,250,1); }
178
- .header.header-alt .header-nav-alt > li > a { color: rgba(85,94,113,1); }
179
- .header.header-alt .header-nav-alt > li > a.active,
180
- .header.header-alt .header-nav-alt > li > a:active,
181
- .header.header-alt .header-nav-alt > li > a:hover,
182
- .header.header-alt .header-nav-alt > li > a:focus { color: rgba(91,146,250,1); }
183
- .header.header-alt .header-nav-alt > li.inverse > a {
184
- background: rgba(91,146,250,1);
185
- color: rgba(255,255,255,1);
186
- }
187
- .header.header-alt .header-nav-alt > li.inverse > a:hover {
188
- background: rgba(245,248,250,1);
189
- color: rgba(42,44,48,1);
190
- }
191
- .header.header-alt .header-toolchain > li > a { color: rgba(85,94,113,1); }
192
- .header.header-alt .header-toolchain > li > a.active,
193
- .header.header-alt .header-toolchain > li > a:active,
194
- .header.header-alt .header-toolchain > li > a:hover,
195
- .header.header-alt .header-toolchain > li > a:focus { color: rgba(91,146,250,1); }
196
- .header.header-alt .header-user > a { color: rgba(85,94,113,1); }
197
- .header.header-alt .header-user img,
198
- .header.header-alt .header-user-placeholder {
199
- background: rgba(85,94,113,1);
200
- color: rgba(255,255,255,1);
201
- }
202
- .header.header-alt .header-toggle > a { color: rgba(91,146,250,1); }
171
+ .header.header-alt { border-bottom-color: rgba(255,255,255,1); }
172
+
173
+ /* # Application
174
+ ================================================== */
175
+ .header.header-app { width: calc(100% - 280px); }
203
176
 
204
177
  /* # Media Queries
205
178
  ================================================== */
179
+ @media only screen and (max-width: 1365px) {
180
+ .header.header-app { width: calc(100% - 250px); }
181
+ }
182
+ @media only screen and (max-width: 1199px) {
183
+ .header.header-app { width: calc(100% - 220px); }
184
+ }
185
+ @media only screen and (max-width: 959px) {
186
+ .header.header-app { width: 100%; }
187
+ }
206
188
  @media only screen and (max-width: 767px) {
207
189
  .header {
208
190
  height: 50px;
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: 4.0.1
4
+ version: 4.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-06 00:00:00.000000000 Z
11
+ date: 2015-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -170,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  version: '0'
171
171
  requirements: []
172
172
  rubyforge_project:
173
- rubygems_version: 2.4.7
173
+ rubygems_version: 2.4.8
174
174
  signing_key:
175
175
  specification_version: 4
176
176
  summary: ActiveFrontend Responsive Web Framework