326 lines
6.3 KiB
CSS
326 lines
6.3 KiB
CSS
@keyframes buttonsContainerIn {
|
|
0% {
|
|
transform: translateX(-150px);
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
@keyframes buttonsContainerOut {
|
|
0% {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(-150px);
|
|
}
|
|
}
|
|
|
|
.tooltipfullBtns {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
color: #ffffff;
|
|
display: block;
|
|
font-size: 12px;
|
|
padding: 5px 10px;
|
|
border-radius: 15px;
|
|
text-align: center;
|
|
background: #fbb306;
|
|
border: 1px solid #fbb306;
|
|
box-shadow: 0 0 11px rgb(139 139 139 / 79%);
|
|
-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: -35px;
|
|
bottom: 40px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tooltipfullBtns:before, .tooltipfullBtns:after {
|
|
content: '';
|
|
border-left: 7px solid transparent;
|
|
border-right: 7px solid transparent;
|
|
border-top: 10px solid #fbb306;
|
|
position: absolute;
|
|
bottom: -10px;
|
|
left: 40%;
|
|
}
|
|
|
|
.tooltipfull-container {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.buttons-container.active {
|
|
opacity: 1;
|
|
animation: roadRunnerIn 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
|
|
}
|
|
|
|
.buttons-container.reverse {
|
|
/*transform: translateX(-150px);*/
|
|
transition: opacity 0.3s ease-out;
|
|
animation: roadRunnerOut 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
|
|
}
|
|
|
|
@keyframes roadRunnerIn {
|
|
0% {
|
|
transform: translateX(-150px) skewX(30deg) scaleX(1.3);
|
|
}
|
|
|
|
70% {
|
|
transform: translateX(30px) skewX(0deg) scaleX(.9);
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0px) skewX(0deg) scaleX(1);
|
|
}
|
|
}
|
|
|
|
@keyframes roadRunnerOut {
|
|
0% {
|
|
transform: translateX(0px) skewX(0deg) scaleX(1);
|
|
}
|
|
|
|
30% {
|
|
transform: translateX(-50px) skewX(0deg) scaleX(.9);
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(-150px) skewX(30deg) scaleX(1.3);
|
|
}
|
|
}
|
|
.buttons-container a {
|
|
color: #ffffff;
|
|
width: 14rem;
|
|
height: 4.2rem;
|
|
box-shadow: 0 0 3px 0 black;
|
|
margin: 4px 0 !important;
|
|
font-size: 11px;
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
padding: 2px 5px 0px 5px;
|
|
}
|
|
.mobile-view .buttons-container a {
|
|
width: 4rem;
|
|
}
|
|
.flexible-div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: left;
|
|
}
|
|
|
|
.operationBtns {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.buttons-container {
|
|
opacity: 0;
|
|
display: none;
|
|
position: absolute;
|
|
background: #ffffffe0;
|
|
box-shadow: 0 0 6px 0px #939393;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 10px 0px;
|
|
width: 6rem;
|
|
/*right: -10rem;*/
|
|
height: auto;
|
|
border-radius: 10px;
|
|
justify-content: center;
|
|
transform: translateX(-150px);
|
|
z-index: 99;
|
|
/*animation: roadRunnerIn .3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;*/
|
|
}
|
|
.screen-view .buttons-container {
|
|
width: 15rem;
|
|
}
|
|
.op-td {
|
|
max-width: 200px;
|
|
position: relative;
|
|
}
|
|
|
|
.employee-operations {
|
|
background: #1e88b3;
|
|
color: #ffffff;
|
|
width: 7rem;
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
border-radius: 8px !important;
|
|
animation: blink 1s infinite;
|
|
}
|
|
.screen-view .buttons-container i {
|
|
font-size: 22px;
|
|
margin: 0 0px 0 7px;
|
|
}
|
|
.mobile-view .buttons-container i {
|
|
font-size: 22px;
|
|
transform: translate(-4px, -2px);
|
|
}
|
|
.mobile-view .buttons-container i.fa-trash {
|
|
transform: translate(-6px, -2px);
|
|
}
|
|
@keyframes blink {
|
|
0% {
|
|
background: #1886b3;
|
|
}
|
|
|
|
50% {
|
|
background: #2594c1;
|
|
}
|
|
|
|
100% {
|
|
background: #1886b3;
|
|
}
|
|
}
|
|
|
|
|
|
.employee-operations:hover,
|
|
.employee-operations:focus,
|
|
.employee-operations:active {
|
|
background: #1482af;
|
|
color: white;
|
|
}
|
|
|
|
.employee-operations:before {
|
|
content: '';
|
|
border-top: 6px solid transparent;
|
|
border-bottom: 6px solid transparent;
|
|
position: absolute;
|
|
left: 69px;
|
|
top: 8px;
|
|
border-left: 13px solid #1e88b3;
|
|
}
|
|
.more-buttons{
|
|
position: relative;
|
|
}
|
|
.more-buttons.active .employee-operations:before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.more-buttons .employee-operations:before {
|
|
opacity: 0;
|
|
}
|
|
.operationBtns a i.fa-info-circle {
|
|
color: #26731c;
|
|
transform: translate(-1px, 0px);
|
|
}
|
|
|
|
.btn-table-block, .btn-table-details {
|
|
color: #ffffff;
|
|
width: 15rem;
|
|
height: 4.2rem;
|
|
box-shadow: 0 0 3px 0 black;
|
|
margin: 4px 0;
|
|
font-size: 11px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.btn-table-block i, .btn-table-details i {
|
|
font-size: 22px;
|
|
margin: 0 0px 0 7px;
|
|
}
|
|
|
|
.mobile-view {
|
|
display: none;
|
|
}
|
|
|
|
.screen-view {
|
|
display: flex;
|
|
}
|
|
|
|
@media(max-width: 768px) {
|
|
.name-td {
|
|
font-size: 12px !important;
|
|
}
|
|
.panel-body .form-control {
|
|
padding: 6px 3px;
|
|
}
|
|
table.dataTable thead > tr > th {
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
}
|
|
|
|
div.dataTables_length, div.dataTables_filter {
|
|
display: none;
|
|
}
|
|
|
|
.pagination > li > a {
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
div.dataTables_paginate ul.pagination {
|
|
font-size: 10px;
|
|
padding: 0;
|
|
}
|
|
|
|
.searchButtons {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.addLegalEmployer, .addActualEmployer {
|
|
border-top-right-radius: 2em;
|
|
border-bottom-right-radius: 2em;
|
|
border-top-left-radius: 2em;
|
|
border-bottom-left-radius: 2em;
|
|
padding: 5px 3px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.addActualEmployer {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.mobile-view {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.screen-view {
|
|
display: none;
|
|
}
|
|
|
|
.fa-minus-circle {
|
|
font-size: 15px;
|
|
transform: translate(2px, -1px);
|
|
}
|
|
|
|
.btn-table {
|
|
margin: 3px 5px;
|
|
border-radius: 8px;
|
|
padding: 5px;
|
|
box-shadow: 0 0 6px 0px #838383;
|
|
font-size: 18px;
|
|
width: 4rem;
|
|
}
|
|
|
|
.buttons-container {
|
|
padding: 2px 0px;
|
|
}
|
|
.employee-operations {
|
|
background: #2fb2ed;
|
|
width: 3rem;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.employee-operations:before {
|
|
left: 28px;
|
|
}
|
|
}
|