bootswatch-rails 0.0.6 → 0.0.7

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/README.md CHANGED
@@ -47,6 +47,7 @@ I'm converting/updating them as time permits. Here's what's included at this poi
47
47
  * [Cyborg](http://bootswatch.com/cyborg/)
48
48
  * [Journal](http://bootswatch.com/journal/)
49
49
  * [Readable](http://bootswatch.com/readable/)
50
+ * [Simplex](http://bootswatch.com/simplex/)
50
51
  * [United](http://bootswatch.com/united/)
51
52
 
52
53
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  module Bootswatch
2
2
  module Rails
3
- VERSION = "0.0.6"
3
+ VERSION = "0.0.7"
4
4
  end
5
5
  end
@@ -0,0 +1,90 @@
1
+ // Swatch: Simplex
2
+ // Version: 2.0.2
3
+ // -----------------------------------------------------
4
+
5
+ // TYPOGRAPHY
6
+ // -----------------------------------------------------
7
+
8
+ h6 {
9
+ color: $black;
10
+ }
11
+
12
+ // NAVBAR
13
+ // -----------------------------------------------------
14
+
15
+ .navbar .brand, .subnav a {
16
+ color: $navbarText;
17
+ }
18
+
19
+ .navbar .nav .active > a,
20
+ .navbar .nav .active > a:hover {
21
+ background-color: $grayDarker;
22
+ color: $white;
23
+ }
24
+
25
+ .navbar .nav > li > a {
26
+ text-shadow: none;
27
+ &:hover {
28
+ color: $white;
29
+ background-color: rgba(255, 255, 255, 0.2);
30
+ }
31
+ }
32
+
33
+ .subnav .nav > li > a {
34
+ border-left: 0px solid white !important;
35
+ border-right: 0px solid white !important;
36
+ color: $grayDark;
37
+ }
38
+
39
+ .btn-navbar:hover {
40
+ background-color: darken($white, 20%);
41
+ background-position: 0 0;
42
+ }
43
+
44
+ // FORMS
45
+ // -----------------------------------------------------
46
+
47
+ .search-query {
48
+ border: 1px solid #CCC;
49
+ @include border-radius(2px);
50
+ }
51
+
52
+ // BUTTONS
53
+ // -----------------------------------------------------
54
+
55
+ .btn {
56
+ @include border-radius(2px);
57
+ @include gradient-vertical-three-colors($white, $white, 25%, darken($white, 10%));
58
+ }
59
+
60
+ .btn-primary {
61
+ @include buttonBackground(lighten($btnPrimaryBackground, 5%), $btnPrimaryBackground);
62
+ }
63
+
64
+ .btn-warning {
65
+ @include buttonBackground(lighten($orange, 5%), $orange);
66
+ }
67
+
68
+ .btn-danger {
69
+ @include buttonBackground(lighten($red, 5%), $red);
70
+ }
71
+
72
+ .btn-success {
73
+ @include buttonBackground(lighten($green, 5%), $green);
74
+ }
75
+
76
+ .btn-info {
77
+ @include buttonBackground(lighten(#5bc0de, 5%), #5bc0de);
78
+ }
79
+
80
+ .btn-inverse {
81
+ @include buttonBackground(lighten($purple, 5%), $purple);
82
+ }
83
+
84
+ // MISCELLANEOUS
85
+ // -----------------------------------------------------
86
+
87
+ // Make icons gray
88
+ i[class^="icon-"]{
89
+ opacity: 0.6;
90
+ }
@@ -0,0 +1,202 @@
1
+ // Variables to customize the look and feel of Bootstrap
2
+ // Swatch: Simplex
3
+ // Version: 2.0.2
4
+ // -----------------------------------------------------
5
+
6
+
7
+
8
+ // GLOBAL VALUES
9
+ // --------------------------------------------------
10
+
11
+
12
+ // Grays
13
+ // -------------------------
14
+ $black: #000;
15
+ $grayDarker: #2C2C2C;
16
+ $grayDark: #333;
17
+ $gray: #555;
18
+ $grayLight: #999;
19
+ $grayLighter: #eee;
20
+ $white: #fff;
21
+
22
+
23
+ // Accent colors
24
+ // -------------------------
25
+ $blue: #15C;
26
+ $blueDark: #043755;
27
+ $green: #3D9400;
28
+ $red: #E32C3B;
29
+ $yellow: #FFCA27;
30
+ $orange: #FF6600;
31
+ $pink: #ED2590;
32
+ $purple: #9B479F;
33
+
34
+
35
+ // Scaffolding
36
+ // -------------------------
37
+ $bodyBackground: $white;
38
+ $textColor: $black;
39
+
40
+
41
+ // Links
42
+ // -------------------------
43
+ $linkColor: #366DDC;
44
+ $linkColorHover: darken($linkColor, 15%);
45
+
46
+
47
+ // Typography
48
+ // -------------------------
49
+ $baseFontSize: 13px;
50
+ $baseFontFamily: Arial, Helvetica, sans-serif;
51
+ $baseLineHeight: 18px;
52
+ $altFontFamily: Georgia, "Times New Roman", Times, serif;
53
+
54
+ $headingsFontFamily: inherit; // empty to use BS default, $baseFontFamily
55
+ $headingsFontWeight: bold; // instead of browser default, bold
56
+ $headingsColor: inherit; // empty to use BS default, $textColor
57
+
58
+
59
+ // Tables
60
+ // -------------------------
61
+ $tableBackground: transparent; // overall background-color
62
+ $tableBackgroundAccent: #f9f9f9; // for striping
63
+ $tableBackgroundHover: #f5f5f5; // for hover
64
+ $tableBorder: #ddd; // table and cell border
65
+
66
+
67
+ // Buttons
68
+ // -------------------------
69
+ $btnBackground: $white;
70
+ $btnBackgroundHighlight: darken($white, 10%);
71
+ $btnBorder: darken($white, 20%);
72
+
73
+ $btnPrimaryBackground: $linkColor;
74
+ $btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15%);
75
+
76
+ $btnInfoBackground: #5bc0de;
77
+ $btnInfoBackgroundHighlight: #2f96b4;
78
+
79
+ $btnSuccessBackground: #62c462;
80
+ $btnSuccessBackgroundHighlight: #51a351;
81
+
82
+ $btnWarningBackground: lighten($orange, 15%);
83
+ $btnWarningBackgroundHighlight: $orange;
84
+
85
+ $btnDangerBackground: #ee5f5b;
86
+ $btnDangerBackgroundHighlight: #bd362f;
87
+
88
+ $btnInverseBackground: $gray;
89
+ $btnInverseBackgroundHighlight: $grayDarker;
90
+
91
+
92
+ // Forms
93
+ // -------------------------
94
+ $inputBackground: $white;
95
+ $inputBorder: #ccc;
96
+ $inputDisabledBackground: $grayLighter;
97
+
98
+
99
+ // Dropdowns
100
+ // -------------------------
101
+ $dropdownBackground: $white;
102
+ $dropdownBorder: rgba(0,0,0,.2);
103
+ $dropdownLinkColor: $grayDark;
104
+ $dropdownLinkColorHover: $white;
105
+ $dropdownLinkBackgroundHover: $linkColor;
106
+
107
+
108
+
109
+
110
+ // COMPONENT VARIABLES
111
+ // --------------------------------------------------
112
+
113
+ // Z-index master list
114
+ // -------------------------
115
+ // Used for a bird's eye view of components dependent on the z-axis
116
+ // Try to avoid customizing these :)
117
+ $zindexDropdown: 1000;
118
+ $zindexPopover: 1010;
119
+ $zindexTooltip: 1020;
120
+ $zindexFixedNavbar: 1030;
121
+ $zindexModalBackdrop: 1040;
122
+ $zindexModal: 1050;
123
+
124
+
125
+ // Sprite icons path
126
+ // -------------------------
127
+ $iconSpritePath: "../img/glyphicons-halflings.png";
128
+ $iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
129
+
130
+
131
+ // Input placeholder text color
132
+ // -------------------------
133
+ $placeholderText: $grayLight;
134
+
135
+
136
+ // Hr border color
137
+ // -------------------------
138
+ $hrBorder: $grayLighter;
139
+
140
+
141
+ // Navbar
142
+ // -------------------------
143
+ $navbarHeight: 40px;
144
+ $navbarBackground: $grayDarker;
145
+ $navbarBackgroundHighlight: $grayDarker;
146
+
147
+ $navbarText: #AAA;
148
+ $navbarLinkColor: $navbarText;
149
+ $navbarLinkColorHover: $gray;
150
+ $navbarLinkColorActive: $navbarLinkColorHover;
151
+ $navbarLinkBackgroundHover: transparent;
152
+ $navbarLinkBackgroundActive: $navbarBackground;
153
+
154
+ $navbarSearchBackground: lighten($navbarBackground, 25%);
155
+ $navbarSearchBackgroundFocus: $white;
156
+ $navbarSearchBorder: darken($navbarSearchBackground, 30%);
157
+ $navbarSearchPlaceholderColor: #ccc;
158
+
159
+
160
+ // Hero unit
161
+ // -------------------------
162
+ $heroUnitBackground: $grayLighter;
163
+ $heroUnitHeadingColor: inherit;
164
+ $heroUnitLeadColor: inherit;
165
+
166
+
167
+ // Form states and alerts
168
+ // -------------------------
169
+ $warningText: $orange;
170
+ $warningBackground: #fcf8e3;
171
+ $warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
172
+
173
+ $errorText: $red;
174
+ $errorBackground: #f2dede;
175
+ $errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
176
+
177
+ $successText: $green;
178
+ $successBackground: #dff0d8;
179
+ $successBorder: darken(adjust-hue($successBackground, -10), 5%);
180
+
181
+ $infoText: $blue;
182
+ $infoBackground: #d9edf7;
183
+ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
184
+
185
+
186
+
187
+
188
+ // GRID
189
+ // --------------------------------------------------
190
+
191
+ // Default 940px grid
192
+ // -------------------------
193
+ $gridColumns: 12;
194
+ $gridColumnWidth: 60px;
195
+ $gridGutterWidth: 20px;
196
+ $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
197
+
198
+
199
+ // Fluid grid
200
+ // -------------------------
201
+ $fluidGridColumnWidth: 6.382978723%;
202
+ $fluidGridGutterWidth: 2.127659574%;
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.6
4
+ version: 0.0.7
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-03-17 00:00:00.000000000 Z
12
+ date: 2012-03-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
16
- requirement: &70268190198640 !ruby/object:Gem::Requirement
16
+ requirement: &70257767417620 !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: *70268190198640
24
+ version_requirements: *70257767417620
25
25
  description: Bootswatches converted to SCSS ready to use in Rails 3 asset pipeline.
26
26
  email:
27
27
  - max@bitsonnet.com
@@ -47,6 +47,8 @@ files:
47
47
  - vendor/assets/stylesheets/bootswatch/journal/_variables.scss
48
48
  - vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss
49
49
  - vendor/assets/stylesheets/bootswatch/readable/_variables.scss
50
+ - vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss
51
+ - vendor/assets/stylesheets/bootswatch/simplex/_variables.scss
50
52
  - vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss
51
53
  - vendor/assets/stylesheets/bootswatch/united/_variables.scss
52
54
  homepage: http://github.com/maxim/bootswatch-rails