Files
onlyoffice.github.io/sdkjs-plugins/content/ai/components/tooltip/style.css
2025-02-18 19:00:22 +03:00

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;
}