less-rails-bootswatch 0.3.2 → 0.3.3
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/lib/less/rails/bootswatch/version.rb +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/amelia/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/amelia/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/cerulean/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/cerulean/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/cyborg/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/cyborg/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/default/variables.less +10 -10
- data/vendor/frameworks/stylesheets/bootswatch/journal/bootswatch.less +6 -3
- data/vendor/frameworks/stylesheets/bootswatch/journal/variables.less +2 -2
- data/vendor/frameworks/stylesheets/bootswatch/readable/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/readable/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/simplex/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/simplex/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/slate/bootswatch.less +5 -1
- data/vendor/frameworks/stylesheets/bootswatch/slate/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/spacelab/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/spacelab/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/spruce/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/spruce/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/superhero/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/superhero/variables.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/united/bootswatch.less +1 -1
- data/vendor/frameworks/stylesheets/bootswatch/united/variables.less +1 -1
- metadata +2 -2
@@ -1,7 +1,5 @@
|
|
1
1
|
//
|
2
2
|
// Variables
|
3
|
-
// Swatch:
|
4
|
-
// Version: 2.1.0
|
5
3
|
// --------------------------------------------------
|
6
4
|
|
7
5
|
|
@@ -59,7 +57,6 @@
|
|
59
57
|
@headingsFontWeight: bold; // instead of browser default, bold
|
60
58
|
@headingsColor: inherit; // empty to use BS default, @textColor
|
61
59
|
|
62
|
-
|
63
60
|
// Tables
|
64
61
|
// -------------------------
|
65
62
|
@tableBackground: transparent; // overall background-color
|
@@ -67,7 +64,6 @@
|
|
67
64
|
@tableBackgroundHover: #f5f5f5; // for hover
|
68
65
|
@tableBorder: #ddd; // table and cell border
|
69
66
|
|
70
|
-
|
71
67
|
// Buttons
|
72
68
|
// -------------------------
|
73
69
|
@btnBackground: @white;
|
@@ -109,12 +105,11 @@
|
|
109
105
|
@dropdownDividerBottom: @white;
|
110
106
|
|
111
107
|
@dropdownLinkColor: @grayDark;
|
112
|
-
|
113
108
|
@dropdownLinkColorHover: @white;
|
114
|
-
@dropdownLinkBackgroundHover: @dropdownLinkBackgroundActive;
|
115
|
-
|
116
109
|
@dropdownLinkColorActive: @dropdownLinkColor;
|
110
|
+
|
117
111
|
@dropdownLinkBackgroundActive: @linkColor;
|
112
|
+
@dropdownLinkBackgroundHover: @dropdownLinkBackgroundActive;
|
118
113
|
|
119
114
|
|
120
115
|
|
@@ -149,6 +144,11 @@
|
|
149
144
|
@hrBorder: @grayLighter;
|
150
145
|
|
151
146
|
|
147
|
+
// Horizontal forms & lists
|
148
|
+
// -------------------------
|
149
|
+
@horizontalComponentOffset: 180px;
|
150
|
+
|
151
|
+
|
152
152
|
// Wells
|
153
153
|
// -------------------------
|
154
154
|
@wellBackground: #f5f5f5;
|
@@ -159,12 +159,12 @@
|
|
159
159
|
@navbarCollapseWidth: 979px;
|
160
160
|
|
161
161
|
@navbarHeight: 40px;
|
162
|
-
@navbarBackground: darken(@navbarBackgroundHighlight, 5%);
|
163
162
|
@navbarBackgroundHighlight: #ffffff;
|
163
|
+
@navbarBackground: darken(@navbarBackgroundHighlight, 5%);
|
164
164
|
@navbarBorder: darken(@navbarBackground, 12%);
|
165
165
|
|
166
|
-
@navbarText:
|
167
|
-
@navbarLinkColor:
|
166
|
+
@navbarText: #777;
|
167
|
+
@navbarLinkColor: #777;
|
168
168
|
@navbarLinkColorHover: @grayDark;
|
169
169
|
@navbarLinkColorActive: @gray;
|
170
170
|
@navbarLinkBackgroundHover: transparent;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// Bootswatch.less
|
2
2
|
// Swatch: Journal
|
3
|
-
// Version: 2.1.
|
3
|
+
// Version: 2.1.1
|
4
4
|
// -----------------------------------------------------
|
5
5
|
|
6
6
|
// TYPOGRAPHY
|
@@ -10,7 +10,8 @@
|
|
10
10
|
|
11
11
|
h1, h2, h3, h4, h5, h6 {
|
12
12
|
|
13
|
-
|
13
|
+
margin: 0 0 10px;
|
14
|
+
line-height: 1.2;
|
14
15
|
|
15
16
|
a {
|
16
17
|
color: @headingsColor;
|
@@ -263,12 +264,14 @@ legend {
|
|
263
264
|
}
|
264
265
|
|
265
266
|
.hero-unit {
|
267
|
+
padding: 30px 60px;
|
266
268
|
border: 1px solid rgba(0,0,0,.05);
|
267
269
|
.border-radius(0);
|
268
270
|
.box-shadow(none);
|
269
271
|
|
270
272
|
h1 {
|
271
|
-
|
273
|
+
margin: 0 0 10px;
|
274
|
+
line-height: 1.2;
|
272
275
|
}
|
273
276
|
}
|
274
277
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
//
|
2
2
|
// Variables
|
3
3
|
// Swatch: Journal
|
4
|
-
// Version: 2.1.
|
4
|
+
// Version: 2.1.1
|
5
5
|
// --------------------------------------------------
|
6
6
|
|
7
7
|
|
@@ -13,7 +13,7 @@
|
|
13
13
|
// -------------------------
|
14
14
|
@black: #000;
|
15
15
|
@grayDarker: #222;
|
16
|
-
@grayDark: #
|
16
|
+
@grayDark: #777;
|
17
17
|
@gray: #999;
|
18
18
|
@grayLight: #bbb;
|
19
19
|
@grayLighter: #eee;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// Bootswatch.less
|
2
2
|
// Swatch: Slate
|
3
|
-
// Version: 2.1.
|
3
|
+
// Version: 2.1.1
|
4
4
|
// -----------------------------------------------------
|
5
5
|
|
6
6
|
// TYPOGRAPHY
|
@@ -437,6 +437,10 @@ textarea[readonly] {
|
|
437
437
|
background-color: transparent;
|
438
438
|
}
|
439
439
|
|
440
|
+
.dropdown-submenu > a::after {
|
441
|
+
border-left-color: @white;
|
442
|
+
}
|
443
|
+
|
440
444
|
// ALERTS, LABELS, BADGES
|
441
445
|
// -----------------------------------------------------
|
442
446
|
|
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.3.
|
4
|
+
version: 0.3.3
|
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-09-
|
12
|
+
date: 2012-09-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: less-rails-bootstrap
|