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,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ content: MyText
6
+ author_id: 1
7
+ published: false
8
+
9
+ two:
10
+ title: MyString
11
+ content: MyText
12
+ author_id: 1
13
+ published: false
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ status: false
6
+
7
+ two:
8
+ name: MyString
9
+ status: false
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ArticleTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class AuthorTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,997 @@
1
+ 3.1.18 (Brainy Betty)
2
+ c6fd77afa4565ace0fd1f29e4c87c93c80fdd8ed
3
+ o:Sass::Tree::RootNode
4
+ :
5
+ @linei:@template""// Responsive.css.scss
6
+ // For phone and tablet devices
7
+ // -------------------------------------------------------------
8
+
9
+
10
+ // REPEAT VARIABLES & MIXINS
11
+ // -------------------------
12
+ // Required since we compile the responsive stuff separately
13
+
14
+ @import "bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
15
+ @import "bootstrap/mixins";
16
+
17
+
18
+ // RESPONSIVE CLASSES
19
+ // ------------------
20
+
21
+ // Hide from screenreaders and browsers
22
+ // Credit: HTML5 Boilerplate
23
+ .hidden {
24
+ display: none;
25
+ visibility: hidden;
26
+ }
27
+
28
+ // Visibility utilities
29
+
30
+ // For desktops
31
+ .visible-phone { display: none !important; }
32
+ .visible-tablet { display: none !important; }
33
+ .visible-desktop { } // Don't set initially
34
+ .hidden-phone { }
35
+ .hidden-tablet { }
36
+ .hidden-desktop { display: none !important; }
37
+
38
+ // Phones only
39
+ @media (max-width : 767px) {
40
+ // Show
41
+ .visible-phone { display: inherit !important; } // Use inherit to restore previous behavior
42
+ // Hide
43
+ .hidden-phone { display: none !important; }
44
+ // Hide everything else
45
+ .hidden-desktop { display: inherit !important; }
46
+ .visible-desktop { display: none !important; }
47
+ }
48
+
49
+ // Tablets & small desktops only
50
+ @media (min-width: 768px) and (max-width: 979px) {
51
+ // Show
52
+ .visible-tablet { display: inherit !important; }
53
+ // Hide
54
+ .hidden-tablet { display: none !important; }
55
+ // Hide everything else
56
+ .hidden-desktop { display: inherit !important; }
57
+ .visible-desktop { display: none !important ; }
58
+ }
59
+
60
+ // UP TO LANDSCAPE PHONE
61
+ // ---------------------
62
+
63
+ @media (max-width: 480px) {
64
+
65
+ // Smooth out the collapsing/expanding nav
66
+ .nav-collapse {
67
+ -webkit-transform: translate3d(0, 0, 0); // activate the GPU
68
+ }
69
+
70
+ // Block level the page header small tag for readability
71
+ .page-header h1 small {
72
+ display: block;
73
+ line-height: $baseLineHeight;
74
+ }
75
+
76
+ // Update checkboxes for iOS
77
+ input[type="checkbox"], input[type="radio"] {
78
+ border: 1px solid #ccc;
79
+ }
80
+
81
+ // Remove the horizontal form styles
82
+ .form-horizontal .control-group > label {
83
+ float: none;
84
+ width: auto;
85
+ padding-top: 0;
86
+ text-align: left;
87
+ }
88
+ // Move over all input controls and content
89
+ .form-horizontal .controls {
90
+ margin-left: 0;
91
+ }
92
+ // Move the options list down to align with labels
93
+ .form-horizontal .control-list {
94
+ padding-top: 0; // has to be padding because margin collaspes
95
+ }
96
+ // Move over buttons in .form-actions to align with .controls
97
+ .form-horizontal .form-actions {
98
+ padding-left: 10px;
99
+ padding-right: 10px;
100
+ }
101
+
102
+ // Modals
103
+ .modal {
104
+ position: absolute;
105
+ top: 10px;
106
+ left: 10px;
107
+ right: 10px;
108
+ width: auto;
109
+ margin: 0;
110
+ &.fade.in { top: auto; }
111
+ }
112
+ .modal-header .close {
113
+ padding: 10px;
114
+ margin: -10px;
115
+ }
116
+
117
+ // Carousel
118
+ .carousel-caption {
119
+ position: static;
120
+ }
121
+
122
+ }
123
+
124
+
125
+
126
+ // LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET
127
+ // --------------------------------------------------
128
+
129
+ @media (max-width: 768px) {
130
+
131
+ // Padding to set content in a bit
132
+ body {
133
+ padding-left: 20px;
134
+ padding-right: 20px;
135
+ }
136
+ // Negative indent the now static "fixed" navbar
137
+ .navbar-fixed-top, .navbar-fixed-bottom {
138
+ margin-left: -20px;
139
+ margin-right: -20px;
140
+ }
141
+ // Remove padding on container given explicit padding set on body
142
+ .container-fluid {
143
+ padding: 0;
144
+ }
145
+
146
+ // TYPOGRAPHY
147
+ // ----------
148
+ // Reset horizontal dl
149
+ .dl-horizontal {
150
+ dt {
151
+ float: none;
152
+ clear: none;
153
+ width: auto;
154
+ text-align: left;
155
+ }
156
+ dd {
157
+ margin-left: 0;
158
+ }
159
+ }
160
+
161
+ // GRID & CONTAINERS
162
+ // -----------------
163
+ // Remove width from containers
164
+ .container {
165
+ width: auto;
166
+ }
167
+ // Fluid rows
168
+ .row-fluid {
169
+ width: 100%;
170
+ }
171
+ // Undo negative margin on rows and thumbnails
172
+ .row, .thumbnails {
173
+ margin-left: 0;
174
+ }
175
+ // Make all grid-sized elements block level again
176
+ [class*="span"], .row-fluid [class*="span"] {
177
+ float: none;
178
+ display: block;
179
+ width: auto;
180
+ margin-left: 0;
181
+ }
182
+
183
+ // FORM FIELDS
184
+ // -----------
185
+ // Make span* classes full width
186
+ .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
187
+ @include input-block-level();
188
+ }
189
+ // But don't let it screw up prepend/append inputs
190
+ .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
191
+ display: inline-block; // redeclare so they don't wrap to new lines
192
+ width: auto;
193
+ }
194
+ }
195
+
196
+
197
+
198
+ // PORTRAIT TABLET TO DEFAULT DESKTOP
199
+ // ----------------------------------
200
+
201
+ @media (min-width: 768px) and (max-width: 979px) {
202
+
203
+ // Fixed grid
204
+ @include gridCore($gridColumnWidthTablet, $gridGutterWidthTablet);
205
+
206
+ // Fluid grid
207
+ @include gridFluid($fluidGridColumnWidthTablet, $fluidGridGutterWidthTablet);
208
+
209
+ // Input grid
210
+ @include gridInput($gridColumnWidthTablet, $gridGutterWidthTablet);
211
+
212
+ // No need to reset .thumbnails here since it's the same $gridGutterWidth
213
+
214
+ }
215
+
216
+
217
+
218
+ // TABLETS AND BELOW
219
+ // -----------------
220
+ @media (max-width: 979px) {
221
+
222
+ // UNFIX THE TOPBAR
223
+ // ----------------
224
+ // Remove any padding from the body
225
+ body {
226
+ padding-top: 0;
227
+ }
228
+ // Unfix the navbar
229
+ .navbar-fixed-top {
230
+ position: static;
231
+ margin-bottom: $baseLineHeight;
232
+ }
233
+ .navbar-fixed-top .navbar-inner {
234
+ padding: 5px;
235
+ }
236
+ .navbar .container {
237
+ width: auto;
238
+ padding: 0;
239
+ }
240
+ // Account for brand name
241
+ .navbar .brand {
242
+ padding-left: 10px;
243
+ padding-right: 10px;
244
+ margin: 0 0 0 -5px;
245
+ }
246
+
247
+ // COLLAPSIBLE NAVBAR
248
+ // ------------------
249
+ // Nav collapse clears brand
250
+ .nav-collapse {
251
+ clear: both;
252
+ }
253
+ // Block-level the nav
254
+ .nav-collapse .nav {
255
+ float: none;
256
+ margin: 0 0 ($baseLineHeight / 2);
257
+ }
258
+ .nav-collapse .nav > li {
259
+ float: none;
260
+ }
261
+ .nav-collapse .nav > li > a {
262
+ margin-bottom: 2px;
263
+ }
264
+ .nav-collapse .nav > .divider-vertical {
265
+ display: none;
266
+ }
267
+ .nav-collapse .nav .nav-header {
268
+ color: $navbarText;
269
+ text-shadow: none;
270
+ }
271
+ // Nav and dropdown links in navbar
272
+ .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
273
+ padding: 6px 15px;
274
+ font-weight: bold;
275
+ color: $navbarLinkColor;
276
+ @include border-radius(3px);
277
+ }
278
+ // Buttons
279
+ .nav-collapse .btn {
280
+ padding: 4px 10px 4px;
281
+ font-weight: normal;
282
+ @include border-radius(4px);
283
+ }
284
+ .nav-collapse .dropdown-menu li + li a {
285
+ margin-bottom: 2px;
286
+ }
287
+ .nav-collapse .nav > li > a:hover, .nav-collapse .dropdown-menu a:hover {
288
+ background-color: $navbarBackground;
289
+ }
290
+ // Buttons in the navbar
291
+ .nav-collapse.in .btn-group {
292
+ margin-top: 5px;
293
+ padding: 0;
294
+ }
295
+ // Dropdowns in the navbar
296
+ .nav-collapse .dropdown-menu {
297
+ position: static;
298
+ top: auto;
299
+ left: auto;
300
+ float: none;
301
+ display: block;
302
+ max-width: none;
303
+ margin: 0 15px;
304
+ padding: 0;
305
+ background-color: transparent;
306
+ border: none;
307
+ @include border-radius(0);
308
+ @include box-shadow(none);
309
+ }
310
+ .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
311
+ display: none;
312
+ }
313
+ .nav-collapse .dropdown-menu .divider {
314
+ display: none;
315
+ }
316
+ // Forms in navbar
317
+ .nav-collapse .navbar-form, .nav-collapse .navbar-search {
318
+ float: none;
319
+ padding: ($baseLineHeight / 2) 15px;
320
+ margin: ($baseLineHeight / 2) 0;
321
+ border-top: 1px solid $navbarBackground;
322
+ border-bottom: 1px solid $navbarBackground;
323
+ @include box-shadow(#{inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1)});
324
+ }
325
+ // Pull right (secondary) nav content
326
+ .navbar .nav-collapse .nav.pull-right {
327
+ float: none;
328
+ margin-left: 0;
329
+ }
330
+ // Hide everything in the navbar save .brand and toggle button */
331
+ .nav-collapse, .nav-collapse.collapse {
332
+ overflow: hidden;
333
+ height: 0;
334
+ }
335
+ // Navbar button
336
+ .navbar .btn-navbar {
337
+ display: block;
338
+ }
339
+
340
+ // STATIC NAVBAR
341
+ // -------------
342
+ .navbar-static .navbar-inner {
343
+ padding-left: 10px;
344
+ padding-right: 10px;
345
+ }
346
+ }
347
+
348
+
349
+ // DEFAULT DESKTOP
350
+ // ---------------
351
+
352
+ // Required to make the collapsing navbar work on regular desktops
353
+ @media (min-width: 980px) {
354
+ .nav-collapse.collapse {
355
+ height: auto !important;
356
+ overflow: visible !important;
357
+ }
358
+ }
359
+
360
+ // LARGE DESKTOP & UP
361
+ // ------------------
362
+
363
+ @media (min-width: 1200px) {
364
+
365
+ // Fixed grid
366
+ @include gridCore($gridColumnWidthLarge, $gridGutterWidthLarge);
367
+
368
+ // Fluid grid
369
+ @include gridFluid($fluidGridColumnWidthLarge, $fluidGridGutterWidthLarge);
370
+
371
+ // Input grid
372
+ @include gridInput($gridColumnWidthLarge, $gridGutterWidthLarge);
373
+
374
+ // Thumbnails
375
+ .thumbnails {
376
+ margin-left: -$gridGutterWidthLarge;
377
+ }
378
+ .thumbnails > li {
379
+ margin-left: $gridGutterWidthLarge;
380
+ }
381
+ .row-fluid .thumbnails {
382
+ margin-left: 0;
383
+ }
384
+ }:@children['o:Sass::Tree::CommentNode ;i: @silenti;[:
385
+ @loud0: @value["/* Responsive.css.scss
386
+ * For phone and tablet devices
387
+ * ------------------------------------------------------------- */o; ;i ;
388
+ i;[; @
389
+ ; 0;
390
+ * -------------------------
391
+ * Required since we compile the responsive stuff separately */o:Sass::Tree::ImportNode
392
+ ;i:@imported_filename"bootstrap/variables;0;[; @
393
+ o; ;i;
394
+ i;[; @
395
+ ; 0;
396
+ ;i;"bootstrap/mixins;0;[; @
397
+ o; ;i;
398
+ i;[; @
399
+ ; 0;
400
+ * ------------------ */o; ;i;
401
+ i;[; @
402
+ ; 0;
403
+ * Credit: HTML5 Boilerplate */o:Sass::Tree::RuleNode ;i:
404
+ @rule[" .hidden;[o:Sass::Tree::PropNode ;i;[:@prop_syntax:new:
405
+ @name[" display; @
406
+ :
407
+ @tabsi;
408
+ :
409
+ @type:identifier;
410
+ ;i;
411
+ ;;;
412
+ :@has_childrenT;io; ;i;
413
+ i;[; @
414
+ ; 0;
415
+ i;[; @
416
+ ; 0;
417
+ ;i;
418
+ ;;;
419
+ ;!T;io; ;i!;[".visible-tablet;[o; ;i!;[;;;[" display; @
420
+ ;i;
421
+ ;;;
422
+ ;!T;io; ;i";[".visible-desktop;[;o;;i";";[o;;[o;;i";@r;[o; ;i";["visible-desktop;@r; @
423
+ ;!T;io; ;i";
424
+ i;[; @
425
+ ; 0;
426
+ ;!T;io; ;i$;[".hidden-tablet;[;o;;i$;";[o;;[o;;i$;@�;[o; ;i$;["hidden-tablet;@�; @
427
+ ;!T;io; ;i%;[".hidden-desktop;[o; ;i%;[;;;[" display; @
428
+ ;i;
429
+ ;;;
430
+ ;!T;io; ;i';
431
+ i;[; @
432
+ ; 0;
433
+ i;[; @
434
+ ; 0;
435
+ ;i;
436
+ ;;;
437
+ ;!T;io; ;i*;
438
+ i;[; @
439
+ ; 0;
440
+ * Hide */o; ;i,;[".hidden-phone;[o; ;i,;[;;;[" display; @
441
+ ;i;
442
+ ;;;
443
+ ;!T;io; ;i-;
444
+ i;[; @
445
+ ; 0;
446
+ ;i;
447
+ ;;;
448
+ ;!T;io; ;i/;[".visible-desktop;[o; ;i/;[;;;[" display; @
449
+ ;i;
450
+ ;;;
451
+ ;!T;i; @
452
+ ;!T;i;
453
+ i;[; @
454
+ ; 0;
455
+ i;[; @
456
+ ; 0;
457
+ ;i;
458
+ ;;;
459
+ ;!T;io; ;i6;
460
+ i;[; @
461
+ ; 0;
462
+ ;i;
463
+ ;;;
464
+ ;!T;io; ;i8;
465
+ i;[; @
466
+ ; 0;
467
+ ;i;
468
+ ;;;
469
+ ;!T;io; ;i:;[".visible-desktop;[o; ;i:;[;;;[" display; @
470
+ ;i;
471
+ ;;;
472
+ ;!T;i; @
473
+ ;!T;i;
474
+ i;[; @
475
+ ; 0;
476
+ * --------------------- */o;" ;i@;[o; ;iB;
477
+ i;[; @
478
+ ; 0;
479
+ ;i;
480
+ ;iD:@keywords{;"translate3d; @
481
+ :
482
+ @args[o:Sass::Script::Number ;iD:@original"0:@denominator_units[; @
483
+ :@numerator_units[;
484
+ ;*[;
485
+ ;*[;
486
+ i;[; @
487
+ ; 0;
488
+ ;!T;io; ;iG;
489
+ i;[; @
490
+ ; 0;
491
+ ;i;
492
+ ;;;
493
+ blocko; ;iJ;[;;;["line-height; @
494
+ ;i;
495
+ ;o;;iH;";[o;;[o;;iH;@�;[o; ;iH;["page-header;@�o;;iH;@�;[o:Sass::Selector::Element ;iH:@namespace0;["h1;@�o;;iH;@�;[o;- ;iH;.0;["
496
+ small;@�; @
497
+ ;!T;io; ;iM;
498
+ i;[; @
499
+ ; 0;
500
+ ;i;
501
+ ;;;
502
+ input;@�o:Sass::Selector::Attribute ;iN;.0:@operator"=;[" type;
503
+ input;@�o;/ ;iN;.0;0"=;[" type;
504
+ ;!T;io; ;iR;
505
+ i;[; @
506
+ ; 0;
507
+ float; @
508
+ ;i;
509
+ ;;;
510
+ width; @
511
+ ;i;
512
+ ;;;
513
+ ;i;
514
+ ;;;
515
+ ;i;
516
+ ;;;
517
+ label;@; @
518
+ ;!T;io; ;iY;
519
+ i;[; @
520
+ ; 0;
521
+ ;i;
522
+ ;;;
523
+ ;!T;io; ;i];
524
+ i;[; @
525
+ ; 0;
526
+ ;i;
527
+ ;;;
528
+ i;[; @
529
+ ; 0;
530
+ ;!T;io; ;ia;
531
+ i;[; @
532
+ ; 0;
533
+ ;i;
534
+ ;;;
535
+ ;i;
536
+ ;;;
537
+ ;!T;io; ;ig;
538
+ i;[; @
539
+ ; 0;
540
+ ;i;
541
+ ;;;
542
+ ;i;
543
+ ;;;
544
+ ;i;
545
+ ;;;
546
+ right; @
547
+ ;i;
548
+ ;;;
549
+ width; @
550
+ ;i;
551
+ ;;;
552
+ ;i;
553
+ ;;;
554
+ ;i;
555
+ ;;;
556
+ ;!T;i;o;;ih;";[o;;[o;;ih;@�;[o; ;ih;["
557
+ modal;@�; @
558
+ ;!T;io; ;iq;[".modal-header .close;[o; ;ir;[;;;[" padding; @
559
+ ;i;
560
+ ;;;
561
+ ;i;
562
+ -10px;)[; @
563
+ ;*["px;
564
+ close;@�; @
565
+ ;!T;io; ;iv;
566
+ i;[; @
567
+ ; 0;
568
+ ;i;
569
+ ;;;
570
+ ;!T;i; @
571
+ ;!T;i;
572
+ i;[; @
573
+ ; 0;
574
+ * -------------------------------------------------- */o;" ;i};[o; ;i;
575
+ i;[; @
576
+ ; 0;
577
+ ;i;
578
+ ;;;
579
+ ;i;
580
+ ;;;
581
+ ;!T;io; ;i�;
582
+ i;[; @
583
+ ; 0;
584
+ ;i;
585
+ -20px;)[; @
586
+ ;*["px;
587
+ ;i;
588
+ -20px;)[; @
589
+ ;*["px;
590
+ ;!T;io; ;i�;
591
+ i;[; @
592
+ ; 0;
593
+ ;i;
594
+ ;;;
595
+ ;!T;io; ;i�;
596
+ i;[; @
597
+ ; 0;
598
+ * ----------
599
+ * Reset horizontal dl */o; ;i�;[".dl-horizontal;[o; ;i�;["dt;[ o; ;i�;[;;;["
600
+ float; @
601
+ ;i;
602
+ ;;;
603
+ clear; @
604
+ ;i;
605
+ ;;;
606
+ width; @
607
+ ;i;
608
+ ;;;
609
+ ;i;
610
+ ;;;
611
+ ;!T;io; ;i�;["dd;[o; ;i�;[;;;["margin-left; @
612
+ ;i;
613
+ ;;;
614
+ ;!T;i;o;;i�;";[o;;[o;;i�;@�;[o; ;i�;["dl-horizontal;@�; @
615
+ ;!T;io; ;i�;
616
+ i;[; @
617
+ ; 0;
618
+ * -----------------
619
+ * Remove width from containers */o; ;i�;[".container;[o; ;i�;[;;;["
620
+ width; @
621
+ ;i;
622
+ ;;;
623
+ ;!T;io; ;i�;
624
+ i;[; @
625
+ ; 0;
626
+ width; @
627
+ ;i;
628
+ ;;;
629
+ ;!T;io; ;i�;
630
+ i;[; @
631
+ ; 0;
632
+ ;i;
633
+ ;;;
634
+ ;!T;io; ;i�;
635
+ i;[; @
636
+ ; 0;
637
+ float; @
638
+ ;i;
639
+ ;;;
640
+ ;i;
641
+ ;;;
642
+ blocko; ;i�;[;;;["
643
+ width; @
644
+ ;i;
645
+ ;;;
646
+ ;i;
647
+ ;;;
648
+ class;
649
+ class;
650
+ ;!T;io; ;i�;
651
+ i;[; @
652
+ ; 0;
653
+ * -----------
654
+ * Make span* classes full width */o; ;i�;["�.input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input;[o:Sass::Tree::MixinNode ;i�;[;%{;"input-block-level; @
655
+ ;&[;o;;i�;";[ o;;[o;;i�;@c;[o; ;i�;["input-large;@co;;[o;;i�;@c;[o; ;i�;["input-xlarge;@co;;[o;;i�;@c;[o; ;i�;["input-xxlarge;@co;;[o;;i�;@c;[o;- ;i�;.0;["
656
+ input;@co;/ ;i�;.0;0"*=;["
657
+ class;
658
+ class;
659
+ class;
660
+ ;!T;io; ;i�;
661
+ i;[; @
662
+ ; 0;
663
+ ;i;
664
+ ;;;
665
+ i;[; @
666
+ ; 0;
667
+ width; @
668
+ ;i;
669
+ ;;;
670
+ input;@�o;;[o;;i�;@�;[o; ;i�;["input-append;@�o;;i�;@�;[o;- ;i�;.0;["
671
+ input;@�o;;[o;;i�;@�;[o; ;i�;["input-prepend;@�o;;i�;@�;[o;- ;i�;.0;["
672
+ input;@�o;/ ;i�;.0;0"*=;["
673
+ class;
674
+ input;@�o;/ ;i�;.0;0"*=;["
675
+ class;
676
+ ;!T;i; @
677
+ ;!T;i;
678
+ i;[; @
679
+ ; 0;
680
+ * ---------------------------------- */o;" ;i�;[ o; ;i�;
681
+ i;[; @
682
+ ; 0;
683
+ ;&[o;+ ;i�;,"gridColumnWidthTablet;"gridColumnWidthTablet; @
684
+ o;+ ;i�;,"gridGutterWidthTablet;"gridGutterWidthTablet; @
685
+ o; ;i�;
686
+ i;[; @
687
+ ; 0;
688
+ ;&[o;+ ;i�;,"fluidGridColumnWidthTablet;"fluidGridColumnWidthTablet; @
689
+ o;+ ;i�;,"fluidGridGutterWidthTablet;"fluidGridGutterWidthTablet; @
690
+ o; ;i�;
691
+ i;[; @
692
+ ; 0;
693
+ ;&[o;+ ;i�;,"gridColumnWidthTablet;"gridColumnWidthTablet; @
694
+ o;+ ;i�;,"gridGutterWidthTablet;"gridGutterWidthTablet; @
695
+ o; ;i�;
696
+ i;[; @
697
+ ; 0;
698
+ ;!T;i;
699
+ i;[; @
700
+ ; 0;
701
+ * ----------------- */o;" ;i�;[+o; ;i�;
702
+ i;[; @
703
+ ; 0;
704
+ * ----------------
705
+ * Remove any padding from the body */o; ;i�;[" body;[o; ;i�;[;;;["padding-top; @
706
+ ;i;
707
+ ;;;
708
+ ;!T;io; ;i�;
709
+ i;[; @
710
+ ; 0;
711
+ ;i;
712
+ ;;;
713
+ ;i;
714
+ ;o;;i�;";[o;;[o;;i�;@p;[o; ;i�;["navbar-fixed-top;@p; @
715
+ ;!T;io; ;i�;["$.navbar-fixed-top .navbar-inner;[o; ;i�;[;;;[" padding; @
716
+ ;i;
717
+ ;;;
718
+ ;!T;io; ;i�;[".navbar .container;[o; ;i�;[;;;["
719
+ width; @
720
+ ;i;
721
+ ;;;
722
+ ;i;
723
+ ;;;
724
+ ;!T;io; ;i�;
725
+ i;[; @
726
+ ; 0;
727
+ ;i;
728
+ ;;;
729
+ ;i;
730
+ ;;;
731
+ ;i;
732
+ space; @
733
+ ;
734
+ ;*[;
735
+ ;*[;
736
+ ;*[;
737
+ ;*["px;
738
+ brand;@�; @
739
+ ;!T;io; ;i�;
740
+ i;[; @
741
+ ; 0;
742
+ * ------------------
743
+ * Nav collapse clears brand */o; ;i�;[".nav-collapse;[o; ;i�;[;;;["
744
+ clear; @
745
+ ;i;
746
+ ;;;
747
+ ;!T;io; ;i�;
748
+ i;[; @
749
+ ; 0;
750
+ float; @
751
+ ;i;
752
+ ;;;
753
+ ;i;
754
+ ;
755
+ ;*[;
756
+ ;*[;
757
+ ;i�;0:div:@operand2o;' ;i�;("2;)@�; @
758
+ ;*[;
759
+ :@operand1o;+ ;i�;,"baseLineHeight;"baseLineHeight; @
760
+ ;o;;i�;";[o;;[o;;i�;@";[o; ;i�;["nav-collapse;@"o;;i�;@";[o; ;i�;["nav;@"; @
761
+ ;!T;io; ;i�;[".nav-collapse .nav > li;[o; ;i�;[;;;["
762
+ float; @
763
+ ;i;
764
+ ;;;
765
+ ;!T;io; ;i;[" .nav-collapse .nav > li > a;[o; ;i;[;;;["margin-bottom; @
766
+ ;i;
767
+ ;;;
768
+ ;!T;io; ;i;["+.nav-collapse .nav > .divider-vertical;[o; ;i;[;;;[" display; @
769
+ ;i;
770
+ ;;;
771
+ ;!T;io; ;i;["#.nav-collapse .nav .nav-header;[o; ;i;[;;;["
772
+ color; @
773
+ ;i;
774
+ o; ;i ;[;;;["text-shadow; @
775
+ ;i;
776
+ ;;;
777
+ ;!T;io; ;i ;
778
+ i;[; @
779
+ ; 0;
780
+ ;i;
781
+ ;;;
782
+ ;i;
783
+ ;;;
784
+ color; @
785
+ ;i;
786
+ o;2 ;i;[;%{;"border-radius; @
787
+ ;&[o;' ;i;("3px;)[; @
788
+ ;*["px;
789
+ ;!T;io; ;i;
790
+ i;[; @
791
+ ; 0;
792
+ ;i;
793
+ ;;;
794
+ ;i;
795
+ ;;;
796
+ ;&[o;' ;i;("4px;)[; @
797
+ ;*["px;
798
+ ;!T;io; ;i;["+.nav-collapse .dropdown-menu li + li a;[o; ;i;[;;;["margin-bottom; @
799
+ ;i;
800
+ ;;;
801
+ ;!T;io; ;i;["L.nav-collapse .nav > li > a:hover, .nav-collapse .dropdown-menu a:hover;[o; ;i;[;;;["background-color; @
802
+ ;i;
803
+ ;o;;i;";[o;;[ o;;i;@k;[o; ;i;["nav-collapse;@ko;;i;@k;[o; ;i;["nav;@k">o;;i;@k;[o;- ;i;.0;["li;@k">o;;i;@k;[o;- ;i;.0;["a;@ko:Sass::Selector::Pseudo
804
+ ;i: @arg0;["
805
+ hover;:
806
+ class;@ko;;[o;;i;@k;[o; ;i;["nav-collapse;@ko;;i;@k;[o; ;i;["dropdown-menu;@ko;;i;@k;[o;- ;i;.0;["a;@ko;:
807
+ ;i;;0;["
808
+ hover;;<;@k; @
809
+ ;!T;io; ;i;
810
+ i;[; @
811
+ ; 0;
812
+ ;i;
813
+ ;;;
814
+ ;i;
815
+ ;;;
816
+ ;!T;io; ;i#;
817
+ i;[; @
818
+ ; 0;
819
+ ;i;
820
+ ;;;
821
+ ;i;
822
+ ;;;
823
+ ;i;
824
+ ;;;
825
+ float; @
826
+ ;i;
827
+ ;;;
828
+ ;i;
829
+ ;;;
830
+ blocko; ;i*;[;;;["max-width; @
831
+ ;i;
832
+ ;;;
833
+ ;i;
834
+ ;;;
835
+ ;i;
836
+ ;;;
837
+ ;i;
838
+ ;;;
839
+ ;i;
840
+ ;;;
841
+ ;&[o;' ;i/;("0;)@�; @
842
+ ;*[;
843
+ ;&[o; ;i0; @
844
+ ;;;
845
+ ;!T;io; ;i2;["L.nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after;[o; ;i3;[;;;[" display; @
846
+ ;i;
847
+ ;;;
848
+ ;i2;;0;[" before;;<;@/o;;[o;;i2;@/;[o; ;i2;["nav-collapse;@/o;;i2;@/;[o; ;i2;["dropdown-menu;@/o;:
849
+ ;i2;;0;["
850
+ after;;<;@/; @
851
+ ;!T;io; ;i5;["*.nav-collapse .dropdown-menu .divider;[o; ;i6;[;;;[" display; @
852
+ ;i;
853
+ ;;;
854
+ ;!T;io; ;i8;
855
+ i;[; @
856
+ ; 0;
857
+ float; @
858
+ ;i;
859
+ ;;;
860
+ ;i;
861
+ ;
862
+ ;i;;0;7;8o;' ;i;;("2;)@�; @
863
+ ;*[;
864
+ ;9o;+ ;i;;,"baseLineHeight;"baseLineHeight; @
865
+ o;' ;i;;(" 15px;)[; @
866
+ ;*["px;
867
+ ;i;
868
+ ;
869
+ ;i<;0;7;8o;' ;i<;("2;)@�; @
870
+ ;*[;
871
+ ;9o;+ ;i<;,"baseLineHeight;"baseLineHeight; @
872
+ o;' ;i<;("0;)@�; @
873
+ ;*[;
874
+ ;i;
875
+ ;
876
+ ;*["px;
877
+ ;;;
878
+ solido;+ ;i=;,"navbarBackground;"navbarBackground; @
879
+ o; ;i>;[;;;["border-bottom; @
880
+ ;i;
881
+ ;
882
+ ;*["px;
883
+ ;;;
884
+ solido;+ ;i>;,"navbarBackground;"navbarBackground; @
885
+ o;2 ;i?;[;%{;"box-shadow; @
886
+ ;&[o: Sass::Script::Interpolation
887
+ comma; @
888
+ ;
889
+ ;
890
+ o; ;i?; @
891
+ ;;;
892
+ inseto;' ;i?;("0;)@�; @
893
+ ;*[;
894
+ ;*["px;
895
+ ;*[;
896
+ ;i?;%{;" rgba; @
897
+ ;&[ o;' ;i?;("255;)@�; @
898
+ ;*[;
899
+ ;*[;
900
+ ;*[;
901
+ ;*[;
902
+ ;
903
+ ;*[;
904
+ ;*["px;
905
+ ;*[;
906
+ ;i?;%{;" rgba; @
907
+ ;&[ o;' ;i?;("255;)@�; @
908
+ ;*[;
909
+ ;*[;
910
+ ;*[;
911
+ ;*[;
912
+ :@whitespace_after0: @before0;o;;i9;";[o;;[o;;i9;@ ;[o; ;i9;["nav-collapse;@ o;;i9;@ ;[o; ;i9;["navbar-form;@ o;;[o;;i9;@ ;[o; ;i9;["nav-collapse;@ o;;i9;@ ;[o; ;i9;["navbar-search;@ ; @
913
+ ;!T;io; ;iA;
914
+ i;[; @
915
+ ; 0;
916
+ float; @
917
+ ;i;
918
+ ;;;
919
+ ;i;
920
+ ;;;
921
+ ;!T;io; ;iF;
922
+ i;[; @
923
+ ; 0;
924
+ ;i;
925
+ ;;;
926
+ ;i;
927
+ ;;;
928
+ ;!T;io; ;iK;
929
+ i;[; @
930
+ ; 0;
931
+ ;i;
932
+ ;;;
933
+ block;o;;iL;";[o;;[o;;iL;@� ;[o; ;iL;[" navbar;@� o;;iL;@� ;[o; ;iL;["btn-navbar;@� ; @
934
+ ;!T;io; ;iP;
935
+ i;[; @
936
+ ; 0;
937
+ * ------------- */o; ;iR;["!.navbar-static .navbar-inner;[o; ;iS;[;;;["padding-left; @
938
+ ;i;
939
+ ;;;
940
+ ;i;
941
+ ;;;
942
+ ;!T;i; @
943
+ ;!T;i;
944
+ i;[; @
945
+ ; 0;
946
+ * --------------- */o; ;i\;
947
+ i;[; @
948
+ ; 0;
949
+ ;i;
950
+ ;;;
951
+ ;i;
952
+ ;;;
953
+ ;!T;i; @
954
+ ;!T;i;
955
+ i;[; @
956
+ ; 0;
957
+ * ------------------ */o;" ;ig;[o; ;ii;
958
+ i;[; @
959
+ ; 0;
960
+ ;&[o;+ ;ij;,"gridColumnWidthLarge;"gridColumnWidthLarge; @
961
+ o;+ ;ij;,"gridGutterWidthLarge;"gridGutterWidthLarge; @
962
+ o; ;il;
963
+ i;[; @
964
+ ; 0;
965
+ ;&[o;+ ;im;,"fluidGridColumnWidthLarge;"fluidGridColumnWidthLarge; @
966
+ o;+ ;im;,"fluidGridGutterWidthLarge;"fluidGridGutterWidthLarge; @
967
+ o; ;io;
968
+ i;[; @
969
+ ; 0;
970
+ ;&[o;+ ;ip;,"gridColumnWidthLarge;"gridColumnWidthLarge; @
971
+ o;+ ;ip;,"gridGutterWidthLarge;"gridGutterWidthLarge; @
972
+ o; ;ir;
973
+ i;[; @
974
+ ; 0;
975
+ ;i;
976
+ ;0:
977
+ minus; @
978
+ ;o;;is;";[o;;[o;;is;@"
979
+ ;[o; ;is;["thumbnails;@"
980
+ ; @
981
+ ;!T;io; ;iv;[".thumbnails > li;[o; ;iw;[;;;["margin-left; @
982
+ ;i;
983
+ ;o;;iv;";[o;;[o;;iv;@7
984
+ ;[o; ;iv;["thumbnails;@7
985
+ ">o;;iv;@7
986
+ ;[o;- ;iv;.0;["li;@7
987
+ ; @
988
+ ;!T;io; ;iy;[".row-fluid .thumbnails;[o; ;iz;[;;;["margin-left; @
989
+ ;i;
990
+ ;;;
991
+ ;[o; ;iy;["row-fluid;@Q
992
+ o;;iy;@Q
993
+ ;[o; ;iy;["thumbnails;@Q
994
+ ; @
995
+ ;!T;i; @
996
+ ;!T;i;
997
+ ;!T