8,957
edits
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* Стили для символа "?" */ | |||
.not-confirmed { | |||
cursor: pointer; /* Меняем курсор на указатель */ | |||
position: relative; /* Для возможного позиционирования */ | |||
text-decoration: none; /* Убираем подчеркивание по умолчанию */ | |||
} | |||
/* Стили при наведении */ | |||
.not-confirmed:hover { | |||
text-decoration: underline; /* Добавляем подчеркивание */ | |||
text-decoration-style: dotted; /* Подчеркивание в точку */ | |||
} | |||
/* Добавляем title при наведении */ | |||
.not-confirmed[title]:hover:after { | |||
content: attr(title); /* Используем значение атрибута title */ | |||
position: absolute; | |||
top: 100%; /* Позиционируем под элементом */ | |||
left: 50%; | |||
transform: translateX(-50%); | |||
background-color: #333; | |||
color: #fff; | |||
padding: 5px 10px; | |||
border-radius: 4px; | |||
font-size: 12px; | |||
white-space: nowrap; | |||
z-index: 10; | |||
} | |||
.licontent-actual { | .licontent-actual { | ||
z-index: -2; /* Устанавливаем уровень слоя ниже upper_tables */ | z-index: -2; /* Устанавливаем уровень слоя ниже upper_tables */ |