MediaWiki:Common.css: различия между версиями
Gabefrut (обсуждение | вклад) м (тултипы 3) |
Gabefrut (обсуждение | вклад) м (тултипы 4) |
||
Строка 19: | Строка 19: | ||
left: 0; | left: 0; | ||
top: 1.2em; | top: 1.2em; | ||
cursor: default; | |||
width: 200px; | width: 200px; | ||
Версия от 19:29, 24 октября 2024
/* Размещённый здесь CSS будет применяться ко всем темам оформления */
.tooltip {
position: relative;
}
.tooltip > .text {
cursor: help;
text-decoration: underline dotted;
}
.tooltip:hover .tooltip-content,
.tooltip-content:hover {
display: block;
}
.tooltip-content {
display: none;
position: absolute;
left: 0;
top: 1.2em;
cursor: default;
width: 200px;
background: white;
padding: 4px;
margin: 0;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 90px -20px, rgb(234, 236, 240) 0px 0px 0px 1px;
}