active_frontend 6.4.2 → 6.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: 20852e6b91c190d543327a705a4dbae0af9bc689
4
- data.tar.gz: 839f2c5878f7c2fb4defe2b477540fd7e0f809f8
3
+ metadata.gz: 799718c5c0d5b7b3f5ff1d21790f833ca4d155ee
4
+ data.tar.gz: ab4aa65826c58a9b0bfd0ab8b2b3bbcc6534cc7f
5
5
  SHA512:
6
- metadata.gz: 74d1f1440d4940dfc4a8b360977d2fbf9b3702ac22400572d03c64d199bfad768ab6852062ce4c406f823242bf4f471a6dd70f7ea95798e5545eebc02bdc29f3
7
- data.tar.gz: 827cdca2a4b3f7e9f9777b2ee3ae27ffeb613c84fca6e9e5cf44d741b0fe7a21477a77659d9f0b477c944c5f5ab2b41ad3785628cce168ab3e6d573f29e931d4
6
+ metadata.gz: 8ef930c34786ee47514ab8295521695f9885e4494cdb8f65f40ca9409ddac2ad990640fc5a6ea226e38a5e6c25e5773ea13bbd88f5e72b381bf3755d42b286a0
7
+ data.tar.gz: 40c5f022d93f48b224c1e3c2808ae06c92ec2a1b0de966674c8966aa6d8cac2e53ee9ba281e1bbb31b63b8cb9fcaa91c4b9e176a4209231e8c738e8090501274
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "6.4.2"
2
+ VERSION = "6.5.0"
3
3
  end
@@ -1919,7 +1919,7 @@
1919
1919
  barShowStroke : true,
1920
1920
 
1921
1921
  //Number - Pixel width of the bar stroke
1922
- barStrokeWidth : 1,
1922
+ barStrokeWidth : 2,
1923
1923
 
1924
1924
  //Number - Spacing between each of the X value sets
1925
1925
  barValueSpacing : 5,
@@ -2206,7 +2206,7 @@
2206
2206
  segmentStrokeColor : "rgba(255,255,255,1)",
2207
2207
 
2208
2208
  //Number - The width of each segment stroke
2209
- segmentStrokeWidth : 1,
2209
+ segmentStrokeWidth : 2,
2210
2210
 
2211
2211
  //The percentage of the chart that we cut out of the middle.
2212
2212
  percentageInnerCutout : 50,
@@ -2405,7 +2405,7 @@
2405
2405
  pointDotRadius : 4,
2406
2406
 
2407
2407
  //Number - Pixel width of point dot stroke
2408
- pointDotStrokeWidth : 1,
2408
+ pointDotStrokeWidth : 2,
2409
2409
 
2410
2410
  //Number - amount extra to add to the radius to cater for hit detection outside the drawn point
2411
2411
  pointHitDetectionRadius : 20,
@@ -2414,7 +2414,7 @@
2414
2414
  datasetStroke : true,
2415
2415
 
2416
2416
  //Number - Pixel width of dataset stroke
2417
- datasetStrokeWidth : 1,
2417
+ datasetStrokeWidth : 2,
2418
2418
 
2419
2419
  //Boolean - Whether to fill the dataset with a colour
2420
2420
  datasetFill : true,
@@ -2753,7 +2753,7 @@
2753
2753
  segmentStrokeColor : "rgba(255,255,255,1)",
2754
2754
 
2755
2755
  //Number - The width of the stroke value in pixels
2756
- segmentStrokeWidth : 1,
2756
+ segmentStrokeWidth : 2,
2757
2757
 
2758
2758
  //Number - Amount of animation steps
2759
2759
  animationSteps : 100,
@@ -3016,7 +3016,7 @@
3016
3016
  pointDotRadius : 3,
3017
3017
 
3018
3018
  //Number - Pixel width of point dot stroke
3019
- pointDotStrokeWidth : 1,
3019
+ pointDotStrokeWidth : 2,
3020
3020
 
3021
3021
  //Number - amount extra to add to the radius to cater for hit detection outside the drawn point
3022
3022
  pointHitDetectionRadius : 20,
@@ -3025,7 +3025,7 @@
3025
3025
  datasetStroke : true,
3026
3026
 
3027
3027
  //Number - Pixel width of dataset stroke
3028
- datasetStrokeWidth : 1,
3028
+ datasetStrokeWidth : 2,
3029
3029
 
3030
3030
  //Boolean - Whether to fill the dataset with a colour
3031
3031
  datasetFill : true,
@@ -159,10 +159,10 @@
159
159
 
160
160
  /* # Colors
161
161
  ================================================== */
162
- .header-dark {
163
- background: rgba(35,41,55,1);
164
- border-color: rgba(0,0,0,0.2);
165
- }
162
+ .header-dark,
163
+ .header-primary { border-color: rgba(0,0,0,0.2); }
164
+ .header-dark { background: rgba(35,41,55,1); }
165
+ .header-primary { background: $primary-color; }
166
166
  .header-dark .header-nav > li > a,
167
167
  .header-dark .header-nav-alt > li > a,
168
168
  .header-dark .header-nav-alt > li.inverse > a:hover,
@@ -171,7 +171,16 @@
171
171
  .header-dark .header-nav-alt > li.inverse > a:focus,
172
172
  .header-dark .header-toolchain > li > a,
173
173
  .header-dark .header-user > a { color: rgba(136,153,166,1); }
174
+ .header-primary .header-nav > li > a,
175
+ .header-primary .header-nav-alt > li > a,
176
+ .header-primary .header-nav-alt > li.inverse > a:hover,
177
+ .header-primary .header-nav-alt > li.inverse > a.active,
178
+ .header-primary .header-nav-alt > li.inverse > a:active,
179
+ .header-primary .header-nav-alt > li.inverse > a:focus,
180
+ .header-primary .header-toolchain > li > a,
181
+ .header-primary .header-user > a { color: rgba(255,255,255,1); }
174
182
  .header-dark .header-brand > a,
183
+ .header-primary .header-brand > a,
175
184
  .header-dark .header-nav > li > a:hover,
176
185
  .header-dark .header-nav > li > a.active,
177
186
  .header-dark .header-nav > li > a:active,
@@ -191,15 +200,44 @@
191
200
  .header-dark .header-user > a:focus,
192
201
  .header-dark .header-user > img,
193
202
  .header-dark .header-user-placeholder,
194
- .header-dark .header-toggle > a { color: rgba(255,255,255,1) }
195
- .header-dark .header-nav-alt > li.inverse > a {
203
+ .header-dark .header-toggle > a,
204
+ .header-primary .header-toggle > a { color: rgba(255,255,255,1) }
205
+ .header-primary .header-nav > li > a:hover,
206
+ .header-primary .header-nav > li > a.active,
207
+ .header-primary .header-nav > li > a:active,
208
+ .header-primary .header-nav > li > a:focus,
209
+ .header-primary .header-nav-alt > li > a:hover,
210
+ .header-primary .header-nav-alt > li > a.active,
211
+ .header-primary .header-nav-alt > li > a:active,
212
+ .header-primary .header-nav-alt > li > a:focus,
213
+ .header-primary .header-nav-alt > li.inverse > a,
214
+ .header-primary .header-toolchain > li > a:hover,
215
+ .header-primary .header-toolchain > li > a.active,
216
+ .header-primary .header-toolchain > li > a:active,
217
+ .header-primary .header-toolchain > li > a:focus,
218
+ .header-primary .header-user > a:hover,
219
+ .header-primary .header-user > a.active,
220
+ .header-primary .header-user > a:active,
221
+ .header-primary .header-user > a:focus,
222
+ .header-primary .header-user > img,
223
+ .header-primary .header-user-placeholder { color: rgba(35,41,55,1) }
224
+ .header-dark .header-nav-alt > li.inverse > a,
225
+ .header-primary .header-nav-alt > li.inverse > a {
196
226
  background: transparent;
197
227
  border-color: rgba(255,255,255,1);
198
228
  }
229
+ .header-primary .header-nav-alt > li.inverse > a { color:rgba(255,255,255,1); }
199
230
  .header-dark .header-nav-alt > li.inverse > a:hover,
200
231
  .header-dark .header-nav-alt > li.inverse > a.active,
201
232
  .header-dark .header-nav-alt > li.inverse > a:active,
202
233
  .header-dark .header-nav-alt > li.inverse > a:focus { border-color: rgba(136,153,166,1); }
234
+ .header-primary .header-nav-alt > li.inverse > a:hover,
235
+ .header-primary .header-nav-alt > li.inverse > a.active,
236
+ .header-primary .header-nav-alt > li.inverse > a:active,
237
+ .header-primary .header-nav-alt > li.inverse > a:focus {
238
+ border-color: rgba(35,41,55,1);
239
+ color: rgba(35,41,55,1);
240
+ }
203
241
  .header-dark .header-user > img,
204
242
  .header-dark .header-user-placeholder { background: rgba(136,153,166,1); }
205
243
  .header-light {
@@ -229,6 +267,8 @@
229
267
  height: 50px;
230
268
  padding: 0;
231
269
  }
270
+ .header-dark,
271
+ .header-primary { border-color: rgba(0,0,0,0.2); }
232
272
  .header-brand > a {
233
273
  font-size: 36px;
234
274
  line-height: 57px;
@@ -35,11 +35,12 @@
35
35
 
36
36
  /* # Colors
37
37
  ================================================== */
38
- .navbar-dark {
39
- background: rgba(35,41,55,1);
40
- border-color: rgba(0,0,0,0.2);
41
- }
42
- .navbar-dark > a { color: rgba(255,255,255,1); }
38
+ .navbar-dark,
39
+ .navbar-primary { border-color: rgba(0,0,0,0.2); }
40
+ .navbar-dark { background: rgba(35,41,55,1); }
41
+ .navbar-primary { background: $primary-color; }
42
+ .navbar-dark > a,
43
+ .navbar-primary > a { color: rgba(255,255,255,1); }
43
44
  .navbar-light {
44
45
  background: rgba(245,248,250,1);
45
46
  border-color: rgba(225,232,237,1);
@@ -59,14 +59,18 @@
59
59
 
60
60
  /* # Colors
61
61
  ================================================== */
62
- .sidebar-dark {
63
- background: rgba(35,41,55,1);
64
- border-color: rgba(0,0,0,0.2);
65
- }
62
+ .sidebar-dark,
63
+ .sidebar-primary { border-color: rgba(0,0,0,0.2); }
64
+ .sidebar-dark { background: rgba(35,41,55,1); }
65
+ .sidebar-primary { background: $primary-color; }
66
66
  .sidebar-dark.sidebar-alt,
67
67
  .sidebar-dark > .sidebar-header,
68
- .sidebar-dark > .sidebar-scrollable { border-color: rgba(0,0,0,0.2); }
69
- .sidebar-dark > .sidebar-header > h6 { color: rgba(255,255,255,1); }
68
+ .sidebar-dark > .sidebar-scrollable,
69
+ .sidebar-primary.sidebar-alt,
70
+ .sidebar-primary > .sidebar-header,
71
+ .sidebar-primary > .sidebar-scrollable { border-color: rgba(0,0,0,0.2); }
72
+ .sidebar-dark > .sidebar-header > h6,
73
+ .sidebar-primary > .sidebar-header > h6 { color: rgba(255,255,255,1); }
70
74
  .sidebar-light {
71
75
  background: rgba(245,248,250,1);
72
76
  border-color: rgba(225,232,237,1);
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: 6.4.2
4
+ version: 6.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-18 00:00:00.000000000 Z
11
+ date: 2015-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler