Issues (377)

modules/tooltips/tooltip.css (23 issues)

1
@charset "UTF-8";
2
.tooltip-wrapper {
3
  float: right;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
4
  position: relative;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
5
}
6
.tooltip-wrapper .tooltip-trigger {
7
  text-decoration: none;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
8
  cursor: help;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
9
}
10
.tooltip-wrapper .tooltip-content {
11
  position: absolute;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
12
  width: 200px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
13
  height: auto;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
14
  top: -10px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
15
  left: -225px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
16
  background: #FFC107;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
17
  color: #000;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
18
  padding: 10px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
19
  z-index: 99999;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
20
  border-radius: 3px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
21
  line-height: 1.4em;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
22
}
23
.tooltip-wrapper .tooltip-content a {
24
  color: #000;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
25
}
26
.tooltip-wrapper .tooltip-content:after {
27
  content: "";
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
28
  font-family: dashicons;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
29
  position: absolute;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
30
  right: -12px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
31
  top: 11px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
32
  color: #FFC107;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
33
  font-size: 20px;
0 ignored issues
show
Found precision alignment of 2 spaces.
Loading history...
34
}
35
36
/*# sourceMappingURL=tooltip.css.map */
37