summaryrefslogtreecommitdiff
path: root/res/css/partials/input-bar.scss
blob: ec91defc8ab75c39614af4e3e6c9be266e60c1e4 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.input-container {
  position: fixed;
  margin: $two-baselines 0 0 $doc-margin;

  form {
    display: inline;
  }
}


.input-bar {
  font-family: $base-font-family;
  color: $mid-grey;
  max-height: $three-baselines;
  width: 260px;
  padding: 6px 8px 5px 8px;
  border: 1px solid $mid-grey;
  background: white;
  transition-property: width;
  transition-duration: 200ms;
  transition-timing-function: ease-in;
  &:focus {
    border: 1px solid $mid-grey;
    width: 520px;
    -webkit-box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.3);  }
}

#textanalyser.ui-autocomplete-input {
  font-family: $base-font-family;
  color: $mid-grey;
}

.add-button {
  background: url(../img/plus-button.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: $magenta;
  position:relative;
  height: 36px;
  width: 36px;
  left: -39px;
  border: 0;
  top: 9px;
}

.add-button:hover {
  background-color: $dark-magenta;
}

.add-button:focus {
  outline: none;
}

.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;
}

.ui-helper-hidden-accessible > div {
    color: $dark-grey;
}