email and fix

This commit is contained in:
2026-01-26 17:44:28 +05:00
parent 4985b4727b
commit 77122aa9ee
16 changed files with 3531 additions and 2330 deletions

View File

@@ -2211,4 +2211,69 @@ button.reopen-btn:hover {
.kanban-column[data-status="assigned"] .kanban-card:hover {
transform: none !important;
box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}
/* Добавим в существующий style.css */
.profile-card {
background: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.profile-card p {
margin: 10px 0;
padding: 5px 0;
border-bottom: 1px solid #eee;
}
.profile-card p:last-child {
border-bottom: none;
}
.notification-settings {
background: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.checkbox-label {
display: flex;
align-items: center;
margin: 10px 0;
cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
margin-right: 10px;
width: 18px;
height: 18px;
}
.checkbox-label span {
font-weight: 500;
}
#notification-email {
width: 100%;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
margin-top: 5px;
}
#notification-email:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}
small {
color: #666;
font-size: 12px;
display: block;
margin-top: 5px;
}