blob: 7f60f877f6b83f74312ac18ebae316970ebd6b1d [file] [log] [blame]
Nils Diewald7cad8402014-07-08 17:06:56 +00001@charset "utf-8";
2
3@import "colors";
4
Nils Diewaldeca30442014-11-18 20:33:54 +00005#searchbar > i.show-hint {
6 z-index: 0;
7 position: absolute;
8 right: 65px;
9 top: 0;
10 font-size: 120%;
11 line-height: 120%;
12 padding: 3pt;
13 color: $dark-orange;
14 &:hover, &.active {
15 color: $light-green;
16 cursor: pointer;
17 }
18}
19
Nils Diewald7cad8402014-07-08 17:06:56 +000020#searchMirror {
21 position: absolute;
22 margin-top: 1px;
23 white-space: nowrap;
24 overflow: show;
25 height: 0;
26 > span {
27 opacity: 0;
28 white-space: nowrap;
29 overflow: hidden;
30 }
31 > ul {
32 color: white;
33 margin: 0;
Nils Diewaldf3f88392014-07-15 14:56:29 +000034 margin-top: -1px;
Nils Diewald7cad8402014-07-08 17:06:56 +000035 text-indent: 0;
36 display: inline-block;
Nils Diewaldf3f88392014-07-15 14:56:29 +000037 background-color: $pagination-bg;
38 border: {
39 width: 2px;
40 style: solid;
41 top-width: 0px;
42 color: $pagination-border;
43 }
44 box-shadow: $pagination-box-shadow;
Nils Diewald7cad8402014-07-08 17:06:56 +000045 opacity: 0;
46 padding: 0;
Nils Diewaldeca30442014-11-18 20:33:54 +000047 padding-bottom: 5px;
Nils Diewald7cad8402014-07-08 17:06:56 +000048 border-bottom-left-radius: 10px;
49 border-bottom-right-radius: 10px;
50 > li {
Nils Diewaldeca30442014-11-18 20:33:54 +000051 cursor: pointer;
Nils Diewald7cad8402014-07-08 17:06:56 +000052 list-style-type: none;
53 list-style-position: outside;
Nils Diewaldeca30442014-11-18 20:33:54 +000054 padding: 3px 10pt;
Nils Diewaldf3f88392014-07-15 14:56:29 +000055 text-shadow: $light-shadow;
Nils Diewald7cad8402014-07-08 17:06:56 +000056 white-space: normal;
Nils Diewaldf3f88392014-07-15 14:56:29 +000057 color: $light-green;
Nils Diewaldeca30442014-11-18 20:33:54 +000058 border: {
59 top: 5px solid transparent;
60 bottom: 5px solid transparent;
61 }
62 &:hover {
63 background-color: $dark-orange;
64 color: white;
65 text-shadow: none;
66 }
Nils Diewald7cad8402014-07-08 17:06:56 +000067 > span {
68 float: right;
69 margin-left: 30pt;
70 text-align: right;
71 font-style: italic;
Nils Diewald7cad8402014-07-08 17:06:56 +000072 }
73 /* like sidebar ul li.active */
74 &.active {
Nils Diewaldf3f88392014-07-15 14:56:29 +000075 background-color: $light-green;
76 text-shadow: none;
77 color: $dark-green;
78 text-shadow: none;
Nils Diewald7cad8402014-07-08 17:06:56 +000079 }
Nils Diewaldeca30442014-11-18 20:33:54 +000080 &:first-of-type:not(.no-more) {
81 border-top-color: $middle-grey;
82 &.active {
83 border-top-color: $dark-orange;
84 }
85 }
86 &:last-of-type:not(.no-more) {
87 border-bottom-color: $middle-grey;
88 &.active {
89 border-bottom-color: $dark-orange;
90 }
91 }
Nils Diewald7cad8402014-07-08 17:06:56 +000092 }
93 }
94}