We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd9e23 commit 4cc83e0Copy full SHA for 4cc83e0
1 file changed
web/viewer.css
@@ -843,6 +843,22 @@ dialog :link {
843
height: auto;
844
}
845
846
+ /* Show tooltips for keyboard users */
847
+ &:focus::after,
848
+ &:hover::after {
849
+ content: attr(title);
850
+ position: absolute;
851
+ top: 100%;
852
+ left: 50%;
853
+ transform: translateX(-50%);
854
+ white-space: nowrap;
855
+ background: rgb(0 0 0 / 0.8);
856
+ color: #fff;
857
+ padding: 4px 6px;
858
+ border-radius: 4px;
859
+ font-size: 12px;
860
+ pointer-events: none;
861
+ }
862
863
864
.toolbarButtonWithContainer {
0 commit comments