bootswatch-rails 0.0.12 → 0.1.0
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.
- data/.gitignore +1 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +2 -2
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +5 -0
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +389 -42
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +131 -48
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +210 -85
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +138 -56
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +163 -131
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +15 -12
- metadata +4 -4
@@ -1,10 +1,8 @@
|
|
1
1
|
// Variables to customize the look and feel of Bootstrap
|
2
2
|
// Swatch: Superhero
|
3
|
-
// Version: 2.0.
|
3
|
+
// Version: 2.0.4
|
4
4
|
// -----------------------------------------------------
|
5
5
|
|
6
|
-
|
7
|
-
|
8
6
|
// GLOBAL VALUES
|
9
7
|
// --------------------------------------------------
|
10
8
|
|
@@ -46,10 +44,14 @@ $linkColorHover: $linkColor;
|
|
46
44
|
|
47
45
|
// Typography
|
48
46
|
// -------------------------
|
47
|
+
$sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
48
|
+
$serifFontFamily: Georgia, Utopia, Palatino, 'Palatino Linotype', serif;
|
49
|
+
$monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
50
|
+
|
49
51
|
$baseFontSize: 15px;
|
50
|
-
$baseFontFamily:
|
52
|
+
$baseFontFamily: $serifFontFamily;
|
51
53
|
$baseLineHeight: 20px;
|
52
|
-
$altFontFamily:
|
54
|
+
$altFontFamily: $serifFontFamily;
|
53
55
|
|
54
56
|
$headingsFontFamily: 'Oswald', sans-serif; // empty to use BS default, $baseFontFamily
|
55
57
|
$headingsFontWeight: bold; // instead of browser default, bold
|
@@ -93,8 +95,9 @@ $btnInverseBackgroundHighlight: $grayDarker;
|
|
93
95
|
// -------------------------
|
94
96
|
$inputBackground: $white;
|
95
97
|
$inputBorder: #ccc;
|
98
|
+
$inputBorderRadius: 3px;
|
96
99
|
$inputDisabledBackground: $grayLighter;
|
97
|
-
|
100
|
+
$formActionsBackground: transparent;
|
98
101
|
|
99
102
|
// Dropdowns
|
100
103
|
// -------------------------
|
@@ -103,7 +106,8 @@ $dropdownBorder: rgba(0,0,0,0);
|
|
103
106
|
$dropdownLinkColor: $textColor;
|
104
107
|
$dropdownLinkColorHover: $white;
|
105
108
|
$dropdownLinkBackgroundHover: $linkColor;
|
106
|
-
|
109
|
+
$dropdownDividerTop: transparent;
|
110
|
+
$dropdownDividerBottom: $blue;
|
107
111
|
|
108
112
|
|
109
113
|
|
@@ -139,8 +143,8 @@ $navbarBackground: $blueDark;
|
|
139
143
|
$navbarBackgroundHighlight: $navbarBackground;
|
140
144
|
|
141
145
|
$navbarText: $grayLight;
|
142
|
-
$navbarLinkColor: $
|
143
|
-
$navbarLinkColorHover: $
|
146
|
+
$navbarLinkColor: $orange;
|
147
|
+
$navbarLinkColorHover: $orange;
|
144
148
|
$navbarLinkColorActive: $navbarLinkColorHover;
|
145
149
|
$navbarLinkBackgroundHover: transparent;
|
146
150
|
$navbarLinkBackgroundActive: $navbarBackground;
|
@@ -149,11 +153,12 @@ $navbarSearchBackground: lighten($navbarBackground, 25%);
|
|
149
153
|
$navbarSearchBackgroundFocus: $white;
|
150
154
|
$navbarSearchBorder: darken($navbarSearchBackground, 30%);
|
151
155
|
$navbarSearchPlaceholderColor: #ccc;
|
156
|
+
$navbarBrandColor: $navbarLinkColor;
|
152
157
|
|
153
158
|
|
154
159
|
// Hero unit
|
155
160
|
// -------------------------
|
156
|
-
$heroUnitBackground: $
|
161
|
+
$heroUnitBackground: $blue;
|
157
162
|
$heroUnitHeadingColor: inherit;
|
158
163
|
$heroUnitLeadColor: inherit;
|
159
164
|
|
@@ -178,7 +183,6 @@ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
|
|
178
183
|
|
179
184
|
|
180
185
|
|
181
|
-
|
182
186
|
// GRID
|
183
187
|
// --------------------------------------------------
|
184
188
|
|
@@ -189,7 +193,6 @@ $gridColumnWidth: 60px;
|
|
189
193
|
$gridGutterWidth: 20px;
|
190
194
|
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
|
191
195
|
|
192
|
-
|
193
196
|
// Fluid grid
|
194
197
|
// -------------------------
|
195
198
|
$fluidGridColumnWidth: 6.382978723%;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootswatch-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-10-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
16
|
-
requirement: &
|
16
|
+
requirement: &70185214296560 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '3.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70185214296560
|
25
25
|
description: Bootswatches converted to SCSS ready to use in Rails 3 asset pipeline.
|
26
26
|
email:
|
27
27
|
- max@bitsonnet.com
|