Вход

Добро пожаловать!

Нет аккаунта? Зарегистрироваться

TaskHub PRO

/* === INLINE РЕДАКТИРОВАНИЕ ПУНКТА === */ .item-text { cursor: pointer; flex: 1; user-select: none; padding: 2px 4px; border-radius: 2px; transition: background 0.15s; } .item-text:hover { background: rgba(98, 0, 234, 0.05); } .item-text.editing { background: #fff9c4; border: 1px solid #fbc02d; outline: 2px solid #fbc02d; padding: 4px 6px; min-height: 20px; word-break: break-word; } .list-item.completed .item-text { text-decoration: line-through; color: #999; } .note-fullscreen-header { background: white; padding: 20px; border-bottom: 1px solid #e0e0e0; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; } .note-fullscreen-title { font-size: 24px; font-weight: 600; color: #333; } .note-fullscreen-actions { display: flex; gap: 16px; } .note-action-link { background: none; border: none; cursor: pointer; font-size: 16px; padding: 8px 16px; border-radius: 4px; transition: all 0.2s; font-weight: 500; } .note-action-edit { color: #ff9800; } .note-action-edit:hover { background: rgba(255, 152, 0, 0.1); } .note-action-delete { color: #d32f2f; } .note-action-delete:hover { background: rgba(211, 47, 47, 0.1); } .note-action-close { color: #666; } .note-action-close:hover { background: rgba(0, 0, 0, 0.05); } .note-fullscreen-content { flex: 1; padding: 30px; font-size: 18px; line-height: 1.6; white-space: pre-wrap; word-break: break-word; }