sb_internal_style 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 +7 -13
- data/app/assets/stylesheets/sb_internal_style/main.scss +8 -5
- data/lib/sb_internal_style/version.rb +1 -1
- data/sb_internal_style.gemspec +1 -0
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78a1928f0b160f7f9ead94031d9ea137ddfad4f8
|
4
|
+
data.tar.gz: 6683ff81b3d901380554bab4c70cb93cfb79a229
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d754d1d4536a6c9d7d49099663dc69486ae18e16b95f14fba093687a4e14e258223e16b73d78c1072cb4d9de1311962d184fbe9d0c924c6600545f5a1235067
|
7
|
+
data.tar.gz: 782e50c5eadac3f9438c12cd3c84181692da16137aa77c7e3099fe5575b582fb8e072513f40f9fac01367dcf5f9fa0ab01fed2f13222ac1645dbda98eb0427fb
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# Singlebrook Internal Styles
|
2
2
|
|
3
|
-
|
3
|
+
Provides styles and fonts for internal Singlebrook apps.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -12,18 +12,12 @@ And then execute:
|
|
12
12
|
|
13
13
|
$ bundle
|
14
14
|
|
15
|
-
|
15
|
+
Add to your main SCSS file:
|
16
16
|
|
17
|
-
|
17
|
+
@import 'sb_internal_style/main';
|
18
18
|
|
19
|
-
|
19
|
+
Grab an application layout from the intranet and modify it as you like.
|
20
20
|
|
21
|
-
TODO
|
21
|
+
## TODO
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
1. Fork it
|
26
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
-
5. Create new Pull Request
|
23
|
+
Provide a style guide that tells devs what classes are available.
|
@@ -10,11 +10,14 @@
|
|
10
10
|
|
11
11
|
@font-face {
|
12
12
|
font-family: 'singlebrookRegular';
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
// Using the second 'font' argument is deprecated, but we have to leave it here
|
14
|
+
// for compatibility with sass-rails 3.x. Once the intranet is on Rails 4 we can
|
15
|
+
// remove it.
|
16
|
+
src: asset-url('singlebrookrounded-webfont.eot', 'font');
|
17
|
+
src: asset-url('singlebrookrounded-webfont.eot?#iefix', 'font') format('embedded-opentype'),
|
18
|
+
asset-url('singlebrookrounded-webfont.woff', 'font') format('woff'),
|
19
|
+
asset-url('singlebrookrounded-webfont.ttf', 'font') format('truetype'),
|
20
|
+
asset-url('singlebrookrounded-webfont.svg#singlebrookRegular', 'font') format('svg');
|
18
21
|
font-weight: normal;
|
19
22
|
font-style: normal;
|
20
23
|
}
|
data/sb_internal_style.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sb_internal_style
|
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
|
- Leon Miller-Out
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: railties
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: Styling common to various SB internal apps
|
56
70
|
email:
|
57
71
|
- leon@singlebrook.com
|