railstrap 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/helpers/railstrap/application_helper.rb +260 -0
  5. data/config/routes.rb +2 -0
  6. data/lib/generators/railstrap/crud/USAGE +8 -0
  7. data/lib/generators/railstrap/crud/crud_generator.rb +160 -0
  8. data/lib/generators/railstrap/crud/templates/controller.rb +109 -0
  9. data/lib/generators/railstrap/crud/templates/view_edit.html.erb +12 -0
  10. data/lib/generators/railstrap/crud/templates/view_form.html.erb +18 -0
  11. data/lib/generators/railstrap/crud/templates/view_index.html.erb +11 -0
  12. data/lib/generators/railstrap/crud/templates/view_new.html.erb +12 -0
  13. data/lib/generators/railstrap/crud/templates/view_print.html.erb +13 -0
  14. data/lib/generators/railstrap/crud/templates/view_show.html.erb +14 -0
  15. data/lib/generators/railstrap/crud/templates/view_sidebar.html.erb +13 -0
  16. data/lib/generators/railstrap/crud/templates/view_signin.html.erb +36 -0
  17. data/lib/generators/railstrap/crud/templates/view_signup.html.erb +52 -0
  18. data/lib/generators/railstrap/crud/templates/view_text.html.erb +18 -0
  19. data/lib/generators/railstrap/install/install_generator.rb +74 -0
  20. data/lib/generators/railstrap/kaminari/templates/_first_page.html.erb +14 -0
  21. data/lib/generators/railstrap/kaminari/templates/_gap.html.erb +8 -0
  22. data/lib/generators/railstrap/kaminari/templates/_last_page.html.erb +14 -0
  23. data/lib/generators/railstrap/kaminari/templates/_next_page.html.erb +13 -0
  24. data/lib/generators/railstrap/kaminari/templates/_page.html.erb +12 -0
  25. data/lib/generators/railstrap/kaminari/templates/_paginator.html.erb +25 -0
  26. data/lib/generators/railstrap/kaminari/templates/_prev_page.html.erb +13 -0
  27. data/lib/generators/railstrap/layout/layout_generator.rb +30 -0
  28. data/lib/generators/railstrap/layout/templates/layout_railstrap.html.erb +134 -0
  29. data/lib/generators/railstrap/layout/templates/railstrap_painel.css.scss.erb +284 -0
  30. data/lib/generators/railstrap/layout/templates/railstrap_painel.js.erb +35 -0
  31. data/lib/railstrap.rb +9 -0
  32. data/lib/railstrap/action_controller.rb +29 -0
  33. data/lib/railstrap/active_record.rb +8 -0
  34. data/lib/railstrap/active_record/search.rb +52 -0
  35. data/lib/railstrap/engine.rb +29 -0
  36. data/lib/railstrap/version.rb +3 -0
  37. data/lib/tasks/railstrap_tasks.rake +4 -0
  38. data/test/dummy/README.rdoc +261 -0
  39. data/test/dummy/Rakefile +7 -0
  40. data/test/dummy/app/assets/javascripts/application.js +15 -0
  41. data/test/dummy/app/assets/javascripts/railstrap_painel.js +35 -0
  42. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  43. data/test/dummy/app/assets/stylesheets/railstrap_painel.css.scss +284 -0
  44. data/test/dummy/app/controllers/application_controller.rb +7 -0
  45. data/test/dummy/app/controllers/painel/authors_controller.rb +84 -0
  46. data/test/dummy/app/helpers/application_helper.rb +2 -0
  47. data/test/dummy/app/models/article.rb +3 -0
  48. data/test/dummy/app/models/author.rb +3 -0
  49. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  50. data/test/dummy/app/views/layouts/painel.html.erb +135 -0
  51. data/test/dummy/app/views/painel/authors/_form.html.erb +20 -0
  52. data/test/dummy/app/views/painel/authors/edit.html.erb +12 -0
  53. data/test/dummy/app/views/painel/authors/index.html.erb +12 -0
  54. data/test/dummy/app/views/painel/authors/new.html.erb +12 -0
  55. data/test/dummy/app/views/painel/authors/show.html.erb +14 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/config/application.rb +56 -0
  58. data/test/dummy/config/boot.rb +10 -0
  59. data/test/dummy/config/database.yml +25 -0
  60. data/test/dummy/config/environment.rb +5 -0
  61. data/test/dummy/config/environments/development.rb +37 -0
  62. data/test/dummy/config/environments/production.rb +67 -0
  63. data/test/dummy/config/environments/test.rb +37 -0
  64. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/test/dummy/config/initializers/inflections.rb +15 -0
  66. data/test/dummy/config/initializers/mime_types.rb +5 -0
  67. data/test/dummy/config/initializers/secret_token.rb +7 -0
  68. data/test/dummy/config/initializers/session_store.rb +8 -0
  69. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  70. data/test/dummy/config/locales/en.yml +5 -0
  71. data/test/dummy/config/routes.rb +65 -0
  72. data/test/dummy/db/development.sqlite3 +0 -0
  73. data/test/dummy/db/migrate/20120604170000_create_articles.rb +12 -0
  74. data/test/dummy/db/migrate/20120604170057_create_authors.rb +10 -0
  75. data/test/dummy/db/schema.rb +31 -0
  76. data/test/dummy/log/development.log +3278 -0
  77. data/test/dummy/public/404.html +26 -0
  78. data/test/dummy/public/422.html +26 -0
  79. data/test/dummy/public/500.html +25 -0
  80. data/test/dummy/public/favicon.ico +0 -0
  81. data/test/dummy/script/rails +6 -0
  82. data/test/dummy/test/fixtures/articles.yml +13 -0
  83. data/test/dummy/test/fixtures/authors.yml +9 -0
  84. data/test/dummy/test/unit/article_test.rb +7 -0
  85. data/test/dummy/test/unit/author_test.rb +7 -0
  86. data/test/dummy/tmp/cache/assets/C86/B70/sprockets%2Fcd9a89973c62604382628d4b42365c1a +0 -0
  87. data/test/dummy/tmp/cache/assets/CB3/120/sprockets%2F0725460776a8a901aa58b85f4cce5456 +0 -0
  88. data/test/dummy/tmp/cache/assets/CDD/EE0/sprockets%2F7ab399ca754638905a70e366e1c1ab33 +0 -0
  89. data/test/dummy/tmp/cache/assets/CE2/EE0/sprockets%2Fd78ec4726951f44cb085d0db080960e3 +0 -0
  90. data/test/dummy/tmp/cache/assets/D09/2B0/sprockets%2F045947e6b2bba2ff33c67b51b63734a6 +0 -0
  91. data/test/dummy/tmp/cache/assets/D0B/A40/sprockets%2F241cecf5326c934ab0440a7c76ad7597 +0 -0
  92. data/test/dummy/tmp/cache/assets/D1D/870/sprockets%2Fa9e5ee43f30c1886f8d66c413395bd63 +0 -0
  93. data/test/dummy/tmp/cache/assets/D2B/DD0/sprockets%2Fddc372002f3306cc0d74fea616ed1138 +0 -0
  94. data/test/dummy/tmp/cache/assets/D46/920/sprockets%2F8f3c0c4bf52b27a6646e49751e4e8f0c +0 -0
  95. data/test/dummy/tmp/cache/assets/D72/0B0/sprockets%2F56e9ec06e41d1cf9d692d674b5ddb210 +0 -0
  96. data/test/dummy/tmp/cache/assets/D7C/A80/sprockets%2Fd2d9ec09fb9bc7f8a0758392420e5c7d +0 -0
  97. data/test/dummy/tmp/cache/assets/D7D/9D0/sprockets%2F28fea8457f4a95a2c2d34a6e77df509e +0 -0
  98. data/test/dummy/tmp/cache/assets/D98/3C0/sprockets%2F36f548ab10ebcf8badf47d2719bb8500 +0 -0
  99. data/test/dummy/tmp/cache/assets/DB6/7B0/sprockets%2F120aa322daea3a2aa3667ffd6931eb9b +0 -0
  100. data/test/dummy/tmp/cache/assets/DCB/E50/sprockets%2F89f6b8aeb7d09c0bad5151bab92e5f42 +0 -0
  101. data/test/dummy/tmp/cache/assets/DCF/B50/sprockets%2F5ef130bc93784a52897bbab7bbd4c8ea +0 -0
  102. data/test/dummy/tmp/cache/assets/DD4/B00/sprockets%2F518e3d3f425eccc9558a03f6ddd36ced +0 -0
  103. data/test/dummy/tmp/cache/assets/E53/040/sprockets%2Fb7edacfada15c14fe43ea3b5fc8e2463 +0 -0
  104. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap-responsive.scssc +997 -0
  105. data/test/dummy/tmp/cache/sass/0c9acd3b93b1d41708045c7041c76bbf41b2e963/_bootstrap.scssc +0 -0
  106. data/test/dummy/tmp/cache/sass/1ea5acef392f2f8c40312d480463a71d2049b360/railstrap_painel.css.scssc +0 -0
  107. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_accordion.scssc +0 -0
  108. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_alerts.scssc +0 -0
  109. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_breadcrumbs.scssc +0 -0
  110. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_button-groups.scssc +0 -0
  111. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_buttons.scssc +0 -0
  112. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_carousel.scssc +0 -0
  113. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_close.scssc +0 -0
  114. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_code.scssc +0 -0
  115. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_component-animations.scssc +0 -0
  116. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_dropdowns.scssc +0 -0
  117. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_forms.scssc +1494 -0
  118. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_grid.scssc +0 -0
  119. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_hero-unit.scssc +0 -0
  120. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_labels-badges.scssc +0 -0
  121. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_layouts.scssc +0 -0
  122. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_mixins.scssc +2620 -0
  123. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_modals.scssc +0 -0
  124. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navbar.scssc +1209 -0
  125. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_navs.scssc +0 -0
  126. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pager.scssc +0 -0
  127. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_pagination.scssc +0 -0
  128. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_popovers.scssc +0 -0
  129. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_progress-bars.scssc +0 -0
  130. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_reset.scssc +0 -0
  131. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_scaffolding.scssc +0 -0
  132. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_sprites.scssc +1064 -0
  133. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tables.scssc +0 -0
  134. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_thumbnails.scssc +0 -0
  135. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_tooltip.scssc +0 -0
  136. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_type.scssc +0 -0
  137. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_utilities.scssc +0 -0
  138. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_variables.scssc +684 -0
  139. data/test/dummy/tmp/cache/sass/9891e82674b6910cebee3910c86e2ef69e96f15b/_wells.scssc +0 -0
  140. data/test/integration/navigation_test.rb +10 -0
  141. data/test/railstrap_test.rb +7 -0
  142. data/test/test_helper.rb +15 -0
  143. metadata +420 -0
@@ -0,0 +1,684 @@
1
+ 3.1.18 (Brainy Betty)
2
+ aed4dadb042189881ad468be8ddc30f136ad8c69
3
+ o:Sass::Tree::RootNode
4
+ :
5
+ @linei:@template"// Variables.less
6
+ // Variables to customize the look and feel of Bootstrap
7
+ // -----------------------------------------------------
8
+
9
+
10
+
11
+ // GLOBAL VALUES
12
+ // --------------------------------------------------
13
+
14
+ // Grays
15
+ // -------------------------
16
+ $black: #000 !default;
17
+ $grayDarker: #222 !default;
18
+ $grayDark: #333 !default;
19
+ $gray: #555 !default;
20
+ $grayLight: #999 !default;
21
+ $grayLighter: #eee !default;
22
+ $white: #fff !default;
23
+
24
+
25
+ // Accent colors
26
+ // ----------------------------
27
+ $blue: #049cdb !default;
28
+ $blueDark: #0064cd !default;
29
+ $green: #46a546 !default;
30
+ $red: #9d261d !default;
31
+ $yellow: #ffc40d !default;
32
+ $orange: #f89406 !default;
33
+ $pink: #c3325f !default;
34
+ $purple: #7a43b6 !default;
35
+
36
+ // Scaffolding
37
+ // -------------------------
38
+ $bodyBackground: $white !default;
39
+ $textColor: $grayDark !default;
40
+
41
+ // Links
42
+ // -------------------------
43
+ $linkColor: #08c !default;
44
+ $linkColorHover: darken($linkColor, 15%) !default;
45
+
46
+ // Typography
47
+ // -------------------------
48
+ $sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
49
+ $serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
50
+ $monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace !default;
51
+
52
+ $baseFontSize: 13px !default;
53
+ $baseFontFamily: $sansFontFamily !default;
54
+ $baseLineHeight: 18px !default;
55
+ $altFontFamily: $serifFontFamily !default;
56
+
57
+ $headingsFontFamily: inherit !default; // empty to use BS default, @baseFontFamily
58
+ $headingsFontWeight: bold !default; // instead of browser default, bold
59
+ $headingsColor: inherit !default; // empty to use BS default, @textColor
60
+
61
+
62
+ // Tables
63
+ // -------------------------
64
+ $tableBackground: transparent !default; // overall background-color
65
+ $tableBackgroundAccent: #f9f9f9 !default; // for striping
66
+ $tableBackgroundHover: #f5f5f5 !default; // for hover
67
+ $tableBorder: #ddd !default; // table and cell border
68
+
69
+ // Buttons
70
+ // -------------------------
71
+ $btnBackground: $white !default;
72
+ $btnBackgroundHighlight: darken($white, 10%) !default;
73
+ $btnBorder: #ccc !default;
74
+
75
+ $btnPrimaryBackground: $linkColor !default;
76
+ $btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15%) !default;
77
+
78
+ $btnInfoBackground: #5bc0de !default;
79
+ $btnInfoBackgroundHighlight: #2f96b4 !default;
80
+
81
+ $btnSuccessBackground: #62c462 !default;
82
+ $btnSuccessBackgroundHighlight: #51a351 !default;
83
+
84
+ $btnWarningBackground: lighten($orange, 15%) !default;
85
+ $btnWarningBackgroundHighlight: $orange !default;
86
+
87
+ $btnDangerBackground: #ee5f5b !default;
88
+ $btnDangerBackgroundHighlight: #bd362f !default;
89
+
90
+ $btnInverseBackground: $gray !default;
91
+ $btnInverseBackgroundHighlight: $grayDarker !default;
92
+
93
+ // Forms
94
+ // -------------------------
95
+ $inputBackground: $white !default;
96
+ $inputBorder: #ccc !default;
97
+ $inputBorderRadius: 3px !default;
98
+ $inputDisabledBackground: $grayLighter !default;
99
+ $formActionsBackground: #f5f5f5 !default;
100
+
101
+
102
+ // Dropdowns
103
+ // -------------------------
104
+ $dropdownBackground: $white !default;
105
+ $dropdownBorder: rgba(0,0,0,.2) !default;
106
+ $dropdownLinkColor: $grayDark !default;
107
+ $dropdownLinkColorHover: $white !default;
108
+ $dropdownLinkBackgroundHover: $linkColor !default;
109
+
110
+
111
+ // COMPONENT VARIABLES
112
+ // --------------------------------------------------
113
+
114
+ // Z-index master list
115
+ // -------------------------
116
+ // Used for a bird's eye view of components dependent on the z-axis
117
+ // Try to avoid customizing these :)
118
+ $zindexDropdown: 1000;
119
+ $zindexPopover: 1010;
120
+ $zindexTooltip: 1020;
121
+ $zindexFixedNavbar: 1030;
122
+ $zindexModalBackdrop: 1040;
123
+ $zindexModal: 1050;
124
+
125
+
126
+ // Sprite icons path
127
+ // -------------------------
128
+ $iconSpritePath: asset-url("glyphicons-halflings.png", image) !default;
129
+ $iconWhiteSpritePath: asset-url("glyphicons-halflings-white.png", image) !default;
130
+
131
+
132
+ // Input placeholder text color
133
+ // -------------------------
134
+ $placeholderText: $grayLight !default;
135
+
136
+
137
+ // Hr border color
138
+ // -------------------------
139
+ $hrBorder: $grayLighter !default;
140
+
141
+
142
+ // Navbar
143
+ // -------------------------
144
+ $navbarHeight: 40px !default;
145
+ $navbarBackground: $grayDarker !default;
146
+ $navbarBackgroundHighlight: $grayDark !default;
147
+
148
+ $navbarText: $grayLight !default;
149
+ $navbarLinkColor: $grayLight !default;
150
+ $navbarLinkColorHover: $white !default;
151
+ $navbarLinkColorActive: $navbarLinkColorHover !default;
152
+ $navbarLinkBackgroundHover: transparent !default;
153
+ $navbarLinkBackgroundActive: $navbarBackground !default;
154
+
155
+ $navbarSearchBackground: lighten($navbarBackground, 25%) !default;
156
+ $navbarSearchBackgroundFocus: $white !default;
157
+ $navbarSearchBorder: darken($navbarSearchBackground, 30%) !default;
158
+ $navbarSearchPlaceholderColor: #ccc !default;
159
+ $navbarBrandColor: $navbarLinkColor !default;
160
+
161
+
162
+ // Hero unit
163
+ // -------------------------
164
+ $heroUnitBackground: $grayLighter !default;
165
+ $heroUnitHeadingColor: inherit !default;
166
+ $heroUnitLeadColor: inherit !default;
167
+
168
+
169
+ // Form states and alerts
170
+ // -------------------------
171
+ $warningText: #c09853 !default;
172
+ $warningBackground: #fcf8e3 !default;
173
+ $warningBorder: darken(adjust-hue($warningBackground, -10), 3%) !default;
174
+
175
+ $errorText: #b94a48 !default;
176
+ $errorBackground: #f2dede !default;
177
+ $errorBorder: darken(adjust-hue($errorBackground, -10), 3%) !default;
178
+
179
+ $successText: #468847 !default;
180
+ $successBackground: #dff0d8 !default;
181
+ $successBorder: darken(adjust-hue($successBackground, -10), 5%) !default;
182
+
183
+ $infoText: #3a87ad !default;
184
+ $infoBackground: #d9edf7 !default;
185
+ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%) !default;
186
+
187
+
188
+ // FIXED GRID
189
+ // --------------------------------------------------
190
+
191
+ // Default, 940px
192
+ // -------------------------
193
+ $gridColumns: 12 !default;
194
+ $gridColumnWidth: 60px !default;
195
+ $gridGutterWidth: 20px !default;
196
+ $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
197
+
198
+ // Portrait tablet to default desktop
199
+ // -------------------------
200
+ $gridColumnWidthTablet: 42px !default;
201
+ $gridGutterWidthTablet: 20px !default;
202
+
203
+ // Large desktop and up
204
+ // -------------------------
205
+ $gridColumnWidthLarge: 70px !default;
206
+ $gridGutterWidthLarge: 30px !default;
207
+
208
+
209
+ // FLUID GRID
210
+ // --------------------------------------------------
211
+
212
+ // Default
213
+ // -------------------------
214
+ $fluidGridColumnWidth: 6.382978723% !default;
215
+ $fluidGridGutterWidth: 2.127659574% !default;
216
+
217
+ // Portrait tablet to default desktop
218
+ // -------------------------
219
+ $fluidGridColumnWidthTablet: 5.801104972% !default;
220
+ $fluidGridGutterWidthTablet: 2.762430939% !default;
221
+
222
+ // Large desktop and up
223
+ // -------------------------
224
+ $fluidGridColumnWidthLarge: 5.982905983% !default;
225
+ $fluidGridGutterWidthLarge: 2.564102564% !default;
226
+
227
+
228
+
229
+ // RESPONSIVE DESIGN
230
+ // --------------------------------------------------
231
+
232
+ // Media widths
233
+ // -------------------------
234
+ // Not supported Sass < 3.2 :(
235
+ // $mediaPhone: 480px !default;
236
+ // $mediaTablet: 768px !default;
237
+ // $mediaDesktop: 980px !default;
238
+ // $mediaLarge: 1200px !default; // and upper
239
+ :@children[�o:Sass::Tree::CommentNode ;i: @silenti;[:
240
+ @loud0: @value["�/* Variables.less
241
+ * Variables to customize the look and feel of Bootstrap
242
+ * ----------------------------------------------------- */o; ;i ;
243
+ i;[; @
244
+ ; 0;
245
+ * -------------------------------------------------- */o; ;i;
246
+ i;[; @
247
+ ; 0;
248
+ * ------------------------- */o:Sass::Tree::VariableNode ;i:
249
+ @expro:Sass::Script::Color ;i: @attrs{ :redi:
250
+ greeni:
251
+ alphai: bluei; @
252
+ ;
253
+ @name"
254
+ black; @
255
+ :
256
+ ;
257
+ ;"
258
+ ;
259
+ ;"
260
+ ;
261
+ ;"
262
+ ;
263
+ ;"
264
+ ;
265
+ ;"
266
+ ;
267
+ white; @
268
+ ;"
269
+ i;[; @
270
+ ; 0;
271
+ * ---------------------------- */o; ;i;o; ;i;{ ;i ;i�;i;i�; @
272
+ ;
273
+ ;"
274
+ ;
275
+ ;"
276
+ ;
277
+ green; @
278
+ ;"
279
+ ;
280
+ ;"
281
+ ;
282
+ ;"
283
+ ;
284
+ ;"
285
+ ;
286
+ ;"
287
+ ;
288
+ ;"
289
+ i;[; @
290
+ ; 0;
291
+ * ------------------------- */o; ;i';o:Sass::Script::Variable ;i':@underscored_name"
292
+ white;"
293
+ white; @
294
+ ;[;"bodyBackground; @
295
+ ;"
296
+ ;[;"textColor; @
297
+ ;"
298
+ i;[; @
299
+ ; 0;
300
+ * ------------------------- */o; ;i,;o; ;i,;{ ;i;i�;i;i�; @
301
+ ;
302
+ ;"
303
+ ;i-:@keywords{;" darken; @
304
+ :
305
+ @args[o; ;i-;"linkColor;"linkColor; @
306
+ o:Sass::Script::Number ;i-:@original"15%:@denominator_units[; @
307
+ :@numerator_units["%;
308
+ ;"
309
+ i;[; @
310
+ ; 0;
311
+ * ------------------------- */o; ;i1;o:Sass::Script::List ;i1:@separator:
312
+ comma; @
313
+ ;
314
+ :
315
+ @type: string;
316
+ ;%:identifier;
317
+ ;%;';
318
+ Arialo;$ ;i1; @
319
+ ;%;';
320
+ ;"
321
+ ;
322
+ ;%;';
323
+ ;%;&;
324
+ ;%;';
325
+ Timeso;$ ;i2; @
326
+ ;%;';
327
+ serif;[;"serifFontFamily; @
328
+ ;"
329
+ ;
330
+ o;$ ;i3; @
331
+ ;%;';
332
+ Menloo;$ ;i3; @
333
+ ;%;';
334
+ ;%;';
335
+ ;%;&;
336
+ ;%;';
337
+ ;"
338
+ ; ["px;
339
+ ;"
340
+ ;[;"baseFontFamily; @
341
+ ;"
342
+ ; ["px;
343
+ ;"
344
+ ;[;"altFontFamily; @
345
+ ;"
346
+ ;%;';
347
+ ;"
348
+ i;[; @
349
+ ; 0;
350
+ ;%;';
351
+ ;"
352
+ i;[; @
353
+ ; 0;
354
+ ;%;';
355
+ ;"
356
+ i;[; @
357
+ ; 0;
358
+ i;[; @
359
+ ; 0;
360
+ * ------------------------- */o; ;iA;o;$ ;iA; @
361
+ ;%;';
362
+ ;"
363
+ i;[; @
364
+ ; 0;
365
+ ;
366
+ ;"
367
+ i;[; @
368
+ ; 0;
369
+ ;
370
+ ;"
371
+ i;[; @
372
+ ; 0;
373
+ ;
374
+ ;"
375
+ i;[; @
376
+ ; 0;
377
+ i;[; @
378
+ ; 0;
379
+ * ------------------------- */o; ;iH;o; ;iH;"
380
+ white;"
381
+ white; @
382
+ ;[;"btnBackground; @
383
+ ;"
384
+ ;iI;{;" darken; @
385
+ ;[o; ;iI;"
386
+ white;"
387
+ white; @
388
+ o; ;iI;"10%;[; @
389
+ ; ["%;
390
+ ;"
391
+ ;
392
+ ;"
393
+ ;[;"btnPrimaryBackground; @
394
+ ;"
395
+ ;iM;{;"adjust-hue; @
396
+ ;[o; ;iM;"btnPrimaryBackground;"btnPrimaryBackground; @
397
+ o; ;iM;"15%;[; @
398
+ ; ["%;
399
+ ;"
400
+ ;
401
+ ;"
402
+ ;
403
+ ;"
404
+ ;
405
+ ;"
406
+ ;
407
+ ;"
408
+ ;iU;{;" lighten; @
409
+ ;[o; ;iU;" orange;" orange; @
410
+ o; ;iU;"15%;[; @
411
+ ; ["%;
412
+ ;"
413
+ ;[;""btnWarningBackgroundHighlight; @
414
+ ;"
415
+ ;
416
+ ;"
417
+ ;
418
+ ;"
419
+ ;[;"btnInverseBackground; @
420
+ ;"
421
+ ;[;""btnInverseBackgroundHighlight; @
422
+ ;"
423
+ i;[; @
424
+ ; 0;
425
+ * ------------------------- */o; ;i`;o; ;i`;"
426
+ white;"
427
+ white; @
428
+ ;[;"inputBackground; @
429
+ ;"
430
+ ;
431
+ ;"
432
+ ; ["px;
433
+ ;"
434
+ ;[;"inputDisabledBackground; @
435
+ ;"
436
+ ;
437
+ ;"
438
+ i;[; @
439
+ ; 0;
440
+ * ------------------------- */o; ;ii;o; ;ii;"
441
+ white;"
442
+ white; @
443
+ ;[;"dropdownBackground; @
444
+ ;"
445
+ ;ij;{;" rgba; @
446
+ ;[ o; ;ij;"0;[; @
447
+ ; [;
448
+ ; [;
449
+ ; [;
450
+ ; [;
451
+ ;"
452
+ ;[;"dropdownLinkColor; @
453
+ ;"
454
+ white;"
455
+ white; @
456
+ ;[;"dropdownLinkColorHover; @
457
+ ;"
458
+ ;[;" dropdownLinkBackgroundHover; @
459
+ ;"
460
+ i;[; @
461
+ ; 0;
462
+ * -------------------------------------------------- */o; ;is;
463
+ i;[; @
464
+ ; 0;
465
+ * -------------------------
466
+ * Used for a bird's eye view of components dependent on the z-axis
467
+ * Try to avoid customizing these :) */o; ;iw;o; ;iw;" 1000;@�; @
468
+ ; [;
469
+ ;0o; ;ix;o; ;ix;" 1010;@�; @
470
+ ; [;
471
+ ;0o; ;iy;o; ;iy;" 1020;@�; @
472
+ ; [;
473
+ ;0o; ;iz;o; ;iz;" 1030;@�; @
474
+ ; [;
475
+ ;0o; ;i{;o; ;i{;" 1040;@�; @
476
+ ; [;
477
+ ;0o; ;i|;o; ;i|;" 1050;@�; @
478
+ ; [;
479
+ ;0o; ;i;
480
+ i;[; @
481
+ ; 0;
482
+ * ------------------------- */o; ;i|;o;
483
+ ;i|;{;"asset-url; @
484
+ ;[o;$ ;i|; @
485
+ ;%;&;
486
+ ;%;';
487
+ image;[;"iconSpritePath; @
488
+ ;"
489
+ ;i};{;"asset-url; @
490
+ ;[o;$ ;i}; @
491
+ ;%;&;
492
+ ;%;';
493
+ image;[;"iconWhiteSpritePath; @
494
+ ;"
495
+ i;[; @
496
+ ; 0;
497
+ * ------------------------- */o; ;i�;o; ;i�;"grayLight;"grayLight; @
498
+ ;[;"placeholderText; @
499
+ ;"
500
+ i;[; @
501
+ ; 0;
502
+ * ------------------------- */o; ;i�;o; ;i�;"grayLighter;"grayLighter; @
503
+ ;[;"
504
+ ;"
505
+ i;[; @
506
+ ; 0;
507
+ * ------------------------- */o; ;i�;o; ;i�;" 40px;[; @
508
+ ; ["px;
509
+ ;"
510
+ ;[;"navbarBackground; @
511
+ ;"
512
+ ;[;"navbarBackgroundHighlight; @
513
+ ;"
514
+ ;[;"navbarText; @
515
+ ;"
516
+ ;[;"navbarLinkColor; @
517
+ ;"
518
+ white;"
519
+ white; @
520
+ ;[;"navbarLinkColorHover; @
521
+ ;"
522
+ ;[;"navbarLinkColorActive; @
523
+ ;"
524
+ ;%;';
525
+ ;"
526
+ ;[;"navbarLinkBackgroundActive; @
527
+ ;"
528
+ ;i�;{;" lighten; @
529
+ ;[o; ;i�;"navbarBackground;"navbarBackground; @
530
+ o; ;i�;"25%;[; @
531
+ ; ["%;
532
+ ;"
533
+ white;"
534
+ white; @
535
+ ;[;" navbarSearchBackgroundFocus; @
536
+ ;"
537
+ ;i�;{;" darken; @
538
+ ;[o; ;i�;"navbarSearchBackground;"navbarSearchBackground; @
539
+ o; ;i�;"30%;[; @
540
+ ; ["%;
541
+ ;"
542
+ ;
543
+ ;"
544
+ ;[;"navbarBrandColor; @
545
+ ;"
546
+ i;[; @
547
+ ; 0;
548
+ * ------------------------- */o; ;i�;o; ;i�;"grayLighter;"grayLighter; @
549
+ ;[;"heroUnitBackground; @
550
+ ;"
551
+ ;%;';
552
+ ;"
553
+ ;%;';
554
+ ;"
555
+ i;[; @
556
+ ; 0;
557
+ * ------------------------- */o; ;i�;o; ;i�;{ ;i�;i�;i;iX; @
558
+ ;
559
+ ;"
560
+ ;
561
+ ;"
562
+ ;i�;{;" darken; @
563
+ ;[o;
564
+ ;i�;{;"adjust-hue; @
565
+ ;[o; ;i�;"warningBackground;"warningBackground; @
566
+ o; ;i�;"-10;@�; @
567
+ ; [;
568
+ ; ["%;
569
+ ;"
570
+ ;
571
+ ;"
572
+ ;
573
+ ;"
574
+ ;i�;{;" darken; @
575
+ ;[o;
576
+ ;i�;{;"adjust-hue; @
577
+ ;[o; ;i�;"errorBackground;"errorBackground; @
578
+ o; ;i�;"-10;@�; @
579
+ ; [;
580
+ ; ["%;
581
+ ;"
582
+ ;
583
+ ;"
584
+ ;
585
+ ;"
586
+ ;i�;{;" darken; @
587
+ ;[o;
588
+ ;i�;{;"adjust-hue; @
589
+ ;[o; ;i�;"successBackground;"successBackground; @
590
+ o; ;i�;"-10;@�; @
591
+ ; [;
592
+ ; ["%;
593
+ ;[;"successBorder; @
594
+ ;"
595
+ ;
596
+ ;"
597
+ ;
598
+ ;"
599
+ ;i�;{;" darken; @
600
+ ;[o;
601
+ ;i�;{;"adjust-hue; @
602
+ ;[o; ;i�;"infoBackground;"infoBackground; @
603
+ o; ;i�;"-10;@�; @
604
+ ; [;
605
+ ; ["%;
606
+ ;"
607
+ i;[; @
608
+ ; 0;
609
+ * -------------------------------------------------- */o; ;i�;
610
+ i;[; @
611
+ ; 0;
612
+ * ------------------------- */o; ;i�;o; ;i�;"12;@�; @
613
+ ; [;
614
+ ;"
615
+ ; ["px;
616
+ ;"
617
+ ; ["px;
618
+ ;"
619
+ ;i�:@operator: plus:@operand2o;(
620
+ ;i�;):
621
+ times;+o;(
622
+ ;i�;):
623
+ minus;+o; ;i�;"1;@�; @
624
+ ; [;
625
+ :@operand1o; ;i�;"gridColumns;"gridColumns; @
626
+ ; @
627
+ ;.o; ;i�;"gridGutterWidth;"gridGutterWidth; @
628
+ ; @
629
+ ;.o;(
630
+ ;i�;);,;+o; ;i�;"gridColumnWidth;"gridColumnWidth; @
631
+ ; @
632
+ ;.o; ;i�;"gridColumns;"gridColumns; @
633
+ ;[;"gridRowWidth; @
634
+ ;"
635
+ i;[; @
636
+ ; 0;
637
+ * ------------------------- */o; ;i�;o; ;i�;" 42px;[; @
638
+ ; ["px;
639
+ ;"
640
+ ; ["px;
641
+ ;"
642
+ i;[; @
643
+ ; 0;
644
+ * ------------------------- */o; ;i�;o; ;i�;" 70px;[; @
645
+ ; ["px;
646
+ ;"
647
+ ; ["px;
648
+ ;"
649
+ i;[; @
650
+ ; 0;
651
+ * -------------------------------------------------- */o; ;i�;
652
+ i;[; @
653
+ ; 0;
654
+ * ------------------------- */o; ;i�;o; ;i�;" 6.383%;[; @
655
+ ; ["%;
656
+ ;"
657
+ ; ["%;
658
+ ;"
659
+ i;[; @
660
+ ; 0;
661
+ * ------------------------- */o; ;i�;o; ;i�;" 5.801%;[; @
662
+ ; ["%;
663
+ ;"
664
+ ; ["%;
665
+ ;"
666
+ i;[; @
667
+ ; 0;
668
+ * ------------------------- */o; ;i�;o; ;i�;" 5.983%;[; @
669
+ ; ["%;
670
+ ;"
671
+ ; ["%;
672
+ ;"
673
+ i;[; @
674
+ ; 0;
675
+ * -------------------------------------------------- */o; ;i�;
676
+ i;[; @
677
+ ; 0;
678
+ * -------------------------
679
+ * Not supported Sass < 3.2 :(
680
+ * $mediaPhone: 480px !default;
681
+ * $mediaTablet: 768px !default;
682
+ * $mediaDesktop: 980px !default;
683
+ * $mediaLarge: 1200px !default; // and upper */; @
684
+ :@has_childrenT