Fixed #42, fixed margin for close/expand button

This commit is contained in:
Vladyslav Hroshev
2025-03-08 19:24:47 +02:00
parent d66c90e692
commit 57f7093f11
2 changed files with 7 additions and 2 deletions

View File

@@ -41,6 +41,7 @@
.message-list .message, .popup-menu-content .message {
background-color: SECTION-COLOR;
box-shadow: inset 0 0 0 1px BORDER-SHADOW;
border-radius: 15px;
transition-duration: 100ms;
}
.message-list .message:hover {
@@ -75,7 +76,6 @@
.message-expand-button {
border-radius: 99px;
padding: 5px;
margin: 0px;
color: TEXT-PRIMARY-COLOR;
background-color: ACCENT-DISABLED-COLOR;
box-shadow: inset 0 0 0 1px BORDER-SHADOW;

View File

@@ -96,7 +96,8 @@
/* button in modals */
.modal-dialog-linked-button,
.modal-dialog-linked-button, /* 46 */
.modal-dialog-button-box .modal-dialog-button, /* 47+ */
.notification-button {
box-shadow: inset 0 0 0 1px BORDER-SHADOW;
background-color: ACCENT-DISABLED-COLOR;
@@ -104,6 +105,10 @@
animation-duration: 100ms;
}
.modal-dialog-button-box .modal-dialog-button:focus {
box-shadow: inset 0 0 0 2px ACCENT-SECONDARY-COLOR !important;
}
.modal-dialog-linked-button {
padding: 10px 0;
border-radius: 12px;