103 lines
2.1 KiB
CSS
103 lines
2.1 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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.operations-btns-main {
|
|
padding: 5px;
|
|
width: 98%;
|
|
margin: 0 auto 10px;
|
|
display: none;
|
|
border-radius: 0px 0px 8px 8px;
|
|
background: #F1F5F9;
|
|
box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.03) inset;
|
|
}
|
|
|
|
.btn-leave-casehistory {
|
|
border: 1px solid transparent;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
padding: 3px 1px;
|
|
color: #d97706;
|
|
margin: auto 1px auto 2px;
|
|
background: #fef3c7;
|
|
transition: ease .2s;
|
|
}
|
|
|
|
.btn-leave-casehistory span {
|
|
display: none;
|
|
}
|
|
|
|
.toggleRollCall {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.toggleRollCall svg {
|
|
stroke: #ffffff;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.toggleRollCall.open svg {
|
|
transform: rotate(-90deg);
|
|
}
|