Dieser Commit ist enthalten in:
Claude Project Manager
2025-07-10 23:55:34 +02:00
Ursprung 3f2a2fc4dc
Commit a2154e2a30
11 geänderte Dateien mit 283 neuen und 210 gelöschten Zeilen

Datei anzeigen

@ -274,6 +274,7 @@ body.light-mode .metadata-content {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
position: relative;
}
body.light-mode .metadata-table td:first-child {
@ -334,9 +335,12 @@ body.light-mode .metadata-table td:first-child {
font-size: 16px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
margin-top: 24px;
transition: all 0.3s ease;
letter-spacing: 0.5px;
height: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.clear-btn:hover {
@ -417,7 +421,7 @@ body.light-mode .title-bar {
-webkit-app-region: no-drag;
}
.settings-btn {
.theme-toggle-btn {
background-color: var(--secondary-bg);
border: 1px solid var(--border-color);
color: var(--accent);
@ -428,15 +432,43 @@ body.light-mode .title-bar {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
position: relative;
}
.settings-btn:hover {
.theme-toggle-btn:hover {
background-color: var(--secondary-bg-hover);
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}
.theme-icon {
width: 24px;
height: 24px;
position: absolute;
transition: opacity 0.3s ease;
}
.theme-icon.dark-icon {
opacity: 1;
filter: brightness(0) saturate(100%) invert(88%) sepia(61%) saturate(3812%) hue-rotate(154deg) brightness(101%) contrast(101%);
}
.theme-icon.light-icon {
opacity: 0;
filter: brightness(0) saturate(100%) invert(74%) sepia(91%) saturate(5214%) hue-rotate(355deg) brightness(103%) contrast(104%);
}
body.light-mode .theme-icon.dark-icon {
opacity: 0;
}
body.light-mode .theme-icon.light-icon {
opacity: 1;
}
.window-control {
background: transparent;
border: none;
@ -459,139 +491,108 @@ body.light-mode .title-bar {
color: white;
}
/* Settings Dialog */
.settings-dialog {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 2000;
align-items: center;
justify-content: center;
}
.settings-dialog.show {
display: flex;
}
.settings-content {
background-color: var(--secondary-bg);
border-radius: 16px;
width: 500px;
max-width: 90%;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
overflow: hidden;
animation: slideIn 0.3s ease;
}
@keyframes slideIn {
from {
transform: translateY(-20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.settings-header {
background-color: var(--primary);
padding: 20px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
.settings-header h2 {
margin: 0;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 20px;
color: var(--text-primary);
}
.settings-close {
background: transparent;
border: none;
color: var(--text-primary);
font-size: 24px;
cursor: pointer;
padding: 0;
width: 32px;
height: 32px;
border-radius: 8px;
transition: all 0.3s ease;
}
.settings-close:hover {
background-color: var(--error);
}
.settings-body {
padding: 24px;
}
.settings-section {
margin-bottom: 24px;
}
.settings-section h3 {
margin: 0 0 16px 0;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 16px;
color: var(--text-primary);
}
.theme-selector {
display: flex;
gap: 16px;
}
.theme-option {
flex: 1;
cursor: pointer;
}
.theme-option input[type="radio"] {
display: none;
}
.theme-label {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 16px;
background-color: var(--background);
border: 2px solid var(--border-color);
border-radius: 12px;
transition: all 0.3s ease;
font-weight: 500;
}
.theme-option input[type="radio"]:checked + .theme-label {
border-color: var(--accent);
background-color: var(--secondary-bg-hover);
}
.theme-label:hover {
border-color: var(--accent);
}
.theme-icon {
font-size: 24px;
}
/* Adjust container for spacing */
.container {
padding-top: 20px;
}
/* Info icon styling */
.info-icon {
display: inline-block;
margin-left: 8px;
cursor: help;
vertical-align: middle;
position: relative;
}
.info-icon img {
width: 16px;
height: 16px;
opacity: 0.5;
transition: opacity 0.3s ease;
filter: brightness(0) saturate(100%) invert(73%) sepia(11%) saturate(374%) hue-rotate(185deg) brightness(90%) contrast(87%);
}
body.light-mode .info-icon img {
filter: brightness(0) saturate(100%) invert(39%) sepia(9%) saturate(505%) hue-rotate(175deg) brightness(92%) contrast(87%);
}
.info-icon:hover img {
opacity: 0.8;
}
/* Tooltip styling */
.info-icon[title] {
position: relative;
}
.info-icon[title]:hover::after {
content: attr(title);
position: absolute;
top: 50%;
left: calc(100% + 10px);
transform: translateY(-50%);
background-color: var(--primary);
color: var(--text-primary);
padding: 8px 12px;
border-radius: 8px;
font-size: 12px;
font-weight: normal;
text-transform: none;
letter-spacing: normal;
white-space: normal;
width: 300px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
z-index: 1000;
pointer-events: none;
line-height: 1.4;
animation: tooltipFadeIn 0.3s ease;
}
.info-icon[title]:hover::before {
content: '';
position: absolute;
top: 50%;
left: 100%;
transform: translateY(-50%);
border: 6px solid transparent;
border-right-color: var(--primary);
margin-left: -2px;
z-index: 1001;
pointer-events: none;
animation: tooltipFadeIn 0.3s ease;
}
@keyframes tooltipFadeIn {
from {
opacity: 0;
transform: translateY(-50%) translateX(5px);
}
to {
opacity: 1;
transform: translateY(-50%) translateX(0);
}
}
/* Alternative tooltip position for items near the right edge */
.metadata-table tr:nth-last-child(-n+3) .info-icon[title]:hover::after {
top: auto;
bottom: 50%;
left: auto;
right: calc(100% + 10px);
transform: translateY(50%);
}
.metadata-table tr:nth-last-child(-n+3) .info-icon[title]:hover::before {
left: auto;
right: 100%;
border-right-color: transparent;
border-left-color: var(--primary);
margin-left: 0;
margin-right: -2px;
}
/* Action Buttons */
.action-buttons {
display: flex;
@ -611,6 +612,10 @@ body.light-mode .title-bar {
font-weight: 600;
transition: all 0.3s ease;
letter-spacing: 0.5px;
height: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.report-btn:hover {