a4051ae132
Next.js 16 dashboard with configurable widgets (favorites, notes, calendar, clock, calculator, search, domain-check), multi-tab support, user auth, dark mode, and Docker deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3383 lines
62 KiB
CSS
3383 lines
62 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
--background: #f5f7fb;
|
|
--surface: #ffffff;
|
|
--surface-strong: #f0f2f7;
|
|
--text: #111827;
|
|
--muted: #6b7280;
|
|
--border: #d1d5db;
|
|
--accent: #2563eb;
|
|
--accent-soft: #dbeafe;
|
|
--accent-text: #ffffff;
|
|
--danger: #b91c1c;
|
|
--error: #b91c1c;
|
|
--success: #166534;
|
|
--shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
Arial,
|
|
Helvetica,
|
|
sans-serif;
|
|
background: var(--background);
|
|
color: var(--text);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: inherit;
|
|
}
|
|
|
|
button:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.app {
|
|
min-height: 100vh;
|
|
background: var(--background);
|
|
color: var(--text);
|
|
}
|
|
|
|
.appDark {
|
|
color-scheme: dark;
|
|
--background: #0f172a;
|
|
--surface: #111827;
|
|
--surface-strong: #1f2937;
|
|
--text: #e5e7eb;
|
|
--muted: #9ca3af;
|
|
--border: #374151;
|
|
--accent-text: #0f172a;
|
|
--danger: #f87171;
|
|
--error: #fca5a5;
|
|
--success: #86efac;
|
|
--shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.topBar,
|
|
.adminTopBar {
|
|
position: relative;
|
|
min-height: 68px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 10px 22px;
|
|
border-bottom: 1px solid var(--border);
|
|
background: var(--surface);
|
|
}
|
|
|
|
.brandBlock {
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.brandLogoFrame {
|
|
width: 46px;
|
|
height: 46px;
|
|
display: grid;
|
|
place-items: center;
|
|
flex: 0 0 auto;
|
|
overflow: hidden;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.brandLogo {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.brandText {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 3px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.profileMenu {
|
|
position: relative;
|
|
}
|
|
|
|
.profileButton {
|
|
width: 44px;
|
|
height: 44px;
|
|
display: grid;
|
|
place-items: center;
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border: 1px solid var(--accent);
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.profileDropdown {
|
|
position: absolute;
|
|
top: calc(100% + 10px);
|
|
right: 0;
|
|
z-index: 300;
|
|
width: 280px;
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 12px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.profileDropdownHeader {
|
|
padding: 8px 8px 12px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.profileDropdownName {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.profileDropdownEmail {
|
|
margin-top: 3px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.profileDropdownRole {
|
|
margin-top: 6px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.menuButton {
|
|
min-height: 40px;
|
|
width: 100%;
|
|
padding: 10px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.menuButton:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.menuButtonLink {
|
|
display: block;
|
|
}
|
|
|
|
.menuButtonDanger {
|
|
color: var(--danger);
|
|
}
|
|
|
|
.messageBar {
|
|
padding: 18px 28px 0;
|
|
}
|
|
|
|
.dashboardWorkspace {
|
|
display: grid;
|
|
gap: 18px;
|
|
padding: 28px;
|
|
}
|
|
|
|
.editToolbar {
|
|
min-height: 64px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 14px 16px;
|
|
background: var(--surface);
|
|
border: 1px dashed var(--accent);
|
|
border-radius: 16px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.editToolbar p {
|
|
margin: 4px 0 0;
|
|
}
|
|
|
|
.addWidgetMenu {
|
|
position: relative;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.addWidgetDropdown {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
right: 0;
|
|
z-index: 320;
|
|
width: 240px;
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 10px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.addWidgetEmpty {
|
|
margin: 0;
|
|
padding: 8px;
|
|
}
|
|
|
|
.emptyDashboard {
|
|
min-height: 220px;
|
|
display: grid;
|
|
place-items: center;
|
|
gap: 8px;
|
|
padding: 28px;
|
|
text-align: center;
|
|
background: var(--surface);
|
|
border: 1px dashed var(--border);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.emptyDashboard h2,
|
|
.emptyDashboard p {
|
|
margin: 0;
|
|
}
|
|
|
|
.widgetGridShell {
|
|
min-height: calc(100vh - 130px);
|
|
}
|
|
|
|
.widgetGrid {
|
|
position: relative;
|
|
min-height: 400px;
|
|
}
|
|
|
|
.react-grid-item {
|
|
overflow: visible;
|
|
transition:
|
|
transform 160ms ease,
|
|
width 160ms ease,
|
|
height 160ms ease;
|
|
}
|
|
|
|
.react-grid-item.react-grid-placeholder {
|
|
background: var(--accent);
|
|
border-radius: 16px;
|
|
opacity: 0.18;
|
|
}
|
|
|
|
.react-grid-item.react-draggable-dragging,
|
|
.react-grid-item.resizing {
|
|
z-index: 200;
|
|
transition: none;
|
|
}
|
|
|
|
.gridItemMenuOpen {
|
|
z-index: 250 !important;
|
|
}
|
|
|
|
.react-grid-item > .react-resizable-handle {
|
|
z-index: 40;
|
|
width: 30px;
|
|
height: 30px;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.react-grid-item > .react-resizable-handle::after {
|
|
width: 12px;
|
|
height: 12px;
|
|
right: 7px;
|
|
bottom: 7px;
|
|
border-right: 3px solid var(--accent);
|
|
border-bottom: 3px solid var(--accent);
|
|
}
|
|
|
|
.widgetCard {
|
|
position: relative;
|
|
container-type: size;
|
|
height: 100%;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
display: grid;
|
|
grid-template-rows: auto minmax(0, 1fr);
|
|
overflow: visible;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.widgetHeader {
|
|
position: relative;
|
|
min-height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
padding: 8px 10px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.widgetTitle {
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.widgetTitle h2 {
|
|
margin: 0;
|
|
font-size: clamp(13px, 4cqw, 18px);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.widgetTitleInput {
|
|
width: 100%;
|
|
height: 32px;
|
|
padding: 0 8px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
outline: none;
|
|
font-weight: 700;
|
|
font-size: clamp(12px, 3.5cqw, 14px);
|
|
}
|
|
|
|
.widgetTitleInput:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.widgetDragHandle {
|
|
height: 30px;
|
|
padding: 0 9px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
cursor: grab;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
user-select: none;
|
|
touch-action: none;
|
|
}
|
|
|
|
.widgetDragHandle:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.widgetMenu {
|
|
position: relative;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.widgetMenuButton {
|
|
height: 30px;
|
|
padding: 0 9px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.widgetMenuButton:hover,
|
|
.widgetDragHandle:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.widgetDropdown {
|
|
position: absolute;
|
|
top: calc(100% + 8px);
|
|
right: 0;
|
|
z-index: 350;
|
|
width: 190px;
|
|
display: grid;
|
|
gap: 7px;
|
|
padding: 10px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.widgetDropdownButton {
|
|
min-height: 36px;
|
|
width: 100%;
|
|
padding: 0 10px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.widgetDropdownButton:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.widgetDropdownDanger {
|
|
color: var(--danger);
|
|
}
|
|
|
|
.widgetContent {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
padding: 10px;
|
|
border-radius: 0 0 16px 16px;
|
|
font-size: clamp(12px, 2.2cqw, 14px);
|
|
}
|
|
|
|
.favoriteTile {
|
|
min-width: 0;
|
|
min-height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
gap: 10px;
|
|
padding: 8px 10px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.favoriteTile:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.favoriteTitle {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.favoriteIcon {
|
|
position: relative;
|
|
width: clamp(26px, 8cqw, 36px);
|
|
height: clamp(26px, 8cqw, 36px);
|
|
display: grid;
|
|
place-items: center;
|
|
flex: 0 0 auto;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.favoriteIconFallback {
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.favoriteIconImage {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
background: transparent;
|
|
}
|
|
|
|
.noteCard {
|
|
display: grid;
|
|
gap: 8px;
|
|
padding: 10px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.noteHeader {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.noteTitleInput {
|
|
width: 100%;
|
|
height: 34px;
|
|
padding: 0 9px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
font-weight: 700;
|
|
outline: none;
|
|
}
|
|
|
|
.noteTitleInput:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.noteTextarea {
|
|
width: 100%;
|
|
min-height: 90px;
|
|
resize: vertical;
|
|
padding: 10px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
outline: none;
|
|
}
|
|
|
|
.noteTextarea:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.noteDeleteButton,
|
|
.todoDeleteButton {
|
|
min-height: 32px;
|
|
padding: 0 9px;
|
|
color: var(--danger);
|
|
background: transparent;
|
|
border: 1px solid var(--danger);
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.noteEmptyText {
|
|
margin: 0;
|
|
}
|
|
|
|
.todoEditor {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.todoTask {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.todoCheckbox {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.todoTaskInput {
|
|
width: 100%;
|
|
min-height: 34px;
|
|
padding: 0 9px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
outline: none;
|
|
}
|
|
|
|
.todoTaskInput:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.todoTaskDone {
|
|
color: var(--muted);
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.todoAddForm {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
}
|
|
|
|
.searchWidgetForm {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: minmax(90px, 150px) minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.input,
|
|
.searchInput,
|
|
.select {
|
|
width: 100%;
|
|
height: 40px;
|
|
padding: 0 10px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
outline: none;
|
|
}
|
|
|
|
.input:focus,
|
|
.searchInput:focus,
|
|
.select:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.fileInput {
|
|
width: 100%;
|
|
min-height: 44px;
|
|
padding: 9px 12px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.fileInput:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.colorInput {
|
|
width: 100%;
|
|
height: 44px;
|
|
padding: 4px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.colorInput:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.themeColorGrid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 14px;
|
|
}
|
|
|
|
.button {
|
|
min-height: 40px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 12px;
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border: 1px solid var(--accent);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.button:hover {
|
|
filter: brightness(0.95);
|
|
}
|
|
|
|
.buttonSecondary {
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border-color: var(--border);
|
|
}
|
|
|
|
.smallDangerButton {
|
|
height: 34px;
|
|
padding: 0 9px;
|
|
color: var(--danger);
|
|
background: transparent;
|
|
border: 1px solid var(--danger);
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.calendarHeader {
|
|
display: grid;
|
|
grid-template-columns: 72px 1fr 72px;
|
|
gap: 6px;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.calendarNavButton,
|
|
.calendarMonthButton {
|
|
height: 34px;
|
|
padding: 0 8px;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.calendarMonthButton {
|
|
font-weight: 700;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.calendarWeekdays {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
gap: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.calendarWeekday {
|
|
color: var(--muted);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
}
|
|
|
|
.calendarGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(7, 1fr);
|
|
gap: 4px;
|
|
}
|
|
|
|
.calendarDay {
|
|
position: relative;
|
|
min-height: 38px;
|
|
padding: 5px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 9px;
|
|
}
|
|
|
|
.calendarDayMuted {
|
|
opacity: 0.45;
|
|
}
|
|
|
|
.calendarDayToday {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.calendarDayWithEvents {
|
|
background: var(--accent-soft);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.calendarDayNumber {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.calendarEventCount {
|
|
position: absolute;
|
|
right: 4px;
|
|
bottom: 4px;
|
|
min-width: 18px;
|
|
height: 18px;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 0 4px;
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border-radius: 999px;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.calendarTooltip {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: calc(100% + 8px);
|
|
z-index: 20;
|
|
width: 260px;
|
|
display: none;
|
|
padding: 10px;
|
|
color: var(--text);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.calendarDay:hover .calendarTooltip {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.calendarTooltipItem {
|
|
display: grid;
|
|
grid-template-columns: 48px 1fr;
|
|
gap: 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.calendarTooltipTime {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.calendarTooltipMore {
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.calendarStatus {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.nextEventsBlock {
|
|
margin-top: 14px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.nextEventsBlock h3 {
|
|
margin: 0 0 10px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.eventList {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.eventItem {
|
|
padding: 9px 10px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.eventDate {
|
|
margin-bottom: 4px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.eventTitle {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.eventLocation {
|
|
margin-top: 4px;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.adminTopActions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.adminShell {
|
|
width: min(1180px, 100%);
|
|
display: grid;
|
|
gap: 20px;
|
|
margin: 0 auto;
|
|
padding: 28px;
|
|
}
|
|
|
|
.adminPanel {
|
|
display: grid;
|
|
gap: 16px;
|
|
padding: 22px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.adminPanel h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.adminPanel p {
|
|
margin: 0;
|
|
}
|
|
|
|
.logoUploadLayout {
|
|
display: grid;
|
|
grid-template-columns: 160px minmax(0, 1fr);
|
|
gap: 18px;
|
|
align-items: start;
|
|
padding: 16px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.logoPreviewBox {
|
|
width: 160px;
|
|
height: 160px;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.logoPreviewImage {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.logoUploadForm {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.adminCardGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.adminCard {
|
|
display: grid;
|
|
gap: 8px;
|
|
min-height: 150px;
|
|
padding: 18px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.adminCard:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.adminCard h2 {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.adminCard p {
|
|
color: var(--muted);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.adminCardDisabled {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.adminForm {
|
|
display: grid;
|
|
gap: 14px;
|
|
max-width: 760px;
|
|
}
|
|
|
|
.adminUserCreateForm {
|
|
display: grid;
|
|
grid-template-columns: minmax(220px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) 150px auto;
|
|
gap: 12px;
|
|
align-items: end;
|
|
}
|
|
|
|
.adminInlineButton {
|
|
width: fit-content;
|
|
}
|
|
|
|
.userList {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.userListItem {
|
|
padding: 10px 12px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.userListEmail {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.userListMeta {
|
|
margin-top: 3px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.errorText {
|
|
color: var(--error);
|
|
}
|
|
|
|
.successText {
|
|
color: var(--success);
|
|
}
|
|
|
|
.loginShell {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.loginCard {
|
|
width: min(420px, 100%);
|
|
display: grid;
|
|
gap: 14px;
|
|
padding: 24px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.loginCard h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.fieldLabel {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: var(--muted);
|
|
font-size: 13px;
|
|
}
|
|
|
|
@container (max-width: 260px) {
|
|
.widgetHeader {
|
|
gap: 5px;
|
|
padding: 6px;
|
|
}
|
|
|
|
.widgetDragHandle,
|
|
.widgetMenuButton {
|
|
height: 28px;
|
|
padding: 0 6px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.widgetContent {
|
|
padding: 7px;
|
|
}
|
|
|
|
.searchWidgetForm,
|
|
.todoAddForm {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.favoriteItem {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.calendarHeader {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.calendarNavButton,
|
|
.calendarMonthButton {
|
|
height: 30px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.noteHeader,
|
|
.todoTask {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
@container (max-height: 170px) {
|
|
.widgetContent {
|
|
padding: 6px;
|
|
}
|
|
|
|
.widgetHeader {
|
|
min-height: 34px;
|
|
padding: 5px 7px;
|
|
}
|
|
|
|
.widgetTitle h2 {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.widgetDragHandle,
|
|
.widgetMenuButton {
|
|
height: 26px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
.favoriteTile {
|
|
min-height: 34px;
|
|
padding: 6px 8px;
|
|
}
|
|
|
|
.calendarWeekdays,
|
|
.calendarGrid,
|
|
.nextEventsBlock,
|
|
.noteboardActions {
|
|
display: none;
|
|
}
|
|
|
|
.searchWidgetForm {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.noteCard {
|
|
padding: 7px;
|
|
}
|
|
|
|
.noteTextarea {
|
|
min-height: 50px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.topBar,
|
|
.adminTopBar {
|
|
align-items: stretch;
|
|
}
|
|
|
|
.topBar {
|
|
min-height: auto;
|
|
}
|
|
|
|
.adminTopBar {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.brandLogoFrame {
|
|
width: 42px;
|
|
height: 42px;
|
|
}
|
|
|
|
.adminTopActions {
|
|
width: 100%;
|
|
}
|
|
|
|
.adminTopActions .button {
|
|
flex: 1;
|
|
}
|
|
|
|
.profileDropdown {
|
|
right: 0;
|
|
width: min(280px, calc(100vw - 32px));
|
|
}
|
|
|
|
.dashboardWorkspace {
|
|
padding: 16px;
|
|
}
|
|
|
|
.editToolbar {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.addWidgetMenu {
|
|
width: 100%;
|
|
}
|
|
|
|
.addWidgetMenu .button {
|
|
width: 100%;
|
|
}
|
|
|
|
.addWidgetDropdown {
|
|
left: 0;
|
|
right: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.searchWidgetForm {
|
|
grid-template-columns: 1fr;
|
|
height: auto;
|
|
}
|
|
|
|
.favoriteItem {
|
|
align-items: stretch;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.messageBar {
|
|
padding: 16px 16px 0;
|
|
}
|
|
|
|
.adminShell {
|
|
padding: 16px;
|
|
}
|
|
|
|
.logoUploadLayout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.logoPreviewBox {
|
|
width: 100%;
|
|
height: 180px;
|
|
}
|
|
|
|
.adminUserCreateForm {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.themeColorGrid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.calendarTooltip {
|
|
right: auto;
|
|
left: 0;
|
|
width: 230px;
|
|
}
|
|
}
|
|
|
|
.singleNoteWidget {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
.singleNoteTextarea {
|
|
height: 100%;
|
|
min-height: 0;
|
|
resize: none;
|
|
}
|
|
|
|
.singleNoteWidget .todoEditor {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.singleNoteWidget .noteDeleteButton {
|
|
justify-self: start;
|
|
}
|
|
|
|
.singleNoteWidget .todoTask {
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
}
|
|
|
|
@container (max-width: 240px) {
|
|
.singleNoteWidget .todoTask {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.singleNoteWidget .todoDeleteButton {
|
|
grid-column: 1 / -1;
|
|
}
|
|
}
|
|
|
|
@container (max-height: 160px) {
|
|
.singleNoteWidget {
|
|
gap: 6px;
|
|
}
|
|
|
|
.singleNoteWidget .noteDeleteButton,
|
|
.singleNoteWidget .todoDeleteButton,
|
|
.singleNoteWidget .todoAddForm {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.singleNoteWidget {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr) auto;
|
|
gap: 10px;
|
|
}
|
|
|
|
.singleNoteTextarea {
|
|
height: 100%;
|
|
min-height: 0;
|
|
resize: none;
|
|
}
|
|
|
|
.singleNoteWidget .todoEditor {
|
|
min-height: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.singleNoteWidget .noteDeleteButton {
|
|
justify-self: start;
|
|
}
|
|
|
|
.singleNoteWidget .todoTask {
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
}
|
|
|
|
@container (max-width: 240px) {
|
|
.singleNoteWidget .todoTask {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.singleNoteWidget .todoDeleteButton {
|
|
grid-column: 1 / -1;
|
|
}
|
|
}
|
|
|
|
@container (max-height: 160px) {
|
|
.singleNoteWidget {
|
|
gap: 6px;
|
|
}
|
|
|
|
.singleNoteWidget .noteDeleteButton,
|
|
.singleNoteWidget .todoDeleteButton,
|
|
.singleNoteWidget .todoAddForm {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.todoAddForm {
|
|
grid-template-columns: minmax(0, 1fr) 40px;
|
|
}
|
|
|
|
.todoAddForm .button {
|
|
width: 40px;
|
|
min-width: 40px;
|
|
height: 40px;
|
|
min-height: 40px;
|
|
padding: 0;
|
|
font-size: 0;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.todoAddForm .button::before {
|
|
content: "+";
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
@container (max-width: 240px) {
|
|
.todoAddForm {
|
|
grid-template-columns: minmax(0, 1fr) 40px;
|
|
}
|
|
}
|
|
|
|
.widgetCard-search .widgetTitle {
|
|
display: none;
|
|
}
|
|
|
|
.widgetCard-search .widgetHeader {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.widgetCard-search:not(:has(.widgetDragHandle)) {
|
|
grid-template-rows: minmax(0, 1fr);
|
|
}
|
|
|
|
.widgetCard-search:not(:has(.widgetDragHandle)) .widgetHeader {
|
|
display: none;
|
|
}
|
|
|
|
.widgetCard-search:not(:has(.widgetDragHandle)) .widgetContent {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.app {
|
|
position: relative;
|
|
isolation: isolate;
|
|
--dashboard-background-image: none;
|
|
--dashboard-background-opacity: 0;
|
|
}
|
|
|
|
.app::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
background-image: var(--dashboard-background-image);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
opacity: var(--dashboard-background-opacity);
|
|
}
|
|
|
|
.app > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.settingsSubPanel {
|
|
display: grid;
|
|
gap: 14px;
|
|
padding: 16px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.settingsSubPanel h2 {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.rangeInput {
|
|
width: 100%;
|
|
accent-color: var(--accent);
|
|
}
|
|
|
|
.backgroundPreviewBox {
|
|
position: relative;
|
|
min-height: 180px;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.backgroundPreviewImage {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.backgroundPreviewOverlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--surface);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.settingsButtonRow {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.calendarSourcePanel {
|
|
margin-bottom: 12px;
|
|
padding: 10px;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.calendarSourcePanel summary {
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.calendarSourceForm {
|
|
display: grid;
|
|
gap: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.calendarSourceForm .settingsButtonRow {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.topBar,
|
|
.adminTopBar {
|
|
z-index: 1000;
|
|
}
|
|
|
|
.profileMenu {
|
|
z-index: 1100;
|
|
}
|
|
|
|
.profileDropdown {
|
|
z-index: 1200;
|
|
}
|
|
|
|
.dashboardWorkspace,
|
|
.widgetGridShell,
|
|
.emptyDashboard {
|
|
z-index: 1;
|
|
}
|
|
|
|
.app::before {
|
|
z-index: 0;
|
|
}
|
|
|
|
.app > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.app > .topBar,
|
|
.app > .adminTopBar {
|
|
position: relative;
|
|
z-index: 5000;
|
|
}
|
|
|
|
.topBar .profileMenu {
|
|
position: relative;
|
|
z-index: 5100;
|
|
}
|
|
|
|
.topBar .profileDropdown {
|
|
position: absolute;
|
|
z-index: 5200;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.dashboardWorkspace,
|
|
.widgetGridShell,
|
|
.widgetGrid,
|
|
.emptyDashboard,
|
|
.react-grid-layout,
|
|
.react-grid-item {
|
|
z-index: auto;
|
|
}
|
|
|
|
.react-grid-item.react-draggable-dragging,
|
|
.react-grid-item.resizing {
|
|
z-index: 200;
|
|
}
|
|
|
|
.gridItemMenuOpen {
|
|
z-index: 250 !important;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(82px, 130px) minmax(0, 1fr) auto !important;
|
|
align-items: center;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .select,
|
|
.widgetCard-search .searchWidgetForm .searchInput,
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
min-width: 0;
|
|
height: 40px;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@container (max-width: 260px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(64px, 90px) minmax(0, 1fr) 40px !important;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
width: 40px;
|
|
min-width: 40px;
|
|
padding: 0;
|
|
font-size: 0;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::before {
|
|
content: ">";
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
|
|
@container (max-height: 170px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(64px, 90px) minmax(0, 1fr) 40px !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(82px, 130px) minmax(0, 1fr) auto !important;
|
|
}
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
position: relative;
|
|
width: 44px;
|
|
min-width: 44px;
|
|
height: 40px;
|
|
min-height: 40px;
|
|
padding: 0;
|
|
font-size: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
width: 13px;
|
|
height: 13px;
|
|
border: 2px solid currentColor;
|
|
border-radius: 999px;
|
|
transform: translate(-60%, -60%);
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
width: 9px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
border-radius: 999px;
|
|
transform: translate(1px, 6px) rotate(45deg);
|
|
transform-origin: left center;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm {
|
|
display: grid;
|
|
grid-template-columns: minmax(82px, 130px) minmax(0, 1fr) 44px !important;
|
|
align-items: center !important;
|
|
column-gap: 8px;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .select,
|
|
.widgetCard-search .searchWidgetForm .searchInput,
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
height: 40px;
|
|
min-height: 40px;
|
|
margin: 0;
|
|
align-self: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 44px;
|
|
min-width: 44px;
|
|
padding: 0;
|
|
line-height: 1;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::before,
|
|
.widgetCard-search .searchWidgetForm .button::after {
|
|
top: 50%;
|
|
}
|
|
|
|
@container (max-width: 260px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(64px, 90px) minmax(0, 1fr) 44px !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: minmax(82px, 130px) minmax(0, 1fr) 44px !important;
|
|
}
|
|
}
|
|
|
|
.widgetCard-search {
|
|
background: transparent;
|
|
border: 0;
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.widgetCard-search .widgetContent {
|
|
height: 100%;
|
|
display: grid;
|
|
align-items: center;
|
|
padding: 0;
|
|
overflow: visible;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm {
|
|
height: 48px;
|
|
min-height: 48px;
|
|
display: grid;
|
|
grid-template-columns: 140px minmax(0, 1fr) 48px !important;
|
|
align-items: center !important;
|
|
gap: 8px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .select,
|
|
.widgetCard-search .searchWidgetForm .searchInput,
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
height: 42px;
|
|
min-height: 42px;
|
|
margin: 0;
|
|
align-self: center;
|
|
border-radius: 11px;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
width: 48px;
|
|
min-width: 48px;
|
|
padding: 0;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::before {
|
|
width: 13px;
|
|
height: 13px;
|
|
transform: translate(-60%, -60%);
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button::after {
|
|
width: 9px;
|
|
height: 2px;
|
|
transform: translate(1px, 6px) rotate(45deg);
|
|
}
|
|
|
|
@container (max-width: 320px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: 105px minmax(0, 1fr) 44px !important;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
width: 44px;
|
|
min-width: 44px;
|
|
}
|
|
}
|
|
|
|
@container (max-width: 240px) {
|
|
.widgetCard-search .searchWidgetForm {
|
|
grid-template-columns: 88px minmax(0, 1fr) 42px !important;
|
|
gap: 6px;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm .button {
|
|
width: 42px;
|
|
min-width: 42px;
|
|
}
|
|
}
|
|
|
|
.widgetGridShell,
|
|
.widgetGrid,
|
|
.react-grid-layout,
|
|
.react-grid-item,
|
|
.react-grid-item > div,
|
|
.widgetCard-calendar,
|
|
.widgetCard-calendar .widgetContent,
|
|
.widgetCard-calendar .calendarGrid,
|
|
.widgetCard-calendar .calendarDay {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.react-grid-item:has(.widgetCard-calendar:hover),
|
|
.react-grid-item:has(.calendarDay:hover),
|
|
.react-grid-item:hover {
|
|
z-index: 900 !important;
|
|
}
|
|
|
|
.widgetCard-calendar .calendarTooltip {
|
|
z-index: 6000;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app {
|
|
position: relative;
|
|
isolation: isolate;
|
|
background-color: var(--background);
|
|
}
|
|
|
|
.app::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
background-image: var(--dashboard-background-image);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
opacity: var(--dashboard-background-opacity);
|
|
}
|
|
|
|
.app > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.app > .topBar,
|
|
.app > .adminTopBar {
|
|
z-index: 5000;
|
|
}
|
|
|
|
.topBar .profileMenu,
|
|
.adminTopBar .profileMenu {
|
|
z-index: 5100;
|
|
}
|
|
|
|
.topBar .profileDropdown,
|
|
.adminTopBar .profileDropdown {
|
|
z-index: 5200;
|
|
}
|
|
|
|
.favoritesWidget {
|
|
height: 100%;
|
|
min-height: 0;
|
|
display: grid;
|
|
grid-template-rows: minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.favoriteTileList {
|
|
min-height: 0;
|
|
display: grid;
|
|
align-content: start;
|
|
gap: 10px;
|
|
overflow: auto;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.favoriteTile {
|
|
min-height: 54px;
|
|
display: grid;
|
|
grid-template-columns: 42px minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 8px 10px;
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.favoriteTile:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.favoriteIconFrame {
|
|
width: 36px;
|
|
height: 36px;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background: transparent;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.favoriteIcon {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.favoriteIconPlaceholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
place-items: center;
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border-radius: 10px;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.favoriteTitle {
|
|
overflow: hidden;
|
|
font-weight: 700;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.favoriteRemoveButton {
|
|
padding: 7px 10px;
|
|
color: #ff6b7a;
|
|
background: transparent;
|
|
border: 1px solid #ff6b7a;
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.favoriteRemoveButton:hover {
|
|
background: rgba(255, 107, 122, 0.12);
|
|
}
|
|
|
|
.favoriteAddForm {
|
|
display: grid;
|
|
gap: 9px;
|
|
padding-top: 12px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.favoriteAddButton {
|
|
width: 100%;
|
|
}
|
|
|
|
@container (max-width: 260px) {
|
|
.favoriteTile {
|
|
grid-template-columns: 34px minmax(0, 1fr);
|
|
}
|
|
|
|
.favoriteRemoveButton {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.favoriteIconFrame {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
.topEditModeButton {
|
|
width: 42px;
|
|
height: 42px;
|
|
display: inline-grid;
|
|
place-items: center;
|
|
flex: 0 0 auto;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.topEditModeButton:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.topEditModeButtonActive {
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.topEditModeIcon {
|
|
display: grid;
|
|
place-items: center;
|
|
font-size: 19px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.topBarActions,
|
|
.adminTopActions {
|
|
align-items: center;
|
|
}
|
|
|
|
/* Falls der bisherige Bearbeiten-Button in der Toolbar separat angezeigt wird,
|
|
bleibt die Funktion oben rechts maßgeblich. */
|
|
.editToolbar .button:first-child {
|
|
display: none;
|
|
}
|
|
|
|
.topBar {
|
|
position: relative;
|
|
}
|
|
|
|
.topBar .topEditModeButton {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 74px;
|
|
z-index: 5300;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.topEditModeButton {
|
|
width: 42px;
|
|
height: 42px;
|
|
display: inline-grid;
|
|
place-items: center;
|
|
color: var(--text);
|
|
background: var(--surface-strong);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.topEditModeButton:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.topEditModeButtonActive {
|
|
color: var(--accent-text);
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.lockIcon {
|
|
position: relative;
|
|
width: 21px;
|
|
height: 24px;
|
|
display: block;
|
|
}
|
|
|
|
.lockIconBody {
|
|
position: absolute;
|
|
left: 3px;
|
|
bottom: 1px;
|
|
width: 15px;
|
|
height: 13px;
|
|
border: 2px solid currentColor;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.lockIconBody::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 4px;
|
|
width: 2px;
|
|
height: 5px;
|
|
background: currentColor;
|
|
border-radius: 999px;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.lockIconShackle {
|
|
position: absolute;
|
|
width: 13px;
|
|
height: 13px;
|
|
border: 2px solid currentColor;
|
|
border-bottom: 0;
|
|
border-radius: 10px 10px 0 0;
|
|
}
|
|
|
|
.lockIconClosed .lockIconShackle {
|
|
left: 4px;
|
|
top: 1px;
|
|
}
|
|
|
|
.lockIconOpen .lockIconShackle {
|
|
left: 8px;
|
|
top: 0;
|
|
transform: rotate(28deg);
|
|
transform-origin: left bottom;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.topBar .topEditModeButton {
|
|
right: 66px;
|
|
}
|
|
|
|
.topEditModeButton {
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
}
|
|
|
|
.logoSettingsRow {
|
|
display: grid;
|
|
grid-template-columns: 96px minmax(0, 1fr);
|
|
gap: 16px;
|
|
align-items: start;
|
|
}
|
|
|
|
.logoSettingsPreview {
|
|
width: 96px;
|
|
height: 96px;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.logoSettingsPreview img {
|
|
width: 78px;
|
|
height: 78px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.logoSettingsFields {
|
|
min-width: 0;
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.logoSettingsRow {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.dashboardTabsBar {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.dashboardTabsList {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.dashboardTab {
|
|
min-height: 38px;
|
|
padding: 0 14px;
|
|
color: var(--text);
|
|
background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.dashboardTab:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.dashboardTabActive {
|
|
color: var(--accent-text, #ffffff);
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.dashboardTabAdd {
|
|
width: 38px;
|
|
padding: 0;
|
|
display: grid;
|
|
place-items: center;
|
|
font-size: 22px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.widgetCard {
|
|
opacity: var(--widget-opacity, 1);
|
|
}
|
|
|
|
.widgetOpacityControl {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 8px;
|
|
align-items: center;
|
|
padding: 10px 12px;
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.widgetOpacityControl input {
|
|
grid-column: 1 / -1;
|
|
width: 100%;
|
|
}
|
|
|
|
.widgetCard-clock:not(:has(.widgetMenu)) .widgetHeader {
|
|
display: none;
|
|
}
|
|
|
|
.widgetCard-clock .widgetTitle {
|
|
display: none;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent {
|
|
height: 100%;
|
|
min-height: 0;
|
|
}
|
|
|
|
.dashboardTabEditor {
|
|
min-height: 38px;
|
|
display: inline-grid;
|
|
grid-template-columns: minmax(90px, 180px) 30px;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
|
|
border: 1px solid var(--border);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.dashboardTabEditorActive {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
|
|
}
|
|
|
|
.dashboardTabInput {
|
|
width: 100%;
|
|
min-width: 0;
|
|
height: 36px;
|
|
padding: 0 4px 0 14px;
|
|
color: var(--text);
|
|
background: transparent;
|
|
border: 0;
|
|
outline: 0;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.dashboardTabDelete {
|
|
width: 30px;
|
|
height: 30px;
|
|
display: grid;
|
|
place-items: center;
|
|
margin-right: 4px;
|
|
color: #ff6b7a;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.dashboardTabDelete:hover:not(:disabled) {
|
|
background: rgba(255, 107, 122, 0.12);
|
|
}
|
|
|
|
.dashboardTabDelete:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.35;
|
|
}
|
|
|
|
.widgetCard-clock {
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent {
|
|
height: 100% !important;
|
|
min-height: 0 !important;
|
|
display: grid !important;
|
|
place-items: center !important;
|
|
padding: 0 !important;
|
|
overflow: hidden !important;
|
|
scrollbar-width: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent::-webkit-scrollbar {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent > * {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-height: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
/* Custom-CSS-Feld */
|
|
.customCssTextarea {
|
|
min-height: 220px;
|
|
resize: vertical;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
/* Widget-Transparenz: nur Bubble-Hintergrund, nicht Inhalt */
|
|
.widgetCard {
|
|
position: relative;
|
|
isolation: isolate;
|
|
opacity: 1 !important;
|
|
background: transparent !important;
|
|
}
|
|
|
|
.widgetCard::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
background:
|
|
linear-gradient(
|
|
180deg,
|
|
color-mix(in srgb, var(--surface-strong) 92%, transparent),
|
|
color-mix(in srgb, var(--surface) 92%, transparent)
|
|
);
|
|
border-radius: inherit;
|
|
opacity: var(--widget-opacity, 1);
|
|
}
|
|
|
|
.widgetCard > * {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.widgetCard .favoriteTile,
|
|
.widgetCard .input,
|
|
.widgetCard .button,
|
|
.widgetCard .widgetMenuButton,
|
|
.widgetCard .widgetDropdown,
|
|
.widgetCard .widgetDragHandle,
|
|
.widgetCard textarea,
|
|
.widgetCard select {
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
/* Suche-Widget: keine eigene Widget-Bubble, nur Suchleiste anzeigen */
|
|
.widgetCard-search {
|
|
background: transparent !important;
|
|
border-color: transparent !important;
|
|
box-shadow: none !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.widgetCard-search::before {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-search .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-search .widgetContent {
|
|
height: 100% !important;
|
|
min-height: 0 !important;
|
|
display: grid !important;
|
|
align-items: center !important;
|
|
padding: 0 !important;
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.widgetCard-search .searchWidgetForm {
|
|
width: 100%;
|
|
min-height: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.calendarSourceList {
|
|
display: grid;
|
|
gap: 10px;
|
|
}
|
|
|
|
.calendarSourceListItem {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
padding: 12px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
}
|
|
|
|
.calendarSourceColorDot {
|
|
width: 12px;
|
|
height: 12px;
|
|
display: inline-block;
|
|
flex: 0 0 auto;
|
|
border-radius: 999px;
|
|
box-shadow: 0 0 0 2px color-mix(in srgb, currentColor 15%, transparent);
|
|
}
|
|
|
|
.calendarSourceEditor {
|
|
display: grid;
|
|
gap: 12px;
|
|
padding-top: 14px;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.calendarSourceCheckbox {
|
|
display: grid;
|
|
grid-template-columns: auto auto minmax(0, 1fr);
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 10px 12px;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.calendarSourceCheckbox small {
|
|
display: block;
|
|
color: var(--muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.calendarSourceListItem {
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
}
|
|
|
|
.calendarSourceListItem .settingsButtonRow {
|
|
grid-column: 1 / -1;
|
|
}
|
|
}
|
|
|
|
/* Uhr-Widget: wirklich zentriert, ohne Scrollbar, ohne Titel/Innenbox */
|
|
.widgetCard-clock {
|
|
container-type: size;
|
|
display: grid !important;
|
|
grid-template-rows: minmax(0, 1fr) !important;
|
|
padding: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-width: 0 !important;
|
|
min-height: 0 !important;
|
|
display: grid !important;
|
|
place-items: center !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
overflow: hidden !important;
|
|
scrollbar-width: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent::-webkit-scrollbar {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-clock .widgetContent > * {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-width: 0 !important;
|
|
min-height: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
/* Widget-Hinzufügen-Menü: linksbündig lassen, aber vertikal sauber ausrichten */
|
|
.addWidgetDropdown {
|
|
padding-top: 10px !important;
|
|
padding-bottom: 10px !important;
|
|
}
|
|
|
|
.addWidgetDropdown .widgetDropdownButton {
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: flex-start !important;
|
|
text-align: left !important;
|
|
min-height: 36px !important;
|
|
line-height: 1.2 !important;
|
|
padding-top: 0 !important;
|
|
padding-bottom: 0 !important;
|
|
}
|
|
|
|
/* Widget-Menüs immer über anderen Widgets anzeigen */
|
|
.react-grid-item {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.react-grid-item.gridItemMenuOpen {
|
|
z-index: 99999 !important;
|
|
}
|
|
|
|
.gridItemMenuOpen,
|
|
.gridItemMenuOpen .widgetCard,
|
|
.gridItemMenuOpen .widgetHeader,
|
|
.gridItemMenuOpen .widgetMenu {
|
|
overflow: visible !important;
|
|
z-index: 99999 !important;
|
|
}
|
|
|
|
.widgetMenu {
|
|
position: relative !important;
|
|
z-index: 100000 !important;
|
|
}
|
|
|
|
.widgetDropdown {
|
|
position: absolute !important;
|
|
z-index: 100001 !important;
|
|
}
|
|
|
|
/* Suche-Widget: im normalen Modus ohne Rahmen/Header, im Bearbeitungsmodus aber mit Ziehen/Menü */
|
|
.widgetCard-search {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.widgetCard-search:has(.widgetDragHandle) {
|
|
display: grid !important;
|
|
grid-template-rows: auto minmax(0, 1fr) !important;
|
|
background: transparent !important;
|
|
}
|
|
|
|
.widgetCard-search:has(.widgetDragHandle)::before {
|
|
display: block !important;
|
|
content: "" !important;
|
|
}
|
|
|
|
.widgetCard-search:has(.widgetDragHandle) .widgetHeader {
|
|
display: flex !important;
|
|
background: transparent !important;
|
|
border-bottom: 1px solid var(--border) !important;
|
|
}
|
|
|
|
.widgetCard-search:has(.widgetDragHandle) .widgetContent {
|
|
padding: 10px !important;
|
|
}
|
|
|
|
.widgetCard-search:not(:has(.widgetDragHandle)) .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Favoriten: Drag & Drop Sortierung */
|
|
.favoriteSortableItem {
|
|
display: grid;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
align-items: stretch;
|
|
transition:
|
|
opacity 0.15s ease,
|
|
transform 0.15s ease,
|
|
background-color 0.15s ease;
|
|
}
|
|
|
|
.favoriteSortableItemDragging {
|
|
opacity: 0.45;
|
|
}
|
|
|
|
.favoriteSortableItemDragOver {
|
|
transform: translateY(2px);
|
|
}
|
|
|
|
.favoriteSortableItemDragOver::before {
|
|
content: "";
|
|
grid-column: 1 / -1;
|
|
height: 3px;
|
|
background: var(--accent);
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.favoriteDragHandle {
|
|
width: 34px;
|
|
min-width: 34px;
|
|
display: grid;
|
|
place-items: center;
|
|
color: var(--muted);
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
cursor: grab;
|
|
user-select: none;
|
|
font-weight: 800;
|
|
line-height: 1;
|
|
}
|
|
|
|
.favoriteDragHandle:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile {
|
|
min-width: 0;
|
|
}
|
|
|
|
@media (max-width: 420px) {
|
|
.favoriteSortableItem {
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
}
|
|
|
|
.favoriteDragHandle {
|
|
grid-row: 1;
|
|
grid-column: 1 / -1;
|
|
width: 100%;
|
|
height: 28px;
|
|
}
|
|
}
|
|
|
|
/* Favoriten: Einträge immer auf volle Widget-Breite ziehen */
|
|
.favoritesWidget,
|
|
.favoriteTileList {
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
.favoriteTileList {
|
|
display: grid;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.favoriteSortableItem {
|
|
width: 100%;
|
|
min-width: 0;
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) !important;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile {
|
|
width: 100%;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* Im Bearbeitungsmodus: Griff | Link | Entfernen */
|
|
.favoriteSortableItem:has(.favoriteDragHandle) {
|
|
grid-template-columns: auto minmax(0, 1fr) auto !important;
|
|
}
|
|
|
|
.favoriteSortableItem:has(.favoriteDragHandle) .favoriteTile {
|
|
grid-column: auto;
|
|
}
|
|
|
|
/* Kompaktere Favoriten-Kacheln */
|
|
.favoriteTileList {
|
|
gap: 6px !important;
|
|
}
|
|
|
|
.favoriteSortableItem {
|
|
min-height: 38px !important;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile,
|
|
.favoriteTile {
|
|
min-height: 38px !important;
|
|
height: 38px !important;
|
|
padding: 5px 10px !important;
|
|
border-radius: 10px !important;
|
|
}
|
|
|
|
.favoriteIconFrame,
|
|
.favoriteIcon,
|
|
.favoriteIconImage,
|
|
.favoriteIconPlaceholder {
|
|
width: 28px !important;
|
|
height: 28px !important;
|
|
min-width: 28px !important;
|
|
}
|
|
|
|
.favoriteTitle {
|
|
font-size: 13px !important;
|
|
line-height: 1.1 !important;
|
|
}
|
|
|
|
.favoriteRemoveButton {
|
|
min-height: 38px !important;
|
|
height: 38px !important;
|
|
padding: 0 10px !important;
|
|
}
|
|
|
|
.favoriteDragHandle {
|
|
min-height: 38px !important;
|
|
height: 38px !important;
|
|
}
|
|
|
|
.favoriteAddForm,
|
|
.favoriteAddForm .input {
|
|
min-height: 36px !important;
|
|
height: 36px !important;
|
|
}
|
|
|
|
.favoriteAddButton {
|
|
min-height: 36px !important;
|
|
height: 36px !important;
|
|
}
|
|
|
|
/* Favoriten: Text responsiv kleiner bei schmalen Widgets */
|
|
.widgetCard-favorites {
|
|
container-type: inline-size;
|
|
}
|
|
|
|
.favoriteTitle {
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-size: clamp(10px, 4.2cqw, 13px) !important;
|
|
}
|
|
|
|
@container (max-width: 240px) {
|
|
.favoriteTitle {
|
|
font-size: 11px !important;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile,
|
|
.favoriteTile {
|
|
padding-left: 8px !important;
|
|
padding-right: 8px !important;
|
|
}
|
|
|
|
.favoriteIconFrame,
|
|
.favoriteIcon,
|
|
.favoriteIconImage,
|
|
.favoriteIconPlaceholder {
|
|
width: 24px !important;
|
|
height: 24px !important;
|
|
min-width: 24px !important;
|
|
}
|
|
}
|
|
|
|
@container (max-width: 180px) {
|
|
.favoriteTitle {
|
|
font-size: 10px !important;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile,
|
|
.favoriteTile {
|
|
gap: 6px !important;
|
|
padding-left: 6px !important;
|
|
padding-right: 6px !important;
|
|
}
|
|
|
|
.favoriteIconFrame,
|
|
.favoriteIcon,
|
|
.favoriteIconImage,
|
|
.favoriteIconPlaceholder {
|
|
width: 22px !important;
|
|
height: 22px !important;
|
|
min-width: 22px !important;
|
|
}
|
|
}
|
|
|
|
/* Favoriten-Schriftgröße: nicht automatisch nach Widget-Breite skalieren,
|
|
sondern über Widget-Menü-Regler steuern. */
|
|
.widgetCard-favorites .favoriteTitle,
|
|
.favoriteTitle {
|
|
font-size: calc(13px * var(--widget-font-scale, 1)) !important;
|
|
line-height: 1.15 !important;
|
|
}
|
|
|
|
/* Frühere @container-Regeln für schmale Favoriten-Widgets neutralisieren. */
|
|
@container (max-width: 240px) {
|
|
.widgetCard-favorites .favoriteTitle,
|
|
.favoriteTitle {
|
|
font-size: calc(13px * var(--widget-font-scale, 1)) !important;
|
|
}
|
|
}
|
|
|
|
@container (max-width: 180px) {
|
|
.widgetCard-favorites .favoriteTitle,
|
|
.favoriteTitle {
|
|
font-size: calc(13px * var(--widget-font-scale, 1)) !important;
|
|
}
|
|
}
|
|
|
|
.widgetFontSizeControl {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
/* Links/Favoriten: Abstand zwischen Icon und Text ca. 30% kleiner */
|
|
.favoriteTile {
|
|
gap: 7px !important;
|
|
}
|
|
|
|
.favoriteSortableItem .favoriteTile {
|
|
gap: 2px !important;
|
|
}
|
|
|
|
/* Im Bearbeitungsmodus müssen alle Widgets Ziehen-Handle und Menü zeigen. */
|
|
.widgetCard.widgetEditing {
|
|
display: grid !important;
|
|
grid-template-rows: auto minmax(0, 1fr) !important;
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetHeader {
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
gap: 8px !important;
|
|
min-height: 34px !important;
|
|
padding: 8px 10px 6px !important;
|
|
overflow: visible !important;
|
|
background: transparent !important;
|
|
border-bottom: 1px solid var(--border) !important;
|
|
z-index: 20 !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetDragHandle,
|
|
.widgetCard.widgetEditing .widgetMenu {
|
|
display: inline-flex !important;
|
|
visibility: visible !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetMenu {
|
|
margin-left: auto !important;
|
|
}
|
|
|
|
/* Widgets ohne Titel im Normalmodus, z.B. Uhr/Suche, dürfen im Editmodus trotzdem Header haben. */
|
|
.widgetCard-clock:not(.widgetEditing) .widgetHeader,
|
|
.widgetCard-search:not(.widgetEditing) .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Alte Uhr-Regeln überschreiben: Uhr im Editmodus mit Header, sonst ohne Header. */
|
|
.widgetCard-clock.widgetEditing {
|
|
grid-template-rows: auto minmax(0, 1fr) !important;
|
|
}
|
|
|
|
.widgetCard-clock.widgetEditing .widgetHeader {
|
|
display: flex !important;
|
|
}
|
|
|
|
.widgetCard-clock.widgetEditing .widgetContent {
|
|
height: 100% !important;
|
|
min-height: 0 !important;
|
|
}
|
|
|
|
/* Dropdowns immer über anderen Widgets */
|
|
.react-grid-item {
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.react-grid-item.gridItemMenuOpen {
|
|
z-index: 99999 !important;
|
|
}
|
|
|
|
.gridItemMenuOpen,
|
|
.gridItemMenuOpen .widgetCard,
|
|
.gridItemMenuOpen .widgetHeader,
|
|
.gridItemMenuOpen .widgetMenu {
|
|
overflow: visible !important;
|
|
z-index: 99999 !important;
|
|
}
|
|
|
|
.widgetMenu {
|
|
position: relative !important;
|
|
z-index: 100000 !important;
|
|
}
|
|
|
|
.widgetDropdown {
|
|
position: absolute !important;
|
|
z-index: 100001 !important;
|
|
}
|
|
|
|
/* Fix: Widget-Edit-Header sauber vertikal zentrieren */
|
|
.widgetCard.widgetEditing .widgetHeader {
|
|
min-height: 44px !important;
|
|
height: 44px !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: space-between !important;
|
|
gap: 8px !important;
|
|
padding: 6px 10px !important;
|
|
line-height: 1 !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetTitle {
|
|
min-height: 32px !important;
|
|
height: 32px !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
flex: 1 1 auto !important;
|
|
min-width: 0 !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetTitle h2 {
|
|
margin: 0 !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
min-height: 32px !important;
|
|
height: 32px !important;
|
|
line-height: 1.1 !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetTitleInput {
|
|
height: 32px !important;
|
|
min-height: 32px !important;
|
|
margin: 0 !important;
|
|
line-height: 1 !important;
|
|
align-self: center !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetDragHandle,
|
|
.widgetCard.widgetEditing .widgetMenuButton {
|
|
height: 32px !important;
|
|
min-height: 32px !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
align-self: center !important;
|
|
margin: 0 !important;
|
|
padding: 0 10px !important;
|
|
line-height: 1 !important;
|
|
vertical-align: middle !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetMenu {
|
|
height: 32px !important;
|
|
min-height: 32px !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
align-self: center !important;
|
|
margin-left: auto !important;
|
|
}
|
|
|
|
/* Kleine Widgets: Header bleibt zentriert, nur etwas kompakter */
|
|
@container (max-height: 170px) {
|
|
.widgetCard.widgetEditing .widgetHeader {
|
|
min-height: 40px !important;
|
|
height: 40px !important;
|
|
padding: 4px 8px !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetDragHandle,
|
|
.widgetCard.widgetEditing .widgetMenuButton,
|
|
.widgetCard.widgetEditing .widgetMenu,
|
|
.widgetCard.widgetEditing .widgetTitle,
|
|
.widgetCard.widgetEditing .widgetTitle h2,
|
|
.widgetCard.widgetEditing .widgetTitleInput {
|
|
height: 30px !important;
|
|
min-height: 30px !important;
|
|
}
|
|
}
|
|
|
|
/* Kompakterer Edit-Header, damit Widgets niedriger skaliert werden können */
|
|
.widgetCard.widgetEditing .widgetHeader {
|
|
min-height: 36px !important;
|
|
height: 36px !important;
|
|
padding: 3px 8px !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetTitle,
|
|
.widgetCard.widgetEditing .widgetTitle h2,
|
|
.widgetCard.widgetEditing .widgetTitleInput,
|
|
.widgetCard.widgetEditing .widgetDragHandle,
|
|
.widgetCard.widgetEditing .widgetMenu,
|
|
.widgetCard.widgetEditing .widgetMenuButton {
|
|
height: 30px !important;
|
|
min-height: 30px !important;
|
|
align-self: center !important;
|
|
}
|
|
|
|
.widgetCard.widgetEditing .widgetDragHandle,
|
|
.widgetCard.widgetEditing .widgetMenuButton {
|
|
padding: 0 9px !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
line-height: 1 !important;
|
|
}
|
|
|
|
/* Uhr-Widget: Inhalt soll den Widget-Platz stärker ausnutzen, ohne Ziffern abzuschneiden */
|
|
.widgetCard-clock:not(.widgetEditing) {
|
|
grid-template-rows: minmax(0, 1fr) !important;
|
|
padding: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.widgetCard-clock:not(.widgetEditing) .widgetHeader {
|
|
display: none !important;
|
|
}
|
|
|
|
.widgetCard-clock:not(.widgetEditing) .widgetContent {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-width: 0 !important;
|
|
min-height: 0 !important;
|
|
display: grid !important;
|
|
place-items: stretch !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.widgetCard-clock:not(.widgetEditing) .widgetContent > * {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
min-width: 0 !important;
|
|
min-height: 0 !important;
|
|
}
|
|
|
|
/* Dashboard-Tabs: kompakte Leiste direkt unter der oberen Titelleiste */
|
|
.dashboardTabsBar {
|
|
margin: 0 !important;
|
|
padding: 6px 22px !important;
|
|
min-height: 42px !important;
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
background: color-mix(in srgb, var(--surface) 82%, transparent) !important;
|
|
border-bottom: 1px solid var(--border) !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.dashboardTabsList {
|
|
width: 100% !important;
|
|
min-width: 0 !important;
|
|
display: flex !important;
|
|
flex-wrap: wrap !important;
|
|
align-items: center !important;
|
|
gap: 6px !important;
|
|
}
|
|
|
|
.dashboardTab {
|
|
min-height: 28px !important;
|
|
height: 28px !important;
|
|
padding: 0 10px !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
border-radius: 9px !important;
|
|
font-size: 12px !important;
|
|
font-weight: 700 !important;
|
|
line-height: 1 !important;
|
|
}
|
|
|
|
.dashboardTabActive {
|
|
color: var(--accent-text, #ffffff) !important;
|
|
background: var(--accent) !important;
|
|
border-color: var(--accent) !important;
|
|
}
|
|
|
|
.dashboardTabAdd {
|
|
width: 28px !important;
|
|
min-width: 28px !important;
|
|
padding: 0 !important;
|
|
font-size: 18px !important;
|
|
}
|
|
|
|
/* Editierbare Tabs ebenfalls kleiner */
|
|
.dashboardTabEditor {
|
|
min-height: 28px !important;
|
|
height: 28px !important;
|
|
grid-template-columns: minmax(70px, 140px) 24px !important;
|
|
border-radius: 9px !important;
|
|
}
|
|
|
|
.dashboardTabInput {
|
|
height: 26px !important;
|
|
min-height: 26px !important;
|
|
padding: 0 4px 0 10px !important;
|
|
font-size: 12px !important;
|
|
line-height: 1 !important;
|
|
}
|
|
|
|
.dashboardTabDelete {
|
|
width: 22px !important;
|
|
height: 22px !important;
|
|
margin-right: 3px !important;
|
|
font-size: 16px !important;
|
|
}
|
|
|
|
/* Da die Tabs jetzt außerhalb liegen, braucht der Workspace oben weniger Luft */
|
|
.dashboardWorkspace {
|
|
padding-top: 16px !important;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
.dashboardTabsBar {
|
|
padding: 6px 16px !important;
|
|
}
|
|
|
|
.dashboardWorkspace {
|
|
padding-top: 14px !important;
|
|
}
|
|
}
|
|
|
|
/* Fix: Links/Favoriten-Widget komplett scrollbar machen,
|
|
damit auch Titel/URL/Logo-Felder erreichbar bleiben */
|
|
.widgetCard-favorites {
|
|
min-height: 0 !important;
|
|
overflow: hidden !important;
|
|
}
|
|
|
|
.widgetCard-favorites .widgetContent {
|
|
min-height: 0 !important;
|
|
height: 100% !important;
|
|
overflow-y: auto !important;
|
|
overflow-x: hidden !important;
|
|
padding: 10px !important;
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
.widgetCard-favorites .favoritesWidget {
|
|
height: auto !important;
|
|
min-height: 100% !important;
|
|
display: grid !important;
|
|
grid-template-rows: auto auto !important;
|
|
gap: 12px !important;
|
|
overflow: visible !important;
|
|
}
|
|
|
|
.widgetCard-favorites .favoriteTileList {
|
|
max-height: none !important;
|
|
min-height: 0 !important;
|
|
overflow: visible !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
.widgetCard-favorites .favoriteAddForm {
|
|
position: relative !important;
|
|
display: grid !important;
|
|
flex: 0 0 auto !important;
|
|
padding-bottom: 4px !important;
|
|
}
|
|
|
|
/* Im Bearbeitungsmodus genug Platz lassen, damit das Formular nicht vom Resize-Griff verdeckt wird */
|
|
.widgetCard-favorites.widgetEditing .widgetContent {
|
|
padding-bottom: 20px !important;
|
|
}
|
|
|
|
/* Kalender: Tage mit Terminen nur umranden, nicht hinterlegen */
|
|
.calendarDayWithEvents {
|
|
background: transparent !important;
|
|
border-color: var(--accent) !important;
|
|
box-shadow: inset 0 0 0 1px var(--accent) !important;
|
|
}
|
|
|
|
.calendarDayWithEvents:hover {
|
|
background: color-mix(in srgb, var(--accent-soft) 18%, transparent) !important;
|
|
}
|
|
|
|
/* Heute + Termin: weiterhin erkennbar, aber ohne starke Fläche */
|
|
.calendarDayToday.calendarDayWithEvents {
|
|
background: transparent !important;
|
|
border-color: var(--accent) !important;
|
|
box-shadow:
|
|
inset 0 0 0 1px var(--accent),
|
|
0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent) !important;
|
|
}
|
|
|
|
/* Event-Zähler lesbar halten */
|
|
.calendarDayWithEvents .calendarEventCount {
|
|
color: #fff !important;
|
|
background: var(--accent) !important;
|
|
}
|
|
|
|
/* =========================================================
|
|
Compact Widget UI Pass
|
|
Ziel: weniger Platzverbrauch, Griffe/Menüs ohne Layout-Höhe
|
|
========================================================= */
|
|
|
|
.widgetCard {
|
|
position: relative !important;
|
|
}
|
|
|
|
.widgetCardMenuOpen {
|
|
z-index: 950 !important;
|
|
}
|
|
|
|
.widgetGrid .gridItemMenuOpen {
|
|
z-index: 950 !important;
|
|
}
|
|
|
|
.react-grid-item.react-draggable-dragging {
|
|
z-index: 980 !important;
|
|
}
|
|
|
|
/* Header kompakter */
|
|
.widgetHeader {
|
|
min-height: 26px !important;
|
|
padding: 4px 8px 2px !important;
|
|
gap: 6px !important;
|
|
}
|
|
|
|
.widgetCardEditMode .widgetHeader {
|
|
padding-left: 34px !important;
|
|
padding-right: 36px !important;
|
|
}
|
|
|
|
/* Titel kompakter */
|
|
.widgetTitle {
|
|
min-height: 24px !important;
|
|
}
|
|
|
|
.widgetTitle h2 {
|
|
margin: 0 !important;
|
|
font-size: calc(14px * var(--widget-font-scale, 1)) !important;
|
|
line-height: 1.1 !important;
|
|
}
|
|
|
|
.widgetTitleInput {
|
|
min-height: 24px !important;
|
|
height: 24px !important;
|
|
padding: 0 6px !important;
|
|
font-size: calc(13px * var(--widget-font-scale, 1)) !important;
|
|
line-height: 24px !important;
|
|
}
|
|
|
|
/* Griff statt großer Ziehen-Button */
|
|
.widgetDragHandle {
|
|
position: absolute !important;
|
|
top: 5px !important;
|
|
left: 7px !important;
|
|
z-index: 80 !important;
|
|
width: 20px !important;
|
|
height: 22px !important;
|
|
display: grid !important;
|
|
place-items: center !important;
|
|
padding: 0 !important;
|
|
color: var(--muted) !important;
|
|
background: transparent !important;
|
|
border: 0 !important;
|
|
border-radius: 8px !important;
|
|
cursor: grab !important;
|
|
user-select: none !important;
|
|
touch-action: none !important;
|
|
}
|
|
|
|
.widgetDragHandle:hover {
|
|
background: color-mix(in srgb, var(--accent-soft) 38%, transparent) !important;
|
|
color: var(--accent) !important;
|
|
}
|
|
|
|
.widgetDragHandle:active {
|
|
cursor: grabbing !important;
|
|
}
|
|
|
|
.widgetDragGrip {
|
|
width: 13px !important;
|
|
height: 17px !important;
|
|
display: block !important;
|
|
opacity: 0.72 !important;
|
|
background-image: radial-gradient(currentColor 1.3px, transparent 1.4px) !important;
|
|
background-size: 6px 6px !important;
|
|
background-position: 0 0 !important;
|
|
}
|
|
|
|
/* Menü aus dem Layoutfluss nehmen */
|
|
.widgetMenu {
|
|
position: absolute !important;
|
|
top: 5px !important;
|
|
right: 7px !important;
|
|
z-index: 90 !important;
|
|
width: auto !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
.widgetMenuButton {
|
|
width: 24px !important;
|
|
min-width: 24px !important;
|
|
height: 24px !important;
|
|
min-height: 24px !important;
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
padding: 0 !important;
|
|
color: var(--muted) !important;
|
|
background: transparent !important;
|
|
border: 0 !important;
|
|
border-radius: 8px !important;
|
|
cursor: pointer !important;
|
|
font-size: 12px !important;
|
|
line-height: 1 !important;
|
|
letter-spacing: -1px !important;
|
|
}
|
|
|
|
.widgetMenuButton:hover {
|
|
color: var(--accent) !important;
|
|
background: color-mix(in srgb, var(--accent-soft) 42%, transparent) !important;
|
|
}
|
|
|
|
/* Dropdown kompakter und immer über Widgets */
|
|
.widgetDropdown {
|
|
position: absolute !important;
|
|
top: 28px !important;
|
|
right: 0 !important;
|
|
z-index: 999 !important;
|
|
min-width: 190px !important;
|
|
padding: 6px !important;
|
|
gap: 4px !important;
|
|
border-radius: 12px !important;
|
|
box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28) !important;
|
|
}
|
|
|
|
.widgetDropdownButton {
|
|
min-height: 30px !important;
|
|
padding: 0 9px !important;
|
|
border-radius: 9px !important;
|
|
font-size: 12px !important;
|
|
line-height: 1.1 !important;
|
|
}
|
|
|
|
/* Widget-Inhalt kompakter */
|
|
.widgetContent {
|
|
padding: 7px 8px 8px !important;
|
|
}
|
|
|
|
.widgetCardEditMode .widgetContent {
|
|
padding-top: 5px !important;
|
|
}
|
|
|
|
/* Uhr bleibt ohne künstlichen Header-Platz */
|
|
.widgetCard-clock .widgetHeader {
|
|
min-height: 0 !important;
|
|
height: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.widgetCard-clock.widgetCardEditMode .widgetHeader {
|
|
min-height: 26px !important;
|
|
height: 26px !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.widgetCard-clock.widgetCardEditMode .widgetContent {
|
|
padding-top: 2px !important;
|
|
}
|
|
|
|
/* Controls innerhalb von Widgets schlanker */
|
|
.widgetCard .button,
|
|
.widgetCard .buttonSecondary,
|
|
.widgetCard .input,
|
|
.widgetCard .select,
|
|
.widgetCard .searchInput {
|
|
min-height: 30px !important;
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
.widgetCard .button,
|
|
.widgetCard .buttonSecondary {
|
|
padding: 0 10px !important;
|
|
border-radius: 9px !important;
|
|
}
|
|
|
|
.widgetCard .input,
|
|
.widgetCard .select,
|
|
.widgetCard .searchInput {
|
|
padding-top: 0 !important;
|
|
padding-bottom: 0 !important;
|
|
padding-left: 9px !important;
|
|
padding-right: 9px !important;
|
|
border-radius: 9px !important;
|
|
}
|
|
|
|
/* Labels/Form-Abstände in Widgets reduzieren */
|
|
.widgetCard .fieldLabel,
|
|
.widgetCard .calendarSourceForm,
|
|
.widgetCard .favoriteAddForm,
|
|
.widgetCard .domainCheckForm,
|
|
.widgetCard .searchWidgetForm {
|
|
gap: 6px !important;
|
|
}
|
|
|
|
.widgetCard .settingsButtonRow {
|
|
gap: 6px !important;
|
|
}
|
|
|
|
/* Notiz-Markdown-Leiste kompakter */
|
|
.widgetCard .noteMarkdownToolbar {
|
|
gap: 4px !important;
|
|
padding: 4px !important;
|
|
}
|
|
|
|
.widgetCard .noteMarkdownToolbar button,
|
|
.widgetCard .markdownToolbarButton {
|
|
min-width: 28px !important;
|
|
min-height: 26px !important;
|
|
height: 26px !important;
|
|
padding: 0 7px !important;
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
/* Kalender etwas luftiger im Inhalt, aber weniger verschwenderisch */
|
|
.widgetCard .calendarHeader {
|
|
gap: 5px !important;
|
|
margin-bottom: 6px !important;
|
|
}
|
|
|
|
.widgetCard .calendarNavButton,
|
|
.widgetCard .calendarMonthButton {
|
|
min-height: 28px !important;
|
|
padding: 0 8px !important;
|
|
font-size: 12px !important;
|
|
}
|
|
|
|
/* Transparenz-/Slider-Zeile im Menü kompakter */
|
|
.widgetOpacityControl,
|
|
.widgetFontSizeControl {
|
|
gap: 5px !important;
|
|
padding: 6px 7px !important;
|
|
font-size: 12px !important;
|
|
}
|