netguru_theme 0.0.1 → 0.0.2
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/README.md +13 -3
- data/app/assets/stylesheets/netguru-theme/settings/_bootstrap-overrides.scss +13 -5
- data/app/assets/stylesheets/netguru-theme/settings/_bootstrap-variables.scss +1 -1
- data/app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_glyphicons.scss +8 -0
- data/lib/netguru_theme/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f96f84049f5a7f24e9827dfacf2c007afc69f82d
|
4
|
+
data.tar.gz: f575e1c9362c13640c49744cb1cff24092dc731e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 518d885dcc7fcaef0be87dc1fda8de9f54b5e26d04293de817bdf38b463d8a844b3d4cde55e63d828b981d6247a436a15fdcc17b17f28b5f6e3aae5b83753dd1
|
7
|
+
data.tar.gz: 7593f76a5dc256f121c7a04322ebfcba10106bac8d088487800aabf6409e8d00c27b189932f45418e6574954a4153bc81f9e61d9105039a9d6bb3edda5fe20f4
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
#
|
1
|
+
# netguru_theme
|
2
|
+
[](https://gemnasium.com/netguru/netguru_theme)
|
3
|
+
[](http://badge.fury.io/rb/netguru_theme)
|
2
4
|
|
3
|
-
|
5
|
+
Bootstrap theme used across Netguru internal apps.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
@@ -18,8 +20,16 @@ Or install it yourself as:
|
|
18
20
|
|
19
21
|
## Usage
|
20
22
|
|
21
|
-
|
23
|
+
Import stylesheets:
|
24
|
+
```scss
|
25
|
+
@import 'netguru-theme';
|
26
|
+
```
|
27
|
+
and import javascripts:
|
28
|
+
```js
|
29
|
+
//= require netguru_theme
|
30
|
+
```
|
22
31
|
|
32
|
+
netguru_theme is build on top of [Twitter Bootstrap](http://getbootstrap.com/) ([bootstrap-sass](https://github.com/twbs/bootstrap-sass) gem) and includes [Bourbon](https://github.com/thoughtbot/bourbon).
|
23
33
|
## Contributing
|
24
34
|
|
25
35
|
1. Fork it ( https://github.com/netguru/netguru_theme/fork )
|
@@ -1,10 +1,18 @@
|
|
1
|
-
|
1
|
+
// Reset and dependencies
|
2
|
+
@import 'bootstrap-overrides/glyphicons';
|
3
|
+
|
4
|
+
// Core CSS
|
5
|
+
@import 'bootstrap-overrides/type';
|
6
|
+
@import 'bootstrap-overrides/forms';
|
2
7
|
@import 'bootstrap-overrides/buttons';
|
8
|
+
|
9
|
+
// Components
|
3
10
|
@import 'bootstrap-overrides/dropdowns';
|
4
|
-
@import 'bootstrap-overrides/forms';
|
5
11
|
@import 'bootstrap-overrides/input-groups';
|
12
|
+
@import 'bootstrap-overrides/navs';
|
13
|
+
@import 'bootstrap-overrides/navbar';
|
6
14
|
@import 'bootstrap-overrides/labels';
|
15
|
+
@import 'bootstrap-overrides/badges';
|
16
|
+
|
17
|
+
// Components w/ JavaScript
|
7
18
|
@import 'bootstrap-overrides/modals';
|
8
|
-
@import 'bootstrap-overrides/navbar';
|
9
|
-
@import 'bootstrap-overrides/navs';
|
10
|
-
@import 'bootstrap-overrides/type';
|
@@ -74,7 +74,7 @@ $headings-font-weight: 300;
|
|
74
74
|
//** Load fonts from this directory.
|
75
75
|
|
76
76
|
// [converter] Asset helpers such as Sprockets and Node.js Mincer do not resolve relative paths
|
77
|
-
$icon-font-path:
|
77
|
+
$icon-font-path: 'bootstrap/';
|
78
78
|
|
79
79
|
//** File name for all font files.
|
80
80
|
// $icon-font-name: "glyphicons-halflings-regular" !default;
|
@@ -0,0 +1,8 @@
|
|
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
|
+
}
|
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.
|
4
|
+
version: 0.0.2
|
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-
|
11
|
+
date: 2014-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
@@ -104,6 +104,7 @@ 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
|
107
108
|
- app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_input-groups.scss
|
108
109
|
- app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_labels.scss
|
109
110
|
- app/assets/stylesheets/netguru-theme/settings/bootstrap-overrides/_modals.scss
|