Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 1 | @charset "utf-8"; |
| 2 | |
| 3 | @import "colors"; |
| 4 | |
| 5 | #searchMirror { |
| 6 | position: absolute; |
| 7 | margin-top: 1px; |
| 8 | white-space: nowrap; |
| 9 | overflow: show; |
| 10 | height: 0; |
| 11 | > span { |
| 12 | opacity: 0; |
| 13 | white-space: nowrap; |
| 14 | overflow: hidden; |
| 15 | } |
| 16 | > ul { |
| 17 | color: white; |
| 18 | margin: 0; |
Nils Diewald | f3f8839 | 2014-07-15 14:56:29 +0000 | [diff] [blame] | 19 | margin-top: -1px; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 20 | text-indent: 0; |
| 21 | display: inline-block; |
Nils Diewald | f3f8839 | 2014-07-15 14:56:29 +0000 | [diff] [blame] | 22 | background-color: $pagination-bg; |
| 23 | border: { |
| 24 | width: 2px; |
| 25 | style: solid; |
| 26 | top-width: 0px; |
| 27 | color: $pagination-border; |
| 28 | } |
| 29 | box-shadow: $pagination-box-shadow; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 30 | opacity: 0; |
| 31 | padding: 0; |
| 32 | padding-top: 5px; |
| 33 | padding-bottom: 10px; |
| 34 | border-bottom-left-radius: 10px; |
| 35 | border-bottom-right-radius: 10px; |
| 36 | > li { |
| 37 | list-style-type: none; |
| 38 | list-style-position: outside; |
| 39 | padding: 3pt 10pt; |
Nils Diewald | f3f8839 | 2014-07-15 14:56:29 +0000 | [diff] [blame] | 40 | text-shadow: $light-shadow; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 41 | white-space: normal; |
Nils Diewald | f3f8839 | 2014-07-15 14:56:29 +0000 | [diff] [blame] | 42 | color: $light-green; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 43 | > span { |
| 44 | float: right; |
| 45 | margin-left: 30pt; |
| 46 | text-align: right; |
| 47 | font-style: italic; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 48 | } |
| 49 | /* like sidebar ul li.active */ |
| 50 | &.active { |
Nils Diewald | f3f8839 | 2014-07-15 14:56:29 +0000 | [diff] [blame] | 51 | background-color: $light-green; |
| 52 | text-shadow: none; |
| 53 | color: $dark-green; |
| 54 | text-shadow: none; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 55 | } |
| 56 | } |
| 57 | } |
| 58 | } |