Files
marble-shell-theme-packaging/theme/gnome-shell_css/entries.css
Vladyslav Hroshev 43a75dda32 GNOME 46 Fixes
Fixed #18 background in app icons
Fixed running dot
Fixed blue search border
Fixed background in search components
Fixed background in screenshot buttons
Fixed #18 buttons in calendar
Fixed missing styles for message header and expand button
2024-03-25 13:23:03 +02:00

35 lines
672 B
CSS

/* Entries */
StEntry,
.search-entry {
border-radius: 13px;
padding: 8px;
transition-duration: 100ms;
border: 1px solid BORDER-SHADOW;
background-color: SECTION-COLOR;
color: TEXT-SECONDARY-COLOR;
selection-background-color: ACCENT-COLOR;
selected-color: TEXT-PRIMARY-COLOR;
}
/* icon in entry */
StEntry StLabel {
color: TEXT-PRIMARY-COLOR;
}
/* change icon color if entry not selected */
StEntry StLabel:insensitive {
color: TEXT-SECONDARY-COLOR;
}
StEntry:hover,
StEntry:focus,
StEntry:active {
border: 1px solid TEXT-DISABLED-COLOR;
background-color: ACCENT-DISABLED-COLOR;
box-shadow: none !important;
}
StEntry:focus {
color: TEXT-PRIMARY-COLOR;
}