active_frontend 14.0.35 → 14.0.36
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/.DS_Store +0 -0
- data/app/.DS_Store +0 -0
- data/app/assets/.DS_Store +0 -0
- data/app/assets/fonts/.DS_Store +0 -0
- data/app/assets/fonts/branding/branding-bold.woff +0 -0
- data/app/assets/fonts/branding/branding-normal.woff +0 -0
- data/app/assets/fonts/branding/branding-semibold.woff +0 -0
- data/app/assets/fonts/branding/branding-semilight.woff +0 -0
- data/app/helpers/active_frontend_helper.rb +6 -6
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/javascripts/base/_colorpicker.js +1 -1
- data/vendor/assets/javascripts/base/_tooltip.js +2 -2
- data/vendor/assets/javascripts/extensions/_chart.js +5 -5
- data/vendor/assets/stylesheets/_variable.scss +7 -6
- data/vendor/assets/stylesheets/blocks/_font.scss +11 -0
- data/vendor/assets/stylesheets/blocks/_reset.scss +2 -8
- data/vendor/assets/stylesheets/blocks/_typography.scss +1 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e37e757b01b9860b85fe5d0dd1d3402eb66d4b1a
|
4
|
+
data.tar.gz: 70954357b4cbe59bc51d852480303cb57ba451fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 684877c04b6b24ef34082c60569c2288c5d59f13f2bf4f6ac50664a647316f69dce548d74822b7c84225fbaec59911567efa995b11cfa99a09fefb6c3882f05d
|
7
|
+
data.tar.gz: 8b199cd83da62eec8ea6635815c6e6f6e848d92447cbfa75c4b0c465df2b2d6a2e9fe4f30fdad486c27dd09b321069e6ab88005379af213598b09339800ee77d
|
data/.DS_Store
CHANGED
Binary file
|
data/app/.DS_Store
CHANGED
Binary file
|
data/app/assets/.DS_Store
CHANGED
Binary file
|
data/app/assets/fonts/.DS_Store
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -3,13 +3,13 @@ module ActiveFrontendHelper
|
|
3
3
|
def colors(opacity = 1)
|
4
4
|
{
|
5
5
|
transparent: { rgba: "rgba(0,0,0,0)", hex: '#FFFFFF' },
|
6
|
-
dark_black: { rgba: "rgba(
|
6
|
+
dark_black: { rgba: "rgba(32,42,58,#{opacity})", hex: '#202A3A' },
|
7
7
|
black: { rgba: "rgba(39,52,68,#{opacity})", hex: '#273444' },
|
8
|
-
light_black: { rgba: "rgba(48,64,
|
9
|
-
dark_gray: { rgba: "rgba(
|
10
|
-
gray: { rgba: "rgba(
|
11
|
-
light_gray: { rgba: "rgba(
|
12
|
-
dark_haze: { rgba: "rgba(
|
8
|
+
light_black: { rgba: "rgba(48,64,80,#{opacity})", hex: '#304050' },
|
9
|
+
dark_gray: { rgba: "rgba(108,126,144,#{opacity})", hex: '#6C7E90' },
|
10
|
+
gray: { rgba: "rgba(130,146,164,#{opacity})", hex: '#8292A4' },
|
11
|
+
light_gray: { rgba: "rgba(153,166,181,#{opacity})", hex: '#99A6B5' },
|
12
|
+
dark_haze: { rgba: "rgba(228,231,238,#{opacity})", hex: '#E4E7EE' },
|
13
13
|
haze: { rgba: "rgba(238,240,246,#{opacity})", hex: '#EEF0F6' },
|
14
14
|
light_haze: { rgba: "rgba(249,250,252,#{opacity})", hex: '#F9FAFC' },
|
15
15
|
white: { rgba: "rgba(255,255,255,#{opacity})", hex: '#FFFFFF' },
|
@@ -20,7 +20,7 @@
|
|
20
20
|
colors: [
|
21
21
|
'#9ABF5B', '#32C251', '#37BAD4', '#247EEC', '#7E61EA',
|
22
22
|
'#AD65E4', '#F15D79', '#DD3D3F', '#EA8532', '#F2CB24',
|
23
|
-
'#273444', '#
|
23
|
+
'#273444', '#8292A4', '#EEF0F6', '#FFFFFF'
|
24
24
|
],
|
25
25
|
item: '<li><button type="button"></button></li>',
|
26
26
|
menu: '<ul class="colorpicker dropmenu caret"></ul>'
|
@@ -517,12 +517,12 @@
|
|
517
517
|
// ================
|
518
518
|
|
519
519
|
$(document).on('ready.bs.tooltip.data-api', function () {
|
520
|
-
$('[data-
|
520
|
+
$('[data-hover="tooltip"]').each(function () {
|
521
521
|
var $this = $(this);
|
522
522
|
if ($this.data('tooltip')) return;
|
523
523
|
Plugin.call($this, $this.data());
|
524
524
|
});
|
525
|
-
}).on('hover.bs.tooltip.data-api', '[data-
|
525
|
+
}).on('hover.bs.tooltip.data-api', '[data-hover="tooltip"]', function (e) {
|
526
526
|
var $this = $(this);
|
527
527
|
if ($this.data('tooltip')) return;
|
528
528
|
Plugin.call($this, $this.data());
|
@@ -1331,8 +1331,8 @@ var cssKeywords = {
|
|
1331
1331
|
lightsalmon: [255,160,122],
|
1332
1332
|
lightseagreen: [32,178,170],
|
1333
1333
|
lightskyblue: [135,206,250],
|
1334
|
-
lightslategray: [
|
1335
|
-
lightslategrey: [
|
1334
|
+
lightslategray: [130,146,164],
|
1335
|
+
lightslategrey: [130,146,164],
|
1336
1336
|
lightsteelblue: [176,196,222],
|
1337
1337
|
lightyellow: [255,255,224],
|
1338
1338
|
lime: [0,255,0],
|
@@ -6138,14 +6138,14 @@ module.exports = function (Chart) {
|
|
6138
6138
|
position: 'left',
|
6139
6139
|
gridLines: {
|
6140
6140
|
display: true,
|
6141
|
-
color: 'rgba(
|
6141
|
+
color: 'rgba(228,231,238,1)',
|
6142
6142
|
lineWidth: 1,
|
6143
6143
|
drawBorder: true,
|
6144
6144
|
drawOnChartArea: true,
|
6145
6145
|
drawTicks: true,
|
6146
6146
|
tickMarkLength: 10,
|
6147
6147
|
zeroLineWidth: 1,
|
6148
|
-
zeroLineColor: 'rgba(
|
6148
|
+
zeroLineColor: 'rgba(228,231,238,1)',
|
6149
6149
|
offsetGridLines: false
|
6150
6150
|
},
|
6151
6151
|
scaleLabel: {
|
@@ -8681,7 +8681,7 @@ module.exports = function (Chart) {
|
|
8681
8681
|
position: 'chartArea',
|
8682
8682
|
angleLines: {
|
8683
8683
|
display: true,
|
8684
|
-
color: 'rgba(
|
8684
|
+
color: 'rgba(228,231,238,1)',
|
8685
8685
|
lineWidth: 1
|
8686
8686
|
},
|
8687
8687
|
ticks: {
|
@@ -47,13 +47,13 @@ $colors-brand: (
|
|
47
47
|
);
|
48
48
|
$colors-grayscale: (
|
49
49
|
'transparent': rgba(0,0,0,0),
|
50
|
-
'dark-black': rgba(
|
50
|
+
'dark-black': rgba(32,42,58,1),
|
51
51
|
'black': rgba(39,52,68,1),
|
52
|
-
'light-black': rgba(48,64,
|
53
|
-
'dark-gray': rgba(
|
54
|
-
'gray': rgba(
|
55
|
-
'light-gray': rgba(
|
56
|
-
'dark-haze': rgba(
|
52
|
+
'light-black': rgba(48,64,80,1),
|
53
|
+
'dark-gray': rgba(108,126,144,1),
|
54
|
+
'gray': rgba(130,146,164,1),
|
55
|
+
'light-gray': rgba(153,166,181,1),
|
56
|
+
'dark-haze': rgba(228,231,238,1),
|
57
57
|
'haze': rgba(238,240,246,1),
|
58
58
|
'light-haze': rgba(249,250,252,1),
|
59
59
|
'white': rgba(255,255,255,1)
|
@@ -94,6 +94,7 @@ $common-visibility-types: collapse, hidden, visible;
|
|
94
94
|
// Font
|
95
95
|
// ==================================================
|
96
96
|
$font-families: (
|
97
|
+
display: ('Branding', Verdana, Tahoma, sans-serif),
|
97
98
|
monospace: (Courier, Consolas, Menlo, Monaco, monospace),
|
98
99
|
sans-serif: ('Fakt Soft Pro', Verdana, Tahoma, sans-serif),
|
99
100
|
serif: (Georgia, 'Times New Roman', serif)
|
@@ -4,6 +4,17 @@
|
|
4
4
|
|
5
5
|
// Font-face
|
6
6
|
// ==================================================
|
7
|
+
@if index(text-family(display), 'Branding') {
|
8
|
+
@each $name, $weight in $font-weights {
|
9
|
+
@font-face {
|
10
|
+
font-display: swap;
|
11
|
+
font-family: 'Branding';
|
12
|
+
font-style: normal;
|
13
|
+
font-weight: $weight;
|
14
|
+
src: url(font-path('branding/branding-#{$name}.woff')) format('woff');
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
7
18
|
@if index(text-family(sans-serif), 'Fakt Pro') {
|
8
19
|
@each $name, $weight in $font-weights {
|
9
20
|
@font-face {
|
@@ -169,11 +169,5 @@ body {
|
|
169
169
|
text-decoration: none;
|
170
170
|
text-transform: none;
|
171
171
|
}
|
172
|
-
::-moz-selection {
|
173
|
-
|
174
|
-
color: color(white);
|
175
|
-
}
|
176
|
-
::selection {
|
177
|
-
background: color(primary);
|
178
|
-
color: color(white);
|
179
|
-
}
|
172
|
+
::-moz-selection { background: transparentize(color(primary), 0.85); }
|
173
|
+
::selection { background: transparentize(color(primary), 0.85); }
|
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.0.
|
4
|
+
version: 14.0.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-12-
|
11
|
+
date: 2016-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -162,6 +162,10 @@ files:
|
|
162
162
|
- app/.DS_Store
|
163
163
|
- app/assets/.DS_Store
|
164
164
|
- app/assets/fonts/.DS_Store
|
165
|
+
- app/assets/fonts/branding/branding-bold.woff
|
166
|
+
- app/assets/fonts/branding/branding-normal.woff
|
167
|
+
- app/assets/fonts/branding/branding-semibold.woff
|
168
|
+
- app/assets/fonts/branding/branding-semilight.woff
|
165
169
|
- app/assets/fonts/dripicons/.DS_Store
|
166
170
|
- app/assets/fonts/dripicons/dripicons-weather.woff
|
167
171
|
- app/assets/fonts/dripicons/dripicons.woff
|