Files
front-AT/app/(private)/AsignacionEquipo/asignacion.css
T
2026-02-17 19:16:57 -06:00

95 lines
1.4 KiB
CSS

.customSelect {
border: 1px solid #ccc;
border-radius: 6px;
position: relative;
flex: 1;
width: 100%;
font-size: 14px;
margin-bottom: 1rem;
max-width: 500px;
}
.customSelect.disabled {
opacity: 0.6;
pointer-events: none;
}
.option {
padding: 10px 12px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
background: #fff;
}
.option:not(.disabled):hover {
background-color: #f0f0f0;
}
.option.disabled {
cursor: not-allowed;
color: #999;
}
.option.active {
background-color: #e6f0ff;
font-weight: 600;
}
.option:hover {
background-color: #f0f0f0;
}
/* ICONOS */
.WINDOWS::before {
content: "";
width: 20px;
height: 20px;
background: url("/windows.png") no-repeat center / contain;
}
.MACINTOSH::before {
content: "";
width: 20px;
height: 20px;
background: url("/apple.png") no-repeat center / contain;
}
.PROFESORES::before {
content: "";
width: 20px;
height: 20px;
background: url("/teacher.png") no-repeat center / contain;
}
.selectHeader {
border-radius: 6px;
padding: 8px 12px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
background: #fff;
}
.placeholder {
color: #999;
}
.arrow {
font-size: 12px;
}
.options {
position: absolute;
bottom: 105%;
left: 0;
right: 0;
border: 1px solid #ccc;
border-radius: 6px;
background: #fff;
z-index: 10;
max-height: 250px;
overflow-y: auto;
}