- Updated localization files for various languages, including English, German, Spanish, Portuguese, and Chinese, to ensure consistency and accuracy across the application. - Added new keys and updated existing ones to support recent UI changes and features, particularly in project views, task lists, and admin center settings. - Enhanced the structure of localization files to improve maintainability and facilitate future updates. - Implemented performance optimizations in the frontend components to better handle localization data.
35 lines
644 B
CSS
35 lines
644 B
CSS
.task-name-input {
|
|
outline: none;
|
|
transition: outline 0.2s ease;
|
|
}
|
|
|
|
.task-name-input:not(:focus):hover {
|
|
outline: 1px solid #d9d9d9;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Task name display styles */
|
|
.task-name-display {
|
|
margin: 0;
|
|
padding: 2px 8px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
min-height: 20px;
|
|
line-height: 1.4;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.task-name-display:hover {
|
|
background-color: rgba(0, 0, 0, 0.02);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
[data-theme="dark"] .task-name-display:hover {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|