Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 49 additions & 7 deletions src/Mint-X/theme/Mint-X/cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,54 @@ StScrollBar StButton#vhandle:hover {
}

.dialog-button:destructive-action {
color: #c21616;
color: white;
border-width: 1px;
border-color: rgba(40, 40, 40, 0.4);
border-image: none;
border-radius: 4px;
padding: 2px 31px 5px;
background-gradient-direction: vertical;
background-gradient-start: #e83c44;
background-gradient-end: #ce1921;
}

.dialog-button:focus:destructive-action {
color: white;
border-width: 1px;
border-color: rgba(172, 205, 138, 0.4);
border-image: none;
border-radius: 4px;
padding: 2px 31px 5px;
background-gradient-direction: vertical;
background-gradient-start: #e83c44;
background-gradient-end: #ce1921;
}

.dialog-button:hover:destructive-action {
background-gradient-direction: vertical;
background-gradient-start: #ee4a52;
background-gradient-end: #e22831;
}

.dialog-button:focus:hover:destructive-action {
color: white;
border-width: 1px;
border-color: rgba(172, 205, 138, 0.4);
border-image: none;
border-radius: 4px;
padding: 2px 31px 5px;
background-gradient-direction: vertical;
background-gradient-start: #ee4a52;
background-gradient-end: #e22831;
}

.dialog-button:active:destructive-action,
.dialog-button:checked:destructive-action,
.dialog-button:focus:checked:destructive-action,
.dialog-button:focus:active:destructive-action {
background-gradient-direction: vertical;
background-gradient-start: #b21811;
background-gradient-end: #be2a32;
}

.dialog-list .dialog-list-title {
Expand Down Expand Up @@ -1324,17 +1371,13 @@ StScrollBar StButton#vhandle:hover {

.prompt-dialog {
/* this is the width of the entire modal popup */
width: 500px;
width: 400px;
}

.polkit-dialog-user-layout {
spacing: 10px;
}

.polkit-dialog-user-layout:rtl {
padding-right: 10px;
}

.polkit-dialog-user-combo {
border-image: url("button-assets/button.png") 4;
padding: 0.5em 2em;
Expand All @@ -1356,7 +1399,6 @@ StScrollBar StButton#vhandle:hover {

.polkit-dialog-user-combo:focus:hover {
border-image: url("button-assets/button-focus-hover.png") 4;
padding: 3px 31px 4px;
}

.polkit-dialog-user-combo:focus:checked,
Expand Down
Loading