netguru_theme 0.0.2 → 0.0.3

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: f96f84049f5a7f24e9827dfacf2c007afc69f82d
4
- data.tar.gz: f575e1c9362c13640c49744cb1cff24092dc731e
3
+ metadata.gz: f9a6180109b7dee0bc40b703e734f678cde682fe
4
+ data.tar.gz: 7e3a48300fd92d825027eb082a7a25d9dc59c7b8
5
5
  SHA512:
6
- metadata.gz: 518d885dcc7fcaef0be87dc1fda8de9f54b5e26d04293de817bdf38b463d8a844b3d4cde55e63d828b981d6247a436a15fdcc17b17f28b5f6e3aae5b83753dd1
7
- data.tar.gz: 7593f76a5dc256f121c7a04322ebfcba10106bac8d088487800aabf6409e8d00c27b189932f45418e6574954a4153bc81f9e61d9105039a9d6bb3edda5fe20f4
6
+ metadata.gz: 490c950fb94d5e578047b183c80789f4a0a8aade050288f88435470e160d8ef53039d907d4d9f4cd9fda86db29f93275ce17735ff0bf1e997deddfa44d785130
7
+ data.tar.gz: e83f0dd3f237d7e4d9bca8d806386a8680aa6b55b6e658569c01215c2e9e607edef6b8c73047c24446882403bf72da9f92c4eaafcfa91168d9fe6701268cb701
@@ -1,4 +1,5 @@
1
1
  @import 'bourbon';
2
+ @import 'bootstrap-sprockets';
2
3
 
3
4
  @import 'netguru-theme/settings/custom-variables';
4
5
  @import 'netguru-theme/settings/bootstrap-variables';
@@ -1,6 +1,3 @@
1
- // Reset and dependencies
2
- @import 'bootstrap-overrides/glyphicons';
3
-
4
1
  // Core CSS
5
2
  @import 'bootstrap-overrides/type';
6
3
  @import 'bootstrap-overrides/forms';
@@ -1,3 +1,8 @@
1
+ // When true, asset path helpers are used, otherwise regular url() is used
2
+ // When there no function is defined, `fn('')` is parsed as string that equals the right hand side
3
+ // NB: in Sass 3.3 there is a native function: function-exists(twbs-font-path)
4
+ $bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
5
+
1
6
  //
2
7
  // Variables
3
8
  // --------------------------------------------------
@@ -74,7 +79,7 @@ $headings-font-weight: 300;
74
79
  //** Load fonts from this directory.
75
80
 
76
81
  // [converter] Asset helpers such as Sprockets and Node.js Mincer do not resolve relative paths
77
- $icon-font-path: 'bootstrap/';
82
+ // $icon-font-path: 'fonts/bootstrap/';
78
83
 
79
84
  //** File name for all font files.
80
85
  // $icon-font-name: "glyphicons-halflings-regular" !default;
@@ -1,3 +1,3 @@
1
1
  module NetguruTheme
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netguru_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Czajka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-26 00:00:00.000000000 Z
11
+ date: 2014-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -104,7 +104,6 @@ files:
104
104
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_buttons.scss
105
105
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_dropdowns.scss
106
106
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_forms.scss
107
- - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_glyphicons.scss
108
107
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_input-groups.scss
109
108
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_labels.scss
110
109
  - app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_modals.scss
@@ -1,8 +0,0 @@
1
- @font-face {
2
- font-family: 'Glyphicons Halflings';
3
- src: font-url('#{$icon-font-path}#{$icon-font-name}.eot');
4
- src: font-url('#{$icon-font-path}#{$icon-font-name}.eot?#iefix') format('embedded-opentype'),
5
- font-url('#{$icon-font-path}#{$icon-font-name}.woff') format('woff'),
6
- font-url('#{$icon-font-path}#{$icon-font-name}.ttf') format('truetype'),
7
- font-url('#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}') format('svg');
8
- }