Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/pages/Index/css/LeaveList.css
2024-09-08 20:33:16 +03:30

96 lines
2.0 KiB
CSS

.errored {
color: #FF3A3A !important;
border: 1px solid #FF3A3A !important
}
.personal-paid-leave-scroll {
height: 330px;
overflow-y: scroll;
overflow-x: hidden;
scrollbar-width: thin;
}
#printSection {
display: none;
}
.personal-paid-leave-grid-list .Rtable-row .Rtable-cell .Rtable-cell--content .badge.badge-paid-leave span,
.personal-paid-leave-grid-list .Rtable-row .Rtable-cell .Rtable-cell--content .badge.sick span {
font-size: 12px;
font-weight: 500;
}
.Rtable .Rtable-row .Rtable-cell {
font-size: 12px;
}
@media (max-width: 992px) {
.list-box {
padding: 4px 10px 4px 10px !important;
}
.Rtable--collapse .Rtable-row {
padding: 4px 10px;
margin: 3px 0px 0;
font-size: 11px;
}
.leaveDiv {
font-size: 11px;
}
.openAction-mobile1 {
height: 46px;
}
}
.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;
}