08ac0aa8d3
- Fixed notifications in GNOME 47 (likely Ubuntu) and older (Fixes #64); - Fixed big margins between messages for GNOME 47 and older; - Fixed margins in modal for GNOME 46 and oler; - Adapted paddings and borders in quick settings and in screenshot panel; - Changed styles in tooltips and popup messages;
38 lines
894 B
CSS
38 lines
894 B
CSS
/* gaps between buttons in modal/messages
|
|
|
|
/* if first button */
|
|
.modal-dialog-linked-button:ltr:first-child,
|
|
.modal-dialog-linked-button:rtl:last-child {
|
|
margin: 0 6px 0 0 !important;
|
|
}
|
|
.notification-button:ltr:first-child,
|
|
.notification-button:rtl:last-child {
|
|
margin: 0 4px 8px 8px !important;
|
|
}
|
|
|
|
/* if last button */
|
|
.modal-dialog-linked-button:ltr:last-child,
|
|
.modal-dialog-linked-button:rtl:first-child {
|
|
margin: 0 0 0 6px !important;
|
|
}
|
|
.notification-button:ltr:last-child,
|
|
.notification-button:rtl:first-child {
|
|
margin: 0 8px 8px 4px !important;
|
|
}
|
|
|
|
/* if only button: normal margin */
|
|
.modal-dialog-linked-button:first-child:last-child {
|
|
margin: 0 !important;
|
|
}
|
|
.notification-button:first-child:last-child {
|
|
margin: 0 8px 8px 8px !important;
|
|
}
|
|
|
|
/* else */
|
|
.modal-dialog-linked-button {
|
|
margin: 0 6px 0 6px !important;
|
|
}
|
|
|
|
.notification-button {
|
|
margin: 0 4px 8px 4px !important;
|
|
} |