Add citas module: scheduling, calendar, blocked schedules
This commit is contained in:
@@ -604,8 +604,8 @@ body {
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
SEARCH & FILTERS
|
||||
============================================ */
|
||||
SEARCH & FILTERS
|
||||
============================================ */
|
||||
.search-box {
|
||||
position: relative;
|
||||
max-width: 300px;
|
||||
@@ -632,6 +632,42 @@ body {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
DROPDOWN MENU IN SIDEBAR
|
||||
============================================ */
|
||||
.sidebar-nav .dropdown-menu {
|
||||
position: static;
|
||||
background: white;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 10px;
|
||||
padding: 0.5rem;
|
||||
margin-left: 1rem;
|
||||
box-shadow: 0 5px 20px var(--shadow);
|
||||
}
|
||||
|
||||
.sidebar-nav .dropdown-item {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
color: var(--text);
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.sidebar-nav .dropdown-item:hover {
|
||||
background: rgba(248, 180, 196, 0.2);
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.sidebar-nav .dropdown-item.active {
|
||||
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
|
||||
color: white;
|
||||
}
|
||||
|
||||
.sidebar-nav .dropdown-divider {
|
||||
margin: 0.5rem 0;
|
||||
border-color: var(--border);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
RESPONSIVE
|
||||
============================================ */
|
||||
|
||||
Reference in New Issue
Block a user