adhoq 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +22 -0
  3. data/README.md +80 -0
  4. data/Rakefile +28 -0
  5. data/app/assets/javascripts/adhoq/application.js +19 -0
  6. data/app/assets/javascripts/adhoq/bootstrap-sprockets.js +12 -0
  7. data/app/assets/javascripts/adhoq/bootstrap.js +2107 -0
  8. data/app/assets/javascripts/adhoq/bootstrap/affix.js +142 -0
  9. data/app/assets/javascripts/adhoq/bootstrap/alert.js +92 -0
  10. data/app/assets/javascripts/adhoq/bootstrap/button.js +110 -0
  11. data/app/assets/javascripts/adhoq/bootstrap/carousel.js +223 -0
  12. data/app/assets/javascripts/adhoq/bootstrap/collapse.js +170 -0
  13. data/app/assets/javascripts/adhoq/bootstrap/dropdown.js +151 -0
  14. data/app/assets/javascripts/adhoq/bootstrap/modal.js +280 -0
  15. data/app/assets/javascripts/adhoq/bootstrap/popover.js +113 -0
  16. data/app/assets/javascripts/adhoq/bootstrap/scrollspy.js +170 -0
  17. data/app/assets/javascripts/adhoq/bootstrap/tab.js +128 -0
  18. data/app/assets/javascripts/adhoq/bootstrap/tooltip.js +457 -0
  19. data/app/assets/javascripts/adhoq/bootstrap/transition.js +59 -0
  20. data/app/assets/javascripts/adhoq/previewer.js.coffee +25 -0
  21. data/app/assets/stylesheets/adhoq/_bootstrap-compass.scss +7 -0
  22. data/app/assets/stylesheets/adhoq/_bootstrap-mincer.scss +17 -0
  23. data/app/assets/stylesheets/adhoq/_bootstrap-sprockets.scss +7 -0
  24. data/app/assets/stylesheets/adhoq/adhoq.css.sass +57 -0
  25. data/app/assets/stylesheets/adhoq/application.css +16 -0
  26. data/app/assets/stylesheets/adhoq/bootstrap.scss +50 -0
  27. data/app/assets/stylesheets/adhoq/bootstrap/_alerts.scss +68 -0
  28. data/app/assets/stylesheets/adhoq/bootstrap/_badges.scss +57 -0
  29. data/app/assets/stylesheets/adhoq/bootstrap/_breadcrumbs.scss +26 -0
  30. data/app/assets/stylesheets/adhoq/bootstrap/_button-groups.scss +240 -0
  31. data/app/assets/stylesheets/adhoq/bootstrap/_buttons.scss +157 -0
  32. data/app/assets/stylesheets/adhoq/bootstrap/_carousel.scss +243 -0
  33. data/app/assets/stylesheets/adhoq/bootstrap/_close.scss +35 -0
  34. data/app/assets/stylesheets/adhoq/bootstrap/_code.scss +68 -0
  35. data/app/assets/stylesheets/adhoq/bootstrap/_component-animations.scss +35 -0
  36. data/app/assets/stylesheets/adhoq/bootstrap/_dropdowns.scss +215 -0
  37. data/app/assets/stylesheets/adhoq/bootstrap/_forms.scss +538 -0
  38. data/app/assets/stylesheets/adhoq/bootstrap/_glyphicons.scss +237 -0
  39. data/app/assets/stylesheets/adhoq/bootstrap/_grid.scss +84 -0
  40. data/app/assets/stylesheets/adhoq/bootstrap/_input-groups.scss +166 -0
  41. data/app/assets/stylesheets/adhoq/bootstrap/_jumbotron.scss +48 -0
  42. data/app/assets/stylesheets/adhoq/bootstrap/_labels.scss +66 -0
  43. data/app/assets/stylesheets/adhoq/bootstrap/_list-group.scss +131 -0
  44. data/app/assets/stylesheets/adhoq/bootstrap/_media.scss +56 -0
  45. data/app/assets/stylesheets/adhoq/bootstrap/_mixins.scss +39 -0
  46. data/app/assets/stylesheets/adhoq/bootstrap/_modals.scss +150 -0
  47. data/app/assets/stylesheets/adhoq/bootstrap/_navbar.scss +659 -0
  48. data/app/assets/stylesheets/adhoq/bootstrap/_navs.scss +242 -0
  49. data/app/assets/stylesheets/adhoq/bootstrap/_normalize.scss +425 -0
  50. data/app/assets/stylesheets/adhoq/bootstrap/_pager.scss +55 -0
  51. data/app/assets/stylesheets/adhoq/bootstrap/_pagination.scss +88 -0
  52. data/app/assets/stylesheets/adhoq/bootstrap/_panels.scss +243 -0
  53. data/app/assets/stylesheets/adhoq/bootstrap/_popovers.scss +133 -0
  54. data/app/assets/stylesheets/adhoq/bootstrap/_print.scss +101 -0
  55. data/app/assets/stylesheets/adhoq/bootstrap/_progress-bars.scss +105 -0
  56. data/app/assets/stylesheets/adhoq/bootstrap/_responsive-embed.scss +34 -0
  57. data/app/assets/stylesheets/adhoq/bootstrap/_responsive-utilities.scss +174 -0
  58. data/app/assets/stylesheets/adhoq/bootstrap/_scaffolding.scss +150 -0
  59. data/app/assets/stylesheets/adhoq/bootstrap/_tables.scss +233 -0
  60. data/app/assets/stylesheets/adhoq/bootstrap/_theme.scss +258 -0
  61. data/app/assets/stylesheets/adhoq/bootstrap/_thumbnails.scss +38 -0
  62. data/app/assets/stylesheets/adhoq/bootstrap/_tooltip.scss +95 -0
  63. data/app/assets/stylesheets/adhoq/bootstrap/_type.scss +304 -0
  64. data/app/assets/stylesheets/adhoq/bootstrap/_utilities.scss +57 -0
  65. data/app/assets/stylesheets/adhoq/bootstrap/_variables.scss +850 -0
  66. data/app/assets/stylesheets/adhoq/bootstrap/_wells.scss +29 -0
  67. data/app/assets/stylesheets/adhoq/bootstrap/bootstrap.scss +50 -0
  68. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_alerts.scss +14 -0
  69. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_background-variant.scss +11 -0
  70. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_border-radius.scss +18 -0
  71. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_buttons.scss +50 -0
  72. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_center-block.scss +7 -0
  73. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_clearfix.scss +22 -0
  74. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_forms.scss +84 -0
  75. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_gradients.scss +58 -0
  76. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_grid-framework.scss +81 -0
  77. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_grid.scss +122 -0
  78. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_hide-text.scss +21 -0
  79. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_image.scss +34 -0
  80. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_labels.scss +12 -0
  81. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_list-group.scss +31 -0
  82. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_nav-divider.scss +10 -0
  83. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  84. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_opacity.scss +8 -0
  85. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_pagination.scss +23 -0
  86. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_panels.scss +24 -0
  87. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_progress-bar.scss +10 -0
  88. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_reset-filter.scss +8 -0
  89. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_resize.scss +6 -0
  90. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_responsive-visibility.scss +21 -0
  91. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_size.scss +10 -0
  92. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_tab-focus.scss +9 -0
  93. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_table-row.scss +28 -0
  94. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_text-emphasis.scss +11 -0
  95. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_text-overflow.scss +8 -0
  96. data/app/assets/stylesheets/adhoq/bootstrap/mixins/_vendor-prefixes.scss +219 -0
  97. data/app/controllers/adhoq/application_controller.rb +5 -0
  98. data/app/controllers/adhoq/authorization_methods.rb +36 -0
  99. data/app/controllers/adhoq/executions_controller.rb +25 -0
  100. data/app/controllers/adhoq/previews_controller.rb +13 -0
  101. data/app/controllers/adhoq/queries_controller.rb +38 -0
  102. data/app/helpers/adhoq/application_helper.rb +11 -0
  103. data/app/models/adhoq/execution.rb +29 -0
  104. data/app/models/adhoq/query.rb +14 -0
  105. data/app/models/adhoq/report.rb +42 -0
  106. data/app/models/adhoq/time_based_orders.rb +9 -0
  107. data/app/views/adhoq/application/_global_nav.html.slim +11 -0
  108. data/app/views/adhoq/application/_sidebar_queries_index.html.slim +10 -0
  109. data/app/views/adhoq/previews/create.html.slim +12 -0
  110. data/app/views/adhoq/previews/statement_invalid.html.slim +5 -0
  111. data/app/views/adhoq/queries/_form.html.slim +38 -0
  112. data/app/views/adhoq/queries/_query.html.slim +43 -0
  113. data/app/views/adhoq/queries/edit.html.slim +2 -0
  114. data/app/views/adhoq/queries/index.html.slim +1 -0
  115. data/app/views/adhoq/queries/new.html.slim +2 -0
  116. data/app/views/adhoq/queries/show.html.slim +1 -0
  117. data/app/views/layouts/adhoq/application.html.slim +18 -0
  118. data/config/routes.rb +9 -0
  119. data/db/migrate/20141003095645_create_adhoq_queries.rb +11 -0
  120. data/db/migrate/20141006014750_create_adhoq_executions.rb +13 -0
  121. data/db/migrate/20141007052308_create_adhoq_reports.rb +12 -0
  122. data/lib/adhoq.rb +13 -0
  123. data/lib/adhoq/configuration.rb +21 -0
  124. data/lib/adhoq/engine.rb +15 -0
  125. data/lib/adhoq/error.rb +4 -0
  126. data/lib/adhoq/executor.rb +27 -0
  127. data/lib/adhoq/global_variable.rb +34 -0
  128. data/lib/adhoq/reporter.rb +5 -0
  129. data/lib/adhoq/reporter/xlsx.rb +32 -0
  130. data/lib/adhoq/result.rb +18 -0
  131. data/lib/adhoq/storage.rb +5 -0
  132. data/lib/adhoq/storage/local_file.rb +45 -0
  133. data/lib/adhoq/version.rb +3 -0
  134. data/lib/tasks/adhoq_tasks.rake +4 -0
  135. data/spec/adhoq/executor_spec.rb +11 -0
  136. data/spec/adhoq/storage_spec.rb +19 -0
  137. data/spec/factories/adhoq_queries.rb +29 -0
  138. data/spec/models/adhoq/execution_spec.rb +4 -0
  139. data/spec/models/adhoq/query_spec.rb +4 -0
  140. data/spec/models/adhoq/report_spec.rb +25 -0
  141. data/spec/spec_helper.rb +36 -0
  142. data/spec/support/have_values_in_xlsx_sheet_matcher.rb +20 -0
  143. metadata +375 -0
@@ -0,0 +1,659 @@
1
+ //
2
+ // Navbars
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Wrapper and base class
7
+ //
8
+ // Provide a static navbar from which we expand to create full-width, fixed, and
9
+ // other navbar variations.
10
+
11
+ .navbar {
12
+ position: relative;
13
+ min-height: $navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)
14
+ margin-bottom: $navbar-margin-bottom;
15
+ border: 1px solid transparent;
16
+
17
+ // Prevent floats from breaking the navbar
18
+ @include clearfix();
19
+
20
+ @media (min-width: $grid-float-breakpoint) {
21
+ border-radius: $navbar-border-radius;
22
+ }
23
+ }
24
+
25
+
26
+ // Navbar heading
27
+ //
28
+ // Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy
29
+ // styling of responsive aspects.
30
+
31
+ .navbar-header {
32
+ @include clearfix();
33
+
34
+ @media (min-width: $grid-float-breakpoint) {
35
+ float: left;
36
+ }
37
+ }
38
+
39
+
40
+ // Navbar collapse (body)
41
+ //
42
+ // Group your navbar content into this for easy collapsing and expanding across
43
+ // various device sizes. By default, this content is collapsed when <768px, but
44
+ // will expand past that for a horizontal display.
45
+ //
46
+ // To start (on mobile devices) the navbar links, forms, and buttons are stacked
47
+ // vertically and include a `max-height` to overflow in case you have too much
48
+ // content for the user's viewport.
49
+
50
+ .navbar-collapse {
51
+ overflow-x: visible;
52
+ padding-right: $navbar-padding-horizontal;
53
+ padding-left: $navbar-padding-horizontal;
54
+ border-top: 1px solid transparent;
55
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
56
+ @include clearfix();
57
+ -webkit-overflow-scrolling: touch;
58
+
59
+ &.in {
60
+ overflow-y: auto;
61
+ }
62
+
63
+ @media (min-width: $grid-float-breakpoint) {
64
+ width: auto;
65
+ border-top: 0;
66
+ box-shadow: none;
67
+
68
+ &.collapse {
69
+ display: block !important;
70
+ height: auto !important;
71
+ padding-bottom: 0; // Override default setting
72
+ overflow: visible !important;
73
+ }
74
+
75
+ &.in {
76
+ overflow-y: visible;
77
+ }
78
+
79
+ // Undo the collapse side padding for navbars with containers to ensure
80
+ // alignment of right-aligned contents.
81
+ .navbar-fixed-top &,
82
+ .navbar-static-top &,
83
+ .navbar-fixed-bottom & {
84
+ padding-left: 0;
85
+ padding-right: 0;
86
+ }
87
+ }
88
+ }
89
+
90
+ .navbar-fixed-top,
91
+ .navbar-fixed-bottom {
92
+ .navbar-collapse {
93
+ max-height: $navbar-collapse-max-height;
94
+
95
+ @media (max-width: $screen-xs-min) and (orientation: landscape) {
96
+ max-height: 200px;
97
+ }
98
+ }
99
+ }
100
+
101
+
102
+ // Both navbar header and collapse
103
+ //
104
+ // When a container is present, change the behavior of the header and collapse.
105
+
106
+ .container,
107
+ .container-fluid {
108
+ > .navbar-header,
109
+ > .navbar-collapse {
110
+ margin-right: -$navbar-padding-horizontal;
111
+ margin-left: -$navbar-padding-horizontal;
112
+
113
+ @media (min-width: $grid-float-breakpoint) {
114
+ margin-right: 0;
115
+ margin-left: 0;
116
+ }
117
+ }
118
+ }
119
+
120
+
121
+ //
122
+ // Navbar alignment options
123
+ //
124
+ // Display the navbar across the entirety of the page or fixed it to the top or
125
+ // bottom of the page.
126
+
127
+ // Static top (unfixed, but 100% wide) navbar
128
+ .navbar-static-top {
129
+ z-index: $zindex-navbar;
130
+ border-width: 0 0 1px;
131
+
132
+ @media (min-width: $grid-float-breakpoint) {
133
+ border-radius: 0;
134
+ }
135
+ }
136
+
137
+ // Fix the top/bottom navbars when screen real estate supports it
138
+ .navbar-fixed-top,
139
+ .navbar-fixed-bottom {
140
+ position: fixed;
141
+ right: 0;
142
+ left: 0;
143
+ z-index: $zindex-navbar-fixed;
144
+ @include translate3d(0, 0, 0);
145
+
146
+ // Undo the rounded corners
147
+ @media (min-width: $grid-float-breakpoint) {
148
+ border-radius: 0;
149
+ }
150
+ }
151
+ .navbar-fixed-top {
152
+ top: 0;
153
+ border-width: 0 0 1px;
154
+ }
155
+ .navbar-fixed-bottom {
156
+ bottom: 0;
157
+ margin-bottom: 0; // override .navbar defaults
158
+ border-width: 1px 0 0;
159
+ }
160
+
161
+
162
+ // Brand/project name
163
+
164
+ .navbar-brand {
165
+ float: left;
166
+ padding: $navbar-padding-vertical $navbar-padding-horizontal;
167
+ font-size: $font-size-large;
168
+ line-height: $line-height-computed;
169
+ height: $navbar-height;
170
+
171
+ &:hover,
172
+ &:focus {
173
+ text-decoration: none;
174
+ }
175
+
176
+ @media (min-width: $grid-float-breakpoint) {
177
+ .navbar > .container &,
178
+ .navbar > .container-fluid & {
179
+ margin-left: -$navbar-padding-horizontal;
180
+ }
181
+ }
182
+ }
183
+
184
+
185
+ // Navbar toggle
186
+ //
187
+ // Custom button for toggling the `.navbar-collapse`, powered by the collapse
188
+ // JavaScript plugin.
189
+
190
+ .navbar-toggle {
191
+ position: relative;
192
+ float: right;
193
+ margin-right: $navbar-padding-horizontal;
194
+ padding: 9px 10px;
195
+ @include navbar-vertical-align(34px);
196
+ background-color: transparent;
197
+ background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
198
+ border: 1px solid transparent;
199
+ border-radius: $border-radius-base;
200
+
201
+ // We remove the `outline` here, but later compensate by attaching `:hover`
202
+ // styles to `:focus`.
203
+ &:focus {
204
+ outline: 0;
205
+ }
206
+
207
+ // Bars
208
+ .icon-bar {
209
+ display: block;
210
+ width: 22px;
211
+ height: 2px;
212
+ border-radius: 1px;
213
+ }
214
+ .icon-bar + .icon-bar {
215
+ margin-top: 4px;
216
+ }
217
+
218
+ @media (min-width: $grid-float-breakpoint) {
219
+ display: none;
220
+ }
221
+ }
222
+
223
+
224
+ // Navbar nav links
225
+ //
226
+ // Builds on top of the `.nav` components with its own modifier class to make
227
+ // the nav the full height of the horizontal nav (above 768px).
228
+
229
+ .navbar-nav {
230
+ margin: ($navbar-padding-vertical / 2) (-$navbar-padding-horizontal);
231
+
232
+ > li > a {
233
+ padding-top: 10px;
234
+ padding-bottom: 10px;
235
+ line-height: $line-height-computed;
236
+ }
237
+
238
+ @media (max-width: $grid-float-breakpoint-max) {
239
+ // Dropdowns get custom display when collapsed
240
+ .open .dropdown-menu {
241
+ position: static;
242
+ float: none;
243
+ width: auto;
244
+ margin-top: 0;
245
+ background-color: transparent;
246
+ border: 0;
247
+ box-shadow: none;
248
+ > li > a,
249
+ .dropdown-header {
250
+ padding: 5px 15px 5px 25px;
251
+ }
252
+ > li > a {
253
+ line-height: $line-height-computed;
254
+ &:hover,
255
+ &:focus {
256
+ background-image: none;
257
+ }
258
+ }
259
+ }
260
+ }
261
+
262
+ // Uncollapse the nav
263
+ @media (min-width: $grid-float-breakpoint) {
264
+ float: left;
265
+ margin: 0;
266
+
267
+ > li {
268
+ float: left;
269
+ > a {
270
+ padding-top: $navbar-padding-vertical;
271
+ padding-bottom: $navbar-padding-vertical;
272
+ }
273
+ }
274
+
275
+ &.navbar-right:last-child {
276
+ margin-right: -$navbar-padding-horizontal;
277
+ }
278
+ }
279
+ }
280
+
281
+
282
+ // Component alignment
283
+ //
284
+ // Repurpose the pull utilities as their own navbar utilities to avoid specificity
285
+ // issues with parents and chaining. Only do this when the navbar is uncollapsed
286
+ // though so that navbar contents properly stack and align in mobile.
287
+
288
+ @media (min-width: $grid-float-breakpoint) {
289
+ .navbar-left {
290
+ float: left !important;
291
+ }
292
+ .navbar-right {
293
+ float: right !important;
294
+ }
295
+ }
296
+
297
+
298
+ // Navbar form
299
+ //
300
+ // Extension of the `.form-inline` with some extra flavor for optimum display in
301
+ // our navbars.
302
+
303
+ .navbar-form {
304
+ margin-left: -$navbar-padding-horizontal;
305
+ margin-right: -$navbar-padding-horizontal;
306
+ padding: 10px $navbar-padding-horizontal;
307
+ border-top: 1px solid transparent;
308
+ border-bottom: 1px solid transparent;
309
+ $shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
310
+ @include box-shadow($shadow);
311
+
312
+ // Mixin behavior for optimum display
313
+ @extend .form-inline;
314
+
315
+ .form-group {
316
+ @media (max-width: $grid-float-breakpoint-max) {
317
+ margin-bottom: 5px;
318
+ }
319
+ }
320
+
321
+ // Vertically center in expanded, horizontal navbar
322
+ @include navbar-vertical-align($input-height-base);
323
+
324
+ // Undo 100% width for pull classes
325
+ @media (min-width: $grid-float-breakpoint) {
326
+ width: auto;
327
+ border: 0;
328
+ margin-left: 0;
329
+ margin-right: 0;
330
+ padding-top: 0;
331
+ padding-bottom: 0;
332
+ @include box-shadow(none);
333
+
334
+ // Outdent the form if last child to line up with content down the page
335
+ &.navbar-right:last-child {
336
+ margin-right: -$navbar-padding-horizontal;
337
+ }
338
+ }
339
+ }
340
+
341
+
342
+ // Dropdown menus
343
+
344
+ // Menu position and menu carets
345
+ .navbar-nav > li > .dropdown-menu {
346
+ margin-top: 0;
347
+ @include border-top-radius(0);
348
+ }
349
+ // Menu position and menu caret support for dropups via extra dropup class
350
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
351
+ @include border-bottom-radius(0);
352
+ }
353
+
354
+
355
+ // Buttons in navbars
356
+ //
357
+ // Vertically center a button within a navbar (when *not* in a form).
358
+
359
+ .navbar-btn {
360
+ @include navbar-vertical-align($input-height-base);
361
+
362
+ &.btn-sm {
363
+ @include navbar-vertical-align($input-height-small);
364
+ }
365
+ &.btn-xs {
366
+ @include navbar-vertical-align(22);
367
+ }
368
+ }
369
+
370
+
371
+ // Text in navbars
372
+ //
373
+ // Add a class to make any element properly align itself vertically within the navbars.
374
+
375
+ .navbar-text {
376
+ @include navbar-vertical-align($line-height-computed);
377
+
378
+ @media (min-width: $grid-float-breakpoint) {
379
+ float: left;
380
+ margin-left: $navbar-padding-horizontal;
381
+ margin-right: $navbar-padding-horizontal;
382
+
383
+ // Outdent the form if last child to line up with content down the page
384
+ &.navbar-right:last-child {
385
+ margin-right: 0;
386
+ }
387
+ }
388
+ }
389
+
390
+ // Alternate navbars
391
+ // --------------------------------------------------
392
+
393
+ // Default navbar
394
+ .navbar-default {
395
+ background-color: $navbar-default-bg;
396
+ border-color: $navbar-default-border;
397
+
398
+ .navbar-brand {
399
+ color: $navbar-default-brand-color;
400
+ &:hover,
401
+ &:focus {
402
+ color: $navbar-default-brand-hover-color;
403
+ background-color: $navbar-default-brand-hover-bg;
404
+ }
405
+ }
406
+
407
+ .navbar-text {
408
+ color: $navbar-default-color;
409
+ }
410
+
411
+ .navbar-nav {
412
+ > li > a {
413
+ color: $navbar-default-link-color;
414
+
415
+ &:hover,
416
+ &:focus {
417
+ color: $navbar-default-link-hover-color;
418
+ background-color: $navbar-default-link-hover-bg;
419
+ }
420
+ }
421
+ > .active > a {
422
+ &,
423
+ &:hover,
424
+ &:focus {
425
+ color: $navbar-default-link-active-color;
426
+ background-color: $navbar-default-link-active-bg;
427
+ }
428
+ }
429
+ > .disabled > a {
430
+ &,
431
+ &:hover,
432
+ &:focus {
433
+ color: $navbar-default-link-disabled-color;
434
+ background-color: $navbar-default-link-disabled-bg;
435
+ }
436
+ }
437
+ }
438
+
439
+ .navbar-toggle {
440
+ border-color: $navbar-default-toggle-border-color;
441
+ &:hover,
442
+ &:focus {
443
+ background-color: $navbar-default-toggle-hover-bg;
444
+ }
445
+ .icon-bar {
446
+ background-color: $navbar-default-toggle-icon-bar-bg;
447
+ }
448
+ }
449
+
450
+ .navbar-collapse,
451
+ .navbar-form {
452
+ border-color: $navbar-default-border;
453
+ }
454
+
455
+ // Dropdown menu items
456
+ .navbar-nav {
457
+ // Remove background color from open dropdown
458
+ > .open > a {
459
+ &,
460
+ &:hover,
461
+ &:focus {
462
+ background-color: $navbar-default-link-active-bg;
463
+ color: $navbar-default-link-active-color;
464
+ }
465
+ }
466
+
467
+ @media (max-width: $grid-float-breakpoint-max) {
468
+ // Dropdowns get custom display when collapsed
469
+ .open .dropdown-menu {
470
+ > li > a {
471
+ color: $navbar-default-link-color;
472
+ &:hover,
473
+ &:focus {
474
+ color: $navbar-default-link-hover-color;
475
+ background-color: $navbar-default-link-hover-bg;
476
+ }
477
+ }
478
+ > .active > a {
479
+ &,
480
+ &:hover,
481
+ &:focus {
482
+ color: $navbar-default-link-active-color;
483
+ background-color: $navbar-default-link-active-bg;
484
+ }
485
+ }
486
+ > .disabled > a {
487
+ &,
488
+ &:hover,
489
+ &:focus {
490
+ color: $navbar-default-link-disabled-color;
491
+ background-color: $navbar-default-link-disabled-bg;
492
+ }
493
+ }
494
+ }
495
+ }
496
+ }
497
+
498
+
499
+ // Links in navbars
500
+ //
501
+ // Add a class to ensure links outside the navbar nav are colored correctly.
502
+
503
+ .navbar-link {
504
+ color: $navbar-default-link-color;
505
+ &:hover {
506
+ color: $navbar-default-link-hover-color;
507
+ }
508
+ }
509
+
510
+ .btn-link {
511
+ color: $navbar-default-link-color;
512
+ &:hover,
513
+ &:focus {
514
+ color: $navbar-default-link-hover-color;
515
+ }
516
+ &[disabled],
517
+ fieldset[disabled] & {
518
+ &:hover,
519
+ &:focus {
520
+ color: $navbar-default-link-disabled-color;
521
+ }
522
+ }
523
+ }
524
+ }
525
+
526
+ // Inverse navbar
527
+
528
+ .navbar-inverse {
529
+ background-color: $navbar-inverse-bg;
530
+ border-color: $navbar-inverse-border;
531
+
532
+ .navbar-brand {
533
+ color: $navbar-inverse-brand-color;
534
+ &:hover,
535
+ &:focus {
536
+ color: $navbar-inverse-brand-hover-color;
537
+ background-color: $navbar-inverse-brand-hover-bg;
538
+ }
539
+ }
540
+
541
+ .navbar-text {
542
+ color: $navbar-inverse-color;
543
+ }
544
+
545
+ .navbar-nav {
546
+ > li > a {
547
+ color: $navbar-inverse-link-color;
548
+
549
+ &:hover,
550
+ &:focus {
551
+ color: $navbar-inverse-link-hover-color;
552
+ background-color: $navbar-inverse-link-hover-bg;
553
+ }
554
+ }
555
+ > .active > a {
556
+ &,
557
+ &:hover,
558
+ &:focus {
559
+ color: $navbar-inverse-link-active-color;
560
+ background-color: $navbar-inverse-link-active-bg;
561
+ }
562
+ }
563
+ > .disabled > a {
564
+ &,
565
+ &:hover,
566
+ &:focus {
567
+ color: $navbar-inverse-link-disabled-color;
568
+ background-color: $navbar-inverse-link-disabled-bg;
569
+ }
570
+ }
571
+ }
572
+
573
+ // Darken the responsive nav toggle
574
+ .navbar-toggle {
575
+ border-color: $navbar-inverse-toggle-border-color;
576
+ &:hover,
577
+ &:focus {
578
+ background-color: $navbar-inverse-toggle-hover-bg;
579
+ }
580
+ .icon-bar {
581
+ background-color: $navbar-inverse-toggle-icon-bar-bg;
582
+ }
583
+ }
584
+
585
+ .navbar-collapse,
586
+ .navbar-form {
587
+ border-color: darken($navbar-inverse-bg, 7%);
588
+ }
589
+
590
+ // Dropdowns
591
+ .navbar-nav {
592
+ > .open > a {
593
+ &,
594
+ &:hover,
595
+ &:focus {
596
+ background-color: $navbar-inverse-link-active-bg;
597
+ color: $navbar-inverse-link-active-color;
598
+ }
599
+ }
600
+
601
+ @media (max-width: $grid-float-breakpoint-max) {
602
+ // Dropdowns get custom display
603
+ .open .dropdown-menu {
604
+ > .dropdown-header {
605
+ border-color: $navbar-inverse-border;
606
+ }
607
+ .divider {
608
+ background-color: $navbar-inverse-border;
609
+ }
610
+ > li > a {
611
+ color: $navbar-inverse-link-color;
612
+ &:hover,
613
+ &:focus {
614
+ color: $navbar-inverse-link-hover-color;
615
+ background-color: $navbar-inverse-link-hover-bg;
616
+ }
617
+ }
618
+ > .active > a {
619
+ &,
620
+ &:hover,
621
+ &:focus {
622
+ color: $navbar-inverse-link-active-color;
623
+ background-color: $navbar-inverse-link-active-bg;
624
+ }
625
+ }
626
+ > .disabled > a {
627
+ &,
628
+ &:hover,
629
+ &:focus {
630
+ color: $navbar-inverse-link-disabled-color;
631
+ background-color: $navbar-inverse-link-disabled-bg;
632
+ }
633
+ }
634
+ }
635
+ }
636
+ }
637
+
638
+ .navbar-link {
639
+ color: $navbar-inverse-link-color;
640
+ &:hover {
641
+ color: $navbar-inverse-link-hover-color;
642
+ }
643
+ }
644
+
645
+ .btn-link {
646
+ color: $navbar-inverse-link-color;
647
+ &:hover,
648
+ &:focus {
649
+ color: $navbar-inverse-link-hover-color;
650
+ }
651
+ &[disabled],
652
+ fieldset[disabled] & {
653
+ &:hover,
654
+ &:focus {
655
+ color: $navbar-inverse-link-disabled-color;
656
+ }
657
+ }
658
+ }
659
+ }