diff --git a/Management.html b/Management.html index 0e837f9..1450c7a 100644 --- a/Management.html +++ b/Management.html @@ -178,6 +178,69 @@ padding: 40px; color: #666; } + + /* 标题栏操作按钮样式 */ + .title-bar-actions { + display: flex; + gap: 8px; + align-items: center; + } + + .title-bar-actions button { + padding: 8px 16px; + border: 1px solid rgba(255, 255, 255, 0.3); + border-radius: 20px; + background-color: rgba(255, 255, 255, 0.1); + color: white; + cursor: pointer; + font-size: 14px; + transition: all 0.3s ease; + font-weight: 500; + } + + .title-bar-actions button:hover { + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.5); + transform: translateY(-1px); + } + + .title-bar-actions button.active { + background-color: white; + color: #1677ff; + border-color: white; + box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3); + } + + /* 日期输入框样式 */ + .title-bar-actions input[type="date"] { + padding: 6px 12px; + border: 1px solid rgba(255, 255, 255, 0.3); + border-radius: 20px; + background-color: rgba(255, 255, 255, 0.1); + color: white; + font-size: 14px; + transition: all 0.3s ease; + } + + .title-bar-actions input[type="date"]::-webkit-calendar-picker-indicator { + filter: invert(1); + } + + .title-bar-actions input[type="date"]:hover { + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.5); + } + + /* 自定义按钮样式 */ + #customBtn { + background-color: rgba(255, 255, 255, 0.2); + border-color: rgba(255, 255, 255, 0.4); + } + + #customBtn:hover { + background-color: rgba(255, 255, 255, 0.3); + border-color: rgba(255, 255, 255, 0.6); + }