Skip to content

Commit

Permalink
cinnamon: Revert previous commit and apply better fix
Browse files Browse the repository at this point in the history
Using min-width is a better fix for
linuxmint/mint22.1-beta#94
  • Loading branch information
clefebvre committed Jan 10, 2025
1 parent d1b6e69 commit 81461e3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Mint-Y/cinnamon/cinnamon-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -1583,7 +1583,7 @@ StScrollBar {

.dialog .dialog-button, .dialog .dialog-button:destructive-action, .dialog .dialog-button:default {
font-weight: bold;
padding: 11px;
padding: 12px;
border-radius: 18px;
border: 1px solid #303030;
color: #e1e1e1;
Expand Down Expand Up @@ -1693,7 +1693,7 @@ StScrollBar {
color: #d4d4d4; }

.end-session-dialog {
width: 40em; }
min-width: 40em; }
.end-session-dialog .dialog-content-box {
spacing: 0; }
.end-session-dialog .dialog-list {
Expand Down
4 changes: 2 additions & 2 deletions src/Mint-Y/cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -1583,7 +1583,7 @@ StScrollBar {

.dialog .dialog-button, .dialog .dialog-button:destructive-action, .dialog .dialog-button:default {
font-weight: bold;
padding: 11px;
padding: 12px;
border-radius: 18px;
border: 1px solid #b0b0b0;
color: #303030;
Expand Down Expand Up @@ -1693,7 +1693,7 @@ StScrollBar {
color: #232323; }

.end-session-dialog {
width: 40em; }
min-width: 40em; }
.end-session-dialog .dialog-content-box {
spacing: 0; }
.end-session-dialog .dialog-list {
Expand Down
4 changes: 2 additions & 2 deletions src/Mint-Y/cinnamon/sass/_dialogs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ $osd_radius: 20px;

%dialog_button {
font-weight: bold;
padding: $base_padding * 2 - 1;
padding: $base_padding * 2;
border-radius: $dialog_radius;

@include styled_button(normal);
Expand Down Expand Up @@ -227,7 +227,7 @@ $osd_radius: 20px;
// End session dialog

.end-session-dialog {
width: 40em;
min-width: 40em;

.dialog-content-box { spacing: 0; }

Expand Down

0 comments on commit 81461e3

Please sign in to comment.