Добавлен новый компонент AccountAgentTransactionSection для отображения и управления транзакциями агентов. Обновлена страница аккаунта для интеграции нового компонента. Добавлен компонент AccountAgentTransactionTable для отображения данных транзакций с возможностью фильтрации по датам. Обновлены стили для кнопок подтверждения в account.module.css.
This commit is contained in:
@@ -391,4 +391,49 @@
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Стили для кнопок подтверждения */
|
||||
.primaryButton {
|
||||
background-color: #2563eb; /* Синий */
|
||||
color: #ffffff;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
padding: 8px 16px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.primaryButton:hover {
|
||||
background-color: #1d4ed8;
|
||||
}
|
||||
|
||||
.secondaryButton {
|
||||
background-color: #f3f4f6; /* Серый */
|
||||
color: #374151;
|
||||
border: 1px solid #d1d5db;
|
||||
border-radius: 6px;
|
||||
padding: 8px 16px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
.secondaryButton:hover {
|
||||
background-color: #e5e7eb;
|
||||
}
|
||||
|
||||
.tertiaryButton {
|
||||
background: none;
|
||||
color: #6b7280; /* Темно-серый */
|
||||
border: none;
|
||||
padding: 8px 16px;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.tertiaryButton:hover {
|
||||
color: #4b5563;
|
||||
}
|
||||
|
||||
/* ... можно добавить другие стили по необходимости ... */
|
||||
Reference in New Issue
Block a user