Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/pages/RollCall/css/CurrentDay.css
2025-04-12 11:15:54 +03:30

76 lines
1.5 KiB
CSS

.tooltipfull-container {
cursor: pointer;
position: relative;
}
.tooltipfull {
opacity: 0;
z-index: 99;
color: #fff;
display: grid;
font-size: 12px;
padding: 5px 10px;
border-radius: 8px;
background: #23a8a8;
border: 1px solid #23a8a8;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
position: absolute;
right: -2px;
bottom: 30px;
white-space: nowrap;
}
.tooltipfull-container:hover .tooltipfull, a:hover .tooltipfull {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.tooltipfull:before, .tooltipfull:after {
content: '';
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #23a8a8;
position: absolute;
bottom: -10px;
right: 20px;
}
.positive-time {
color: #65a30d !important;
}
.negative-time {
color: #F20E0E !important;
}
.sticky {
position: sticky;
top: 0;
z-index: 10;
}
.close-btn-search {
position: absolute;
top: 50%;
left: 4px;
transform: translateY(-50%);
color: #fff;
background-color: #f87171;
width: 26px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
}