less-rails-bootswatch 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
data/README.md
CHANGED
@@ -8,22 +8,29 @@ This gem depends on following:
|
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
11
|
-
Add this
|
11
|
+
Add this lines to your application's Gemfile:
|
12
12
|
|
13
|
-
|
13
|
+
```ruby
|
14
|
+
group :assets do
|
15
|
+
gem 'therubyracer'
|
16
|
+
gem 'less-rails'
|
17
|
+
gem 'less-rails-bootstrap'
|
18
|
+
gem 'less-rails-bootswatch'
|
19
|
+
end
|
20
|
+
```
|
14
21
|
|
15
22
|
And then execute:
|
16
23
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
$ gem install less-rails-bootswatch
|
24
|
+
```
|
25
|
+
$ bundle
|
26
|
+
```
|
22
27
|
|
23
28
|
## Usage
|
24
29
|
|
25
30
|
Add this line to your LESS file:
|
26
31
|
|
27
|
-
|
28
|
-
|
29
|
-
|
32
|
+
```css
|
33
|
+
@import "twitter/bootstrap";
|
34
|
+
@import "bootswatch/cerulean/bootswatch";
|
35
|
+
@import "bootswatch/cerulean/variables";
|
36
|
+
```
|
@@ -158,7 +158,7 @@
|
|
158
158
|
@navbarSearchBackground: lighten(@navbarBackground, 25%);
|
159
159
|
@navbarSearchBackgroundFocus: @white;
|
160
160
|
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
161
|
-
@navbarSearchPlaceholderColor:
|
161
|
+
@navbarSearchPlaceholderColor: @white;
|
162
162
|
@navbarBrandColor: @navbarLinkColor;
|
163
163
|
|
164
164
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: less-rails-bootswatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: less-rails-bootstrap
|