oulu-rails 0.5.29 → 0.5.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/oulu-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/options/web-fonts/_inconsolata.sass +12 -0
- data/vendor/assets/stylesheets/options/web-fonts/_vt323.sass +12 -0
- data/vendor/assets/stylesheets/settings/mixins/_balloon-tail.sass +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6b3dcbd265d0bfe1ed252ded558fae49452b1fa
|
4
|
+
data.tar.gz: 231533b09eaa8367cfd5650ed9e693b638830212
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6150f6b52754bdae15c9ed845b4065cc1e3d44adb3e32e3b4fda71f737afaf5e07e6b060c65f84954863a97f4cb8f1d938e54cd2710667fe7a2bab1b760a22f4
|
7
|
+
data.tar.gz: 45b6f6134579ccbc1f3328d783298b3f4b40bd163dd3c215ca34caf49116e2318b246e7dae185abb40f7f7ba8520fe2ebdbbda33040a926ddc4e7591c00d7cd6
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
oulu-rails
|
2
2
|
==========
|
3
3
|
|
4
|
-
|
4
|
+
A mixin library for Sass.
|
5
5
|
|
6
6
|
Docs
|
7
7
|
----
|
@@ -11,9 +11,9 @@ Docs
|
|
11
11
|
Installation
|
12
12
|
------------
|
13
13
|
|
14
|
-
- Add `
|
15
|
-
- `$ bundle`
|
16
|
-
- Add `@import oulu`
|
14
|
+
- Add `'gem 'oulu-rails' ` to your Gemfile.
|
15
|
+
- `$ bundle install`
|
16
|
+
- Add `@import oulu` to `app/assets/stylesheets/application.css.sass`
|
17
17
|
|
18
18
|
Contributing
|
19
19
|
------------
|
data/lib/oulu-rails/version.rb
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
@import url(//fonts.googleapis.com/css?family=Inconsolata:400,700)
|
2
|
+
|
3
|
+
=inconsolata($fw: 400, $ls: 0, $fs: null, $tx-rendering: true)
|
4
|
+
// $fw: フォントの太さ, $ls: 字間, $fs: フォントスタイル
|
5
|
+
font-family: 'Inconsolata', monospace
|
6
|
+
font-weight: $fw
|
7
|
+
@if not $ls == 0
|
8
|
+
letter-spacing: $ls
|
9
|
+
@if (not $fs == null)
|
10
|
+
font-style: italic
|
11
|
+
@if $tx-rendering
|
12
|
+
text-rendering: optimizelegibility
|
@@ -0,0 +1,12 @@
|
|
1
|
+
@import url(//fonts.googleapis.com/css?family=VT323)
|
2
|
+
|
3
|
+
=inconsolata($fw: 400, $ls: 0, $fs: null, $tx-rendering: true)
|
4
|
+
// $fw: フォントの太さ, $ls: 字間, $fs: フォントスタイル
|
5
|
+
font-family: 'VT323', monospace
|
6
|
+
font-weight: $fw
|
7
|
+
@if not $ls == 0
|
8
|
+
letter-spacing: $ls
|
9
|
+
@if (not $fs == null)
|
10
|
+
font-style: italic
|
11
|
+
@if $tx-rendering
|
12
|
+
text-rendering: optimizelegibility
|
@@ -83,7 +83,7 @@
|
|
83
83
|
// tail border があるとき - 以下 tail-border の設定
|
84
84
|
&:before
|
85
85
|
$tail-width: round($tail-width + $parent-boder-width*2)/2
|
86
|
-
$tail-height: round($tail-height + $parent-boder-width)
|
86
|
+
$tail-height: round($tail-height + $parent-boder-width*4)
|
87
87
|
$tail-color: $tail-border-color
|
88
88
|
+balloon-tail-setting($tail-direction, $tail-color)
|
89
89
|
@if position_vertical($tail-direction)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oulu-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- machida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass-rails
|
@@ -224,6 +224,7 @@ files:
|
|
224
224
|
- vendor/assets/stylesheets/options/web-fonts/_cousine.sass
|
225
225
|
- vendor/assets/stylesheets/options/web-fonts/_font-awsome.sass
|
226
226
|
- vendor/assets/stylesheets/options/web-fonts/_icomoon.sass
|
227
|
+
- vendor/assets/stylesheets/options/web-fonts/_inconsolata.sass
|
227
228
|
- vendor/assets/stylesheets/options/web-fonts/_lato.sass
|
228
229
|
- vendor/assets/stylesheets/options/web-fonts/_montserrat.sass
|
229
230
|
- vendor/assets/stylesheets/options/web-fonts/_old-standard.sass
|
@@ -239,6 +240,7 @@ files:
|
|
239
240
|
- vendor/assets/stylesheets/options/web-fonts/_tauri.sass
|
240
241
|
- vendor/assets/stylesheets/options/web-fonts/_ubuntu-mono.sass
|
241
242
|
- vendor/assets/stylesheets/options/web-fonts/_ubuntu.sass
|
243
|
+
- vendor/assets/stylesheets/options/web-fonts/_vt323.sass
|
242
244
|
- vendor/assets/stylesheets/settings/functions/_animation.sass
|
243
245
|
- vendor/assets/stylesheets/settings/functions/_background.sass
|
244
246
|
- vendor/assets/stylesheets/settings/functions/_bool.sass
|