818ae98391422270aed2d33bbe4f0d98fad083e4
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / gestures / resources / link-highlight-style.css
1 /*Used for applying style to a <span> so it looks like a highlight*/
2 .fauxHighlight {
3   background-color: rgb(0, 255, 0);
4   color: rgb(0, 255, 0);
5 }
6
7 .fauxHighlightSquare {
8   background-color: rgb(0, 255, 0);
9   color: rgb(0, 255, 0);
10 }
11
12 .opaqueHighlight {
13   -webkit-tap-highlight-color: rgb(0, 255, 0);
14 }
15
16 .transparentHighlight {
17   -webkit-tap-highlight-color: rgba(0, 255, 0, 0.5);
18 }
19
20 .activeLink {
21   color: rgb(0, 255, 0);
22 }
23
24 a {
25   text-decoration: none;
26 }
27
28 a:active {
29   color: rgb(0, 255, 0);
30 }
31
32 a.needsFix:active {
33   color: rgb(255, 255, 255);
34 }
35
36 /*Used for a floating DIV simulating a highlight*/
37 .highlightDiv {
38   background-color: rgb(0, 255, 0);
39   z-index: 1;
40   position: absolute;
41 }
42
43 .squaredHighlight {
44   -webkit-border-radius: 0px;
45 }
46
47 .composited {
48   -webkit-transform: translateZ(0);
49 }