31 lines
750 B
CSS
31 lines
750 B
CSS
/* Temp User Restrictions */
|
|
.temp-badge {
|
|
display: inline-block;
|
|
padding: 2px 8px;
|
|
background-color: #ff9800;
|
|
color: white;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
border-radius: 3px;
|
|
margin-left: 5px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
/* Hide restricted elements for temp users */
|
|
.temp-restricted {
|
|
display: none !important;
|
|
}
|
|
|
|
/* More specific selectors to ensure hiding */
|
|
a.temp-restricted,
|
|
.btn.temp-restricted,
|
|
.header-actions .temp-restricted,
|
|
.mobile-dropdown-item.temp-restricted {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Hide Shift links/buttons whenever body has .temp-user */
|
|
body.temp-user a[href="/shifts.html"],
|
|
body.temp-user .mobile-dropdown-item a[href="/shifts.html"] {
|
|
display: none !important;
|
|
} |