(Новая страница: «.допуск-контейнер { position: relative; display: inline-block; cursor: help; font-weight: bold; border-bottom: 1px dotted #000; →пунктирное подчёркивание: } .допуск-подсказка { visibility: hidden; width: 220px; background-color: #333; color: #fff; text-align: left; border-radius: 6px; padding: 6px; position: absolute; z-index: 10; bottom: 125...») |
Нет описания правки |
||
Строка 4: | Строка 4: | ||
cursor: help; | cursor: help; | ||
font-weight: bold; | font-weight: bold; | ||
text-decoration: underline dotted; | |||
} | } | ||
Версия от 12:08, 30 августа 2025
.допуск-контейнер {
position: relative;
display: inline-block;
cursor: help;
font-weight: bold;
text-decoration: underline dotted;
}
.допуск-подсказка {
visibility: hidden;
width: 220px;
background-color: #333;
color: #fff;
text-align: left;
border-radius: 6px;
padding: 6px;
position: absolute;
z-index: 10;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 90%;
}
.допуск-подсказка::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.допуск-контейнер:hover .допуск-подсказка {
visibility: visible;
opacity: 1;
}