blob: 6cfc84f05ab958c9a87f6e668ac5ae4ef549f802 [file] [log] [blame]
Nils Diewald7cad8402014-07-08 17:06:56 +00001@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 Diewaldf3f88392014-07-15 14:56:29 +000019 margin-top: -1px;
Nils Diewald7cad8402014-07-08 17:06:56 +000020 text-indent: 0;
21 display: inline-block;
Nils Diewaldf3f88392014-07-15 14:56:29 +000022 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 Diewald7cad8402014-07-08 17:06:56 +000030 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 Diewaldf3f88392014-07-15 14:56:29 +000040 text-shadow: $light-shadow;
Nils Diewald7cad8402014-07-08 17:06:56 +000041 white-space: normal;
Nils Diewaldf3f88392014-07-15 14:56:29 +000042 color: $light-green;
Nils Diewald7cad8402014-07-08 17:06:56 +000043 > span {
44 float: right;
45 margin-left: 30pt;
46 text-align: right;
47 font-style: italic;
Nils Diewald7cad8402014-07-08 17:06:56 +000048 }
49 /* like sidebar ul li.active */
50 &.active {
Nils Diewaldf3f88392014-07-15 14:56:29 +000051 background-color: $light-green;
52 text-shadow: none;
53 color: $dark-green;
54 text-shadow: none;
Nils Diewald7cad8402014-07-08 17:06:56 +000055 }
56 }
57 }
58}