mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-14 00:49:05 +00:00
15 lines
213 B
CSS
15 lines
213 B
CSS
.highlight {
|
|
position: relative;
|
|
}
|
|
|
|
.highlight button {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 4px;
|
|
opacity: 0;
|
|
transition: opacity 0.1s linear;
|
|
}
|
|
|
|
.highlight:hover button {
|
|
opacity: 1
|
|
}
|