mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-03-14 20:32:51 +00:00
16 lines
234 B
CSS
16 lines
234 B
CSS
.highlight {
|
|
position: relative;
|
|
}
|
|
|
|
.highlight button {
|
|
font-size: 16px;
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 4px;
|
|
opacity: 0;
|
|
transition: opacity 0.1s linear;
|
|
}
|
|
|
|
.highlight:hover button {
|
|
opacity: 1
|
|
}
|