blob: 3ac8ea857cb474de3ee31a84bb630a959f0c6a9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
input[type="text"], textarea, input[type="search"], input[type="url"] {
background-color: black !important;
color: white !important;
font-family: "Droid Sans Mono",Menlo,Monaco,"Courier New",monospace !important;
}
::-moz-placeholder {
color: white !important;
}
body {
font-family: "Droid Sans Mono",Menlo,Monaco,"Courier New",monospace !important;
}
/** shaarli fix **/
div.awesomplete > ul > li[aria-selected="true"] {
background: white !important;
color: black !important;
}
div.awesomplete mark {
background: black !important;
text-decoration: underline;
}
div.awesomplete li[aria-selected="true"] mark {
background: white !important;
text-decoration: underline;
}
|