14 lines
172 B
CSS
14 lines
172 B
CSS
.watchButtonHelper {
|
|
fill-opacity: 0;
|
|
}
|
|
|
|
.watchButtonHelper:hover {
|
|
fill: beige;
|
|
fill-opacity: 0.5;
|
|
}
|
|
|
|
.watchButtonHelper:active {
|
|
fill: red;
|
|
fill-opacity: 1;
|
|
}
|
|
|