mirror of
https://github.com/ONLYOFFICE/onlyoffice.github.io.git
synced 2026-04-07 14:04:30 +08:00
27 lines
573 B
CSS
27 lines
573 B
CSS
#tooltip {
|
|
line-height: 12px;
|
|
position: absolute;
|
|
z-index: 10;
|
|
padding: 4px 8px;
|
|
border: 1px solid;
|
|
border-radius: 4px;
|
|
white-space: nowrap;
|
|
/* max-width: 200px; */
|
|
}
|
|
body.theme-light #tooltip,
|
|
body.theme-gray #tooltip {
|
|
background-color: #fff;
|
|
border-color: #c0c0c0;
|
|
}
|
|
body.theme-classic-light #tooltip {
|
|
background-color: #fff;
|
|
border-color: #cfcfcf;
|
|
}
|
|
body.theme-dark #tooltip {
|
|
background-color: #333;
|
|
border-color: #666;
|
|
}
|
|
body.theme-contrast-dark #tooltip {
|
|
background-color: #1e1e1e;
|
|
border-color: #696969;
|
|
} |