modified: gnome-shell/gnome-shell.css

main
SamuDifferent 6 months ago
parent d20e4b7aab
commit 766b6d6a24

@ -17,9 +17,31 @@
color: rgba(40, 7, 43, 0.87); color: rgba(40, 7, 43, 0.87);
} }
.icon-grid .overview-tile .app-grid-running-dot {
background-color: rgba(255, 255, 255, 1);
}
.icon-grid .overview-tile:hover .app-grid-running-dot {
background-color: rgba(255, 90, 153, 1);
}
.icon-grid .overview-tile:active .app-grid-running-dot {
background-color: rgba(255, 255, 255, 1);
}
.icon-grid .overview-tile { .icon-grid .overview-tile {
background-color: rgba(255, 167, 199, 1); background-color: rgba(255, 167, 199, 1);
color: #000; color: rgba(255, 255, 255, 1);
}
.icon-grid .overview-tile:hover {
background-color: rgba(255, 255, 255, 1);
color: rgba(255, 90, 153, 1);
}
.icon-grid .overview-tile:active {
background-color: rgba(255, 90, 153, 1);
color: rgba(255, 255, 255, 1);
} }
/* Show Apps icon */ /* Show Apps icon */
@ -36,8 +58,8 @@
color: rgba(255, 90, 153, 1); color: rgba(255, 90, 153, 1);
} }
.show-apps:active .overview-icon, /*.show-apps:active .overview-icon,
.show-apps .overview-icon:insensitive .show-apps .overview-icon:insensitive*/
#dash .show-apps:active .overview-icon { #dash .show-apps:active .overview-icon {
background-color: rgba(255, 90, 153, 1); background-color: rgba(255, 90, 153, 1);
@ -289,7 +311,7 @@
.quick-settings.tweaked .media, .quick-settings.tweaked .media,
.quick-settings.tweaked .message, .quick-settings.tweaked .message,
.quick-settings.tweaked .quick-container { .quick-settings.tweaked .quick-container {
background-color: rgba(242, 84, 169, 0.2); background-color: rgba(255, 0, 136, 0.2);
border-radius: 16px; border-radius: 16px;
border: none; border: none;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
@ -720,13 +742,14 @@ StScrollBar StButton#hhandle:active {
StEntry, StEntry,
.search-entry { .search-entry {
border-radius: 13px; border-radius: 13px;
border-color: #000;
padding: 8px; padding: 8px;
transition-duration: 100ms; transition-duration: 100ms;
border: 1px solid rgba(0, 0, 0, 0.05); background-color: rgba(255, 167, 199, 1);
background-color: rgba(242, 225, 243, 0.8); color: rgba(255, 255, 255, 1);
color: rgba(40, 7, 43, 0.6);
selection-background-color: rgba(207, 127, 214, 1); selection-background-color: rgba(207, 127, 214, 1);
selected-color: rgba(40, 7, 43, 0.87); selected-color: rgba(40, 7, 43, 0.87);
selected-border-color: #000;
} }
/* icon in entry */ /* icon in entry */
@ -1010,45 +1033,54 @@ StEntry:focus {
/* messages in menus */ /* messages in menus */
.message-list .message, .popup-menu-content .message { .message-list .message, .popup-menu-content .message {
background-color: rgba(242, 225, 243, 0.8); background-color: rgba(255, 167, 199, 1);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
transition-duration: 100ms; transition-duration: 100ms;
} }
.message-list .message:hover { .message-list .message:hover {
background-color: rgba(237, 219, 239, 0.9); background-color: rgba(255, 255, 255, 1);
color: rgba(255, 90, 153, 1);
} }
.message-list .message:focus { .message-list .message:focus {
background-color: rgba(240, 182, 246, 0.5); background-color: rgba(255, 255, 255, 1);
box-shadow: inset 0 0 0 2px rgba(148, 102, 153, 1) !important; box-shadow: inset 0 0 0 2px rgba(255, 90, 153, 1) !important;
} }
/* text / header in message */ /* text / header in message */
.message .message-body, .message .message-body,
.message-title { .message-title {
color: rgba(40, 7, 43, 0.87); color: rgba(255, 255, 255, 1);
}
.message:hover .message-title {
color: rgba(255, 90, 153, 1);
}
.message:hover .message-body {
color: rgba(0, 0, 0, 1);
} }
/* message time stamp */ /* message time stamp */
.message .message-secondary-bin > .event-time { .message .message-secondary-bin > .event-time {
color: rgba(40, 7, 43, 0.6); color: rgba(255, 255, 255, 1);
} }
/* close button */ /* close button */
.message-close-button { .message-close-button {
border-radius: 9px; border-radius: 9px;
color: rgba(40, 7, 43, 0.87); color: rgba(255, 255, 255, 1);
background-color: rgba(237, 219, 239, 0.9); background-color: rgba(255, 167, 199, 1);
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
transition-duration: 100ms; transition-duration: 100ms;
} }
.message-close-button:hover { .message-close-button:hover {
background-color: rgba(227, 203, 230, 0.95); background-color: rgba(255, 255, 255, 1);
color: rgba(255, 90, 153, 1);
} }
.message-close-button:active { .message-close-button:active {
color: rgba(40, 7, 43, 0.6); background-color: rgba(255, 90, 153, 1);
color: rgba(255, 255, 255, 1);
} }
@ -1901,6 +1933,8 @@ https://gitlab.gnome.org/GNOME/gnome-shell/-/commit/beb77f58243265a6cc62b720a5b0
.screenshot-ui-close-button:hover { .screenshot-ui-close-button:hover {
background-color: rgba(227, 203, 230, 1); background-color: rgba(227, 203, 230, 1);
} }
/* Search */ /* Search */

Loading…
Cancel
Save