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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47b7785140724be7de9ec11557340a8167cafe77
4
- data.tar.gz: f96cb48455880774a26478ead491872743b3b1e3
3
+ metadata.gz: e37e757b01b9860b85fe5d0dd1d3402eb66d4b1a
4
+ data.tar.gz: 70954357b4cbe59bc51d852480303cb57ba451fd
5
5
  SHA512:
6
- metadata.gz: 0d8342332f91a7707df8072d0de96ad15af6f818bdaa8578cc33c4fb6222a9f54b7481cffed28cdc7c29dc73c47cab34aba3ed14a09076ded33bcb3c1ba16092
7
- data.tar.gz: eeea2f2be55cd2fb53be3ffbb8773011879439cbfa1037d3103b63fb39ff11563043e409ddfa1a8671ff1bb1d9828242bd0f6b93d0baa6369d02128422f078ce
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
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(30,40,52,#{opacity})", hex: '#1E2834' },
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,84,#{opacity})", hex: '#304054' },
9
- dark_gray: { rgba: "rgba(109,126,150,#{opacity})", hex: '#6D7E96' },
10
- gray: { rgba: "rgba(132,146,166,#{opacity})", hex: '#8492A6' },
11
- light_gray: { rgba: "rgba(155,166,182,#{opacity})", hex: '#9BA6B6' },
12
- dark_haze: { rgba: "rgba(227,232,240,#{opacity})", hex: '#E0E5ED' },
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' },
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = '14.0.35'.freeze
2
+ VERSION = '14.0.36'.freeze
3
3
  end
@@ -20,7 +20,7 @@
20
20
  colors: [
21
21
  '#9ABF5B', '#32C251', '#37BAD4', '#247EEC', '#7E61EA',
22
22
  '#AD65E4', '#F15D79', '#DD3D3F', '#EA8532', '#F2CB24',
23
- '#273444', '#8492A6', '#EEF0F6', '#FFFFFF'
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-toggle="tooltip"]').each(function () {
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-toggle="tooltip"]', function (e) {
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: [119,136,153],
1335
- lightslategrey: [119,136,153],
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(227,232,240,1)',
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(227,232,240,1)',
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(227,232,240,1)',
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(30,40,52,1),
50
+ 'dark-black': rgba(32,42,58,1),
51
51
  'black': rgba(39,52,68,1),
52
- 'light-black': rgba(48,64,84,1),
53
- 'dark-gray': rgba(109,126,150,1),
54
- 'gray': rgba(132,146,166,1),
55
- 'light-gray': rgba(155,166,182,1),
56
- 'dark-haze': rgba(227,232,240,1),
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
- background: color(primary);
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); }
@@ -24,6 +24,7 @@ $font-headings: h1, h2, h3, h4, h5, h6;
24
24
  $name: nth(map-keys($font-sizes), $i);
25
25
 
26
26
  #{$heading} {
27
+ font-family: text-family(display);
27
28
  font-size: text-size($name);
28
29
  font-weight: text-weight(semibold);
29
30
  line-height: text-line-height($name);
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.35
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-09 00:00:00.000000000 Z
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