aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/controls/styles.css
blob: 1ed5c1f4e52019d60aa74fc33dea66186bbd3cff (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
.date-input-control {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.date-input-control-input {
  width: 105px;
  padding-left: 24px !important;
  cursor: pointer;
}

.date-input-control-icon {
  position: absolute;
  top: 5px;
  left: 5px;
}

.date-input-control-icon path {
  fill: #cdcdcd;
  transition: fill 0.3s ease;
}

.date-input-control-input:focus + .date-input-control-icon path {
  fill: #4b9fd5;
}