Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit e27a2a1

Browse files
authored
Updated stylesheet
1 parent 87c532e commit e27a2a1

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

antora-lunr-ui/css/main.css

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,30 @@ aside.toc.sidebar {
113113

114114
.image {
115115
border: 1px solid #000000 !important;
116-
}
116+
}
117+
118+
119+
.popup {
120+
position: relative;
121+
display: inline-block;
122+
cursor: pointer;
123+
}
124+
125+
.popuptext {
126+
visibility: hidden;
127+
background-color: #f0f0f0;
128+
color: #333;
129+
border: 1px solid #ccc;
130+
border-radius: 4px;
131+
padding: 5px;
132+
position: absolute;
133+
z-index: 1;
134+
bottom: 125%;
135+
left: 50%;
136+
transform: translateX(-50%);
137+
white-space: nowrap;
138+
}
139+
140+
.popup:hover .popuptext {
141+
visibility: visible;
142+
}

0 commit comments

Comments
 (0)