bootswatch-rails 0.5.0 → 3.1.1

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.
Files changed (43) hide show
  1. checksums.yaml +6 -14
  2. data/CONTRIBUTING.md +52 -0
  3. data/CONVERSION.md +6 -8
  4. data/HISTORY.md +9 -1
  5. data/README.md +6 -1
  6. data/Rakefile +3 -0
  7. data/lib/bootswatch-rails/version.rb +1 -1
  8. data/rearranges +12 -10
  9. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +109 -718
  10. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +743 -217
  11. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +78 -133
  12. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +745 -217
  13. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +113 -552
  14. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +745 -217
  15. data/vendor/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
  16. data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +620 -0
  17. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +105 -525
  18. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +745 -217
  19. data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +273 -0
  20. data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +829 -0
  21. data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +183 -452
  22. data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +747 -218
  23. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +77 -295
  24. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +745 -217
  25. data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +408 -0
  26. data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +827 -0
  27. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +149 -37
  28. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +745 -217
  29. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +84 -413
  30. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +745 -217
  31. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +251 -481
  32. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +749 -217
  33. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +87 -231
  34. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +745 -216
  35. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +168 -569
  36. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +746 -217
  37. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +21 -110
  38. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +745 -217
  39. data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +418 -0
  40. data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +827 -0
  41. metadata +17 -9
  42. data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +0 -650
  43. data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +0 -301
@@ -1,301 +0,0 @@
1
- // Spruce 2.3.2
2
- // Variables
3
- // --------------------------------------------------
4
-
5
-
6
- // Global values
7
- // --------------------------------------------------
8
-
9
-
10
- // Grays
11
- // -------------------------
12
- $black: #000 !default;
13
- $grayDarker: #222 !default;
14
- $grayDark: #333 !default;
15
- $gray: #555 !default;
16
- $grayLight: #999 !default;
17
- $grayLighter: #eee !default;
18
- $white: #fff !default;
19
-
20
-
21
- // Accent colors
22
- // -------------------------
23
- $blue: #004E8B !default;
24
- $blueDark: #013435 !default;
25
- $green: #015B4E !default;
26
- $red: #D14432 !default;
27
- $yellow: #F0F1E1 !default;
28
- $orange: #F26522 !default;
29
- $pink: #A15B66 !default;
30
- $purple: #7073CF !default;
31
-
32
-
33
- // Scaffolding
34
- // -------------------------
35
- $bodyBackground: $white !default;
36
- $textColor: $gray !default;
37
-
38
-
39
- // Links
40
- // -------------------------
41
- $linkColor: lighten($green, 10%) !default;
42
- $linkColorHover: $linkColor !default;
43
-
44
-
45
- // Typography
46
- // -------------------------
47
- $sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
48
- $serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
49
- $monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace !default;
50
-
51
- $baseFontSize: 15px !default;
52
- $baseFontFamily: $serifFontFamily !default;
53
- $baseLineHeight: 21px !default;
54
- $altFontFamily: $serifFontFamily !default;
55
-
56
- $headingsFontFamily: 'Crete Round', serif !default; // empty to use BS default, $baseFontFamily
57
- $headingsFontWeight: normal !default; // instead of browser default, bold
58
- $headingsColor: $grayDark !default; // empty to use BS default, $textColor
59
-
60
-
61
- // Component sizing
62
- // -------------------------
63
- // Based on 14px font-size and 20px line-height
64
-
65
- $fontSizeLarge: $baseFontSize * 1.25 !default; // ~18px
66
- $fontSizeSmall: $baseFontSize * 0.85 !default; // ~12px
67
- $fontSizeMini: $baseFontSize * 0.75 !default; // ~11px
68
-
69
- $paddingLarge: 11px 19px !default; // 44px
70
- $paddingSmall: 2px 10px !default; // 26px
71
- $paddingMini: 0px 6px !default; // 22px
72
-
73
- $baseBorderRadius: 4px !default;
74
- $borderRadiusLarge: 6px !default;
75
- $borderRadiusSmall: 3px !default;
76
-
77
-
78
- // Tables
79
- // -------------------------
80
- $tableBackground: lighten(#ddd, 10%) !default; // overall background-color
81
- $tableBackgroundAccent: lighten(#ddd, 5%) !default; // for striping
82
- $tableBackgroundHover: #ddd !default; // for hover
83
- $tableBorder: $grayLight !default; // table and cell border
84
-
85
- // Buttons
86
- // -------------------------
87
- $btnBackground: $white !default;
88
- $btnBackgroundHighlight: darken($white, 10%) !default;
89
- $btnBorder: darken($white, 15%) !default;
90
-
91
- $btnPrimaryBackground: lighten($green, 5%) !default;
92
- $btnPrimaryBackgroundHighlight: $green !default;
93
-
94
- $btnInfoBackground: lighten(#2f96b4, 5%) !default;
95
- $btnInfoBackgroundHighlight: #2f96b4 !default;
96
-
97
- $btnSuccessBackground: lighten($blue, 10%) !default;
98
- $btnSuccessBackgroundHighlight: lighten($blue, 5%) !default;
99
-
100
- $btnWarningBackground: lighten($orange, 5%) !default;
101
- $btnWarningBackgroundHighlight: $orange !default;
102
-
103
- $btnDangerBackground: lighten($red, 5%) !default;
104
- $btnDangerBackgroundHighlight: $red !default;
105
-
106
- $btnInverseBackground: $gray !default;
107
- $btnInverseBackgroundHighlight: darken($gray, 5%) !default;
108
-
109
-
110
- // Forms
111
- // -------------------------
112
- $inputBackground: $white !default;
113
- $inputBorder: #ccc !default;
114
- $inputBorderRadius: $baseBorderRadius !default;
115
- $inputDisabledBackground: $grayLighter !default;
116
- $formActionsBackground: transparent !default;
117
- $inputHeight: $baseLineHeight + 10px !default; // base line-height + 8px vertical padding + 2px top/bottom border
118
-
119
-
120
- // Dropdowns
121
- // -------------------------
122
- $dropdownBackground: #002425 !default;
123
- $dropdownBorder: transparent !default;
124
- $dropdownDividerTop: transparent !default;
125
- $dropdownDividerBottom: $grayLight !default;
126
-
127
- $dropdownLinkColor: $white !default;
128
- $dropdownLinkColorHover: $white !default;
129
- $dropdownLinkColorActive: $white !default;
130
-
131
- $dropdownLinkBackgroundActive: $green !default;
132
- $dropdownLinkBackgroundHover: $green !default;
133
-
134
-
135
-
136
- // COMPONENT VARIABLES
137
- // --------------------------------------------------
138
-
139
-
140
- // Z-index master list
141
- // -------------------------
142
- // Used for a bird's eye view of components dependent on the z-axis
143
- // Try to avoid customizing these :)
144
- $zindexDropdown: 1000 !default;
145
- $zindexPopover: 1010 !default;
146
- $zindexTooltip: 1030 !default;
147
- $zindexFixedNavbar: 1030 !default;
148
- $zindexModalBackdrop: 1040 !default;
149
- $zindexModal: 1050 !default;
150
-
151
-
152
- // Sprite icons path
153
- // -------------------------
154
- $iconSpritePath: image-path("glyphicons-halflings.png") !default;
155
- $iconWhiteSpritePath: image-path("glyphicons-halflings-white.png") !default;
156
-
157
-
158
- // Input placeholder text color
159
- // -------------------------
160
- $placeholderText: #ccc !default;
161
-
162
-
163
- // Hr border color
164
- // -------------------------
165
- $hrBorder: $grayLight !default;
166
-
167
-
168
- // Horizontal forms & lists
169
- // -------------------------
170
- $horizontalComponentOffset: 180px !default;
171
-
172
-
173
- // Wells
174
- // -------------------------
175
- $wellBackground: #ddd !default;
176
-
177
-
178
- // Navbar
179
- // -------------------------
180
- $navbarCollapseWidth: 979px !default;
181
- $navbarCollapseDesktopWidth: $navbarCollapseWidth + 1 !default;
182
-
183
- $navbarHeight: 55px !default;
184
- $navbarBackgroundHighlight: $blueDark !default;
185
- $navbarBackground: $blueDark !default;
186
- $navbarBorder: darken($navbarBackground, 5%) !default;
187
-
188
- $navbarText: $grayLight !default;
189
- $navbarLinkColor: $white !default;
190
- $navbarLinkColorHover: $white !default;
191
- $navbarLinkColorActive: $white !default;
192
- $navbarLinkBackgroundHover: #002425 !default;
193
- $navbarLinkBackgroundActive: $navbarLinkBackgroundHover !default;
194
-
195
- $navbarBrandColor: $navbarLinkColor !default;
196
-
197
- // Inverted navbar
198
- $navbarInverseBackground: $wellBackground !default;
199
- $navbarInverseBackgroundHighlight: lighten($wellBackground, 5%) !default;
200
- $navbarInverseBorder: darken($navbarInverseBackground, 5%) !default;
201
-
202
- $navbarInverseText: $textColor !default;
203
- $navbarInverseLinkColor: $headingsColor !default;
204
- $navbarInverseLinkColorHover: $navbarInverseLinkColor !default;
205
- $navbarInverseLinkColorActive: $navbarInverseLinkColor !default;
206
- $navbarInverseLinkBackgroundHover: darken($navbarInverseBackground, 7%) !default;
207
- $navbarInverseLinkBackgroundActive: $navbarInverseLinkBackgroundHover !default;
208
-
209
- $navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%) !default;
210
- $navbarInverseSearchBackgroundFocus: $white !default;
211
- $navbarInverseSearchBorder: $navbarInverseBackground !default;
212
- $navbarInverseSearchPlaceholderColor: $gray !default;
213
-
214
- $navbarInverseBrandColor: $navbarInverseLinkColor !default;
215
-
216
-
217
- // Pagination
218
- // -------------------------
219
- $paginationBackground: darken($bodyBackground, 10%) !default;
220
- $paginationBorder: transparent !default;
221
- $paginationActiveBackground: #A2CDB5 !default;
222
-
223
-
224
- // Hero unit
225
- // -------------------------
226
- $heroUnitBackground: #ddd !default;
227
- $heroUnitHeadingColor: $headingsColor !default;
228
- $heroUnitLeadColor: inherit !default;
229
-
230
-
231
- // Form states and alerts
232
- // -------------------------
233
- $warningText: $white !default;
234
- $warningBackground: $orange !default;
235
- $warningBorder: darken(adjust-hue($warningBackground, -10), 3%) !default;
236
-
237
- $errorText: $white !default;
238
- $errorBackground: $red !default;
239
- $errorBorder: darken(adjust-hue($errorBackground, -10), 3%) !default;
240
-
241
- $successText: $white !default;
242
- $successBackground: #24C00B !default;
243
- $successBorder: darken(adjust-hue($successBackground, -10), 5%) !default;
244
-
245
- $infoText: $white !default;
246
- $infoBackground: #185AF9 !default;
247
- $infoBorder: darken(adjust-hue($infoBackground, -10), 7%) !default;
248
-
249
-
250
- // Tooltips and popovers
251
- // -------------------------
252
- $tooltipColor: #fff !default;
253
- $tooltipBackground: #000 !default;
254
- $tooltipArrowWidth: 5px !default;
255
- $tooltipArrowColor: $tooltipBackground !default;
256
-
257
- $popoverBackground: #fff !default;
258
- $popoverArrowWidth: 10px !default;
259
- $popoverArrowColor: #fff !default;
260
- $popoverTitleBackground: $green !default;
261
-
262
- // Special enhancement for popovers
263
- $popoverArrowOuterWidth: $popoverArrowWidth + 1 !default;
264
- $popoverArrowOuterColor: rgba(0,0,0,.25) !default;
265
-
266
-
267
-
268
- // GRID
269
- // --------------------------------------------------
270
-
271
-
272
- // Default 940px grid
273
- // -------------------------
274
- $gridColumns: 12 !default;
275
- $gridColumnWidth: 60px !default;
276
- $gridGutterWidth: 20px !default;
277
- $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
278
-
279
- // 1200px min
280
- $gridColumnWidth1200: 70px !default;
281
- $gridGutterWidth1200: 30px !default;
282
- $gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1)) !default;
283
-
284
- // 768px-979px
285
- $gridColumnWidth768: 42px !default;
286
- $gridGutterWidth768: 20px !default;
287
- $gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1)) !default;
288
-
289
-
290
- // Fluid grid
291
- // -------------------------
292
- $fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth) !default;
293
- $fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth) !default;
294
-
295
- // 1200px min
296
- $fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200) !default;
297
- $fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200) !default;
298
-
299
- // 768px-979px
300
- $fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768) !default;
301
- $fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768) !default;