| @charset "utf-8"; |
| |
| @import "colors"; |
| |
| #searchMirror { |
| position: absolute; |
| margin-top: 1px; |
| white-space: nowrap; |
| overflow: show; |
| height: 0; |
| > span { |
| opacity: 0; |
| white-space: nowrap; |
| overflow: hidden; |
| } |
| > ul { |
| color: white; |
| margin: 0; |
| margin-top: -1px; |
| text-indent: 0; |
| display: inline-block; |
| background-color: $pagination-bg; |
| border: { |
| width: 2px; |
| style: solid; |
| top-width: 0px; |
| color: $pagination-border; |
| } |
| box-shadow: $pagination-box-shadow; |
| opacity: 0; |
| padding: 0; |
| padding-top: 5px; |
| padding-bottom: 10px; |
| border-bottom-left-radius: 10px; |
| border-bottom-right-radius: 10px; |
| > li { |
| list-style-type: none; |
| list-style-position: outside; |
| padding: 3pt 10pt; |
| text-shadow: $light-shadow; |
| white-space: normal; |
| color: $light-green; |
| > span { |
| float: right; |
| margin-left: 30pt; |
| text-align: right; |
| font-style: italic; |
| } |
| /* like sidebar ul li.active */ |
| &.active { |
| background-color: $light-green; |
| text-shadow: none; |
| color: $dark-green; |
| text-shadow: none; |
| } |
| } |
| } |
| } |