blob: 0b7df9f66eb7393baf57ef565a188e34f3c7fec6 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
.input-container {
position: relative;
margin: $two-baselines 0 0 $doc-margin;
form {
display: inline;
}
}
.input-bar {
font-family: $base-font-family;
color: $mid-grey;
height: $three-baselines;
width: 420px;
padding-left:8px;
border-radius: 4px;
border: 1px solid $mid-grey;
background: white;
&:focus {
border-radius: 4px;
border: 1px solid $mid-grey;
-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); }
}
#textanalyser.ui-autocomplete-input {
font-family: $base-font-family;
color: $mid-grey;
}
.add-button {
position:relative;
height: 30px;
width: 30px;
left: -38px;
top: 10px;
}
.suggestion{
list-style-type: none;
}
.suggestion td{
position:fixed;
}
.ui-helper-hidden-accessible{
position:fixed;
top: $three-baselines+$four-baselines+$four-baselines+35px+$three-baselines;
left:$doc-margin+8px;
text-shadow: -1px 1px 8px #E DE275, 1px -1px 8px #EDE275;
font-size:16px;
}
|