blob: 470cd1730fe6d0b1a585be7d019bf5b32337c9e0 [file] [log] [blame]
Nils Diewald5c5a7472015-04-02 22:13:38 +00001@charset "utf-8";
2@import "util";
3
4$border-size: 2px;
5
6ul.menu.hint {
7 text-align:left;
8// margin-left: -1 * $border-size;
9 max-width: 23em !important;
10 min-width: 7em;
11
12 > li:first-of-type {
13 border-top: {
14 width: 1px;
15 left-radius: 0;
16 right-radius: 0;
17 }
18 }
19 span.desc {
20 display: block;
21 font-size: 75%;
22 }
23}
24
25#searchMirror {
26 position: absolute;
27 left: 0;
28 top: 0;
29 white-space: pre-wrap;
30 overflow: show;
31 height: 0;
32 > span {
33 display: block;
34 opacity: 0;
35 white-space: pre-wrap;
36 overflow: hidden;
37 }
38 // Todo: Besser nur, wenn im Focus
39 > div {
40 cursor: pointer;
41 transition: left 0.3s ease 0s;
42 position: absolute;
43 top: 0;
44 left: 0;
45 text-align: center;
46 padding: 0;
47 border-top: 5px solid $dark-orange;
48
49 height: 10px;
50 width: 1.2em;
51
52 &:hover {
53/*
54 border: {
55 width: $border-size;
56 style: solid;
57 radius: $standard-border-radius;
58 top: {
59 left-radius: 0;
60 right-radius: 0;
61 width: 0px;
62 }
63 }
64 @include choose-hover;
65*/
66 border-top: 10px solid $dark-orange;
67 }
68 }
69}