🎨 ux(swaync): disable blur on mpris module and add border radius to the image of the notif.

This commit is contained in:
Sergio Laín 2024-02-11 13:58:56 +01:00
parent 24d091c9d3
commit 46e994a740
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 15 additions and 3 deletions

View file

@ -39,7 +39,8 @@
},
"mpris": {
"image-size": 96,
"image-radius": 12
"image-radius": 12,
"blur": false
},
"buttons-grid": {
"actions": [

View file

@ -19,6 +19,7 @@
background: linear-gradient(to right, #363a4f, rgba(183, 189, 248, 0.3));
padding: 10px;
margin-top: 10px;
border-radius: 10px;
}
@ -362,6 +363,16 @@
color: #cad3f5;
}
.control-center .widget-mpris {
margin-top: 10px;
.notification-row
.notification-background
.notification
.notification-default-action
.notification-content
.image {
/* Notification Primary Image */
-gtk-icon-effect: none;
border-radius: 10px;
/* Size in px */
margin: 4px;
margin-right: 20px;
}