281 lines
5.1 KiB
CSS
281 lines
5.1 KiB
CSS
|
|
|
|
.custom-scrollbar-x::-webkit-scrollbar {
|
|
height: 6px;
|
|
}
|
|
|
|
.custom-scrollbar-x::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
.custom-scrollbar-x::-webkit-scrollbar-thumb {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
border-radius: 4px;
|
|
}
|
|
.tab-bar {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.tab-bar__tab {
|
|
width: 128px;
|
|
height: 33px;
|
|
background-color: #275197;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding:0 6px;
|
|
|
|
border-radius: 7px 7px 0 0;
|
|
|
|
}
|
|
|
|
|
|
.tab-bar__tab--active {
|
|
background-color: #FFFFFF;
|
|
color: #1A3E7B;
|
|
border-top: 1px solid #2A5398
|
|
}
|
|
|
|
.tab-bar__tab-label {
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
}
|
|
|
|
|
|
@media(min-width:768px){
|
|
.tab-bar__tab-label {
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.tab-bar__tab-badge {
|
|
background-color: #FF6363;
|
|
color: white;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 30px;
|
|
font-size: 9px;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
line-height: 16px;
|
|
}
|
|
.card-container {
|
|
border-radius: 10px;
|
|
padding: 10px 10px 20px;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
background-color:white;
|
|
|
|
}
|
|
|
|
|
|
.monthly-card-mobile {
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
background-color: white;
|
|
padding: 20px 10px;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.monthly-table__head {
|
|
position: sticky;
|
|
top: 2px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.u-tactile {
|
|
cursor: pointer;
|
|
transition: opacity 300ms ease-in-out;
|
|
}
|
|
|
|
.u-tactile:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.monthly-table__cell-title {
|
|
width: 96%;
|
|
display: block;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.monthly-table__cell-card {
|
|
display: inline-block;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.monthly-table__cell-card--small {
|
|
background-color: #28529833;
|
|
color: #0B5959;
|
|
width: 24px;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
|
|
.monthly-table__cell-card--medium {
|
|
background-color: #8DDD8D;
|
|
color: #FFFFFF;
|
|
width: 57px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.monthly-table__cell-card--large {
|
|
background-color: #8DDD8D;
|
|
color: #FFFFFF;
|
|
width: 33.3%;
|
|
height: 22px;
|
|
line-height: 22px;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.tooltip-container {
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tooltip__trigger {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tooltip-container__text {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
width: max-content;
|
|
max-width: 300px;
|
|
background-color: #333;
|
|
color: #fff;
|
|
text-align: center;
|
|
border-radius: 4px;
|
|
padding: 5px 8px;
|
|
z-index: 100000;
|
|
bottom: 35px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
transition: opacity 0.3s;
|
|
white-space: normal
|
|
}
|
|
|
|
.tooltip-container:hover .tooltip-container__text {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
.monthly-table__toggle {
|
|
background-color: #F1F5F9 !important;
|
|
border: 0.5px solid #E9E9E9;
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
opacity: 0;
|
|
max-height: 0;
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
margin-top: 0 !important;
|
|
margin-bottom: 0 !important;
|
|
overflow: hidden;
|
|
transition: opacity 0.4s ease, max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
|
|
will-change: max-height, opacity, padding, margin;
|
|
}
|
|
|
|
.monthly-table__toggle.show {
|
|
opacity: 1;
|
|
max-height: 350px;
|
|
padding-top: 0.5rem;
|
|
padding-bottom: 0.5rem;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 0.5rem !important;
|
|
}
|
|
|
|
|
|
.monthly-table__operation-button {
|
|
width: 71px;
|
|
height: 27px;
|
|
border-radius: 5px;
|
|
background-color: #275197;
|
|
color:white
|
|
}
|
|
|
|
|
|
|
|
.monthly-table__toggle-label {
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
color: #202020
|
|
}
|
|
|
|
.monthly-table__toggle-value {
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
color: #818181
|
|
}
|
|
/*Awaiting reference Table*/
|
|
.monthly-table__stage-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 23px;
|
|
border-radius: 5px;
|
|
background-color: #84CC16;
|
|
color: white;
|
|
font-size: 10px;
|
|
padding: 0 4px;
|
|
white-space: nowrap
|
|
}
|
|
|
|
/* The whole workshop */
|
|
.monthly-table__status-button {
|
|
width: 88px;
|
|
height:32px;
|
|
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
border-radius:0
|
|
}
|
|
.monthly-table__status-button--documents-setup {
|
|
background-color: #C8C8C8 !important;
|
|
}
|
|
|
|
.monthly-table__status-button--step1 {
|
|
background-color: #87DFFF !important;
|
|
}
|
|
|
|
.monthly-table__status-button--step2 {
|
|
background-color: #FEA99A !important;
|
|
}
|
|
|
|
.monthly-table__status-button--step3 {
|
|
background-color: #FEDE76 !important;
|
|
}
|
|
|
|
.monthly-table__status-button--step4 {
|
|
background-color: #A3FF87 !important;
|
|
}
|
|
|
|
|
|
|
|
@media(min-width:768px){
|
|
.monthly-table__status-button {
|
|
width: 166px;
|
|
height: 35px;
|
|
|
|
}
|
|
|
|
.monthly-table__status-button--documents-setup {
|
|
background-color: #C8C8C8 !important;
|
|
}
|
|
} |