Files
marble-shell-theme-packaging/theme/gnome-shell/.css/search.css
T
Vladyslav Hroshev 8cce85a437 GNOME dependable installation, structure and style improvements
Split utils in utils.py to a directory
Moved ./gnome-shell_css/ to ./gnome-shell/.css/
2024-09-30 00:14:09 +03:00

60 lines
1.3 KiB
CSS

/* Search */
/* "no results" text */
.search-statustext {
color: TEXT-DISABLED-COLOR;
font-weight: 700;
}
/* founded results content section */
.search-section-content {
box-shadow: inset 0 0 0 1px BORDER-SHADOW;
border-radius: 18px;
border: none;
background-color: SECTION-COLOR;
color: TEXT-PRIMARY-COLOR;
}
/* provider section label */
.search-provider-icon .list-search-provider-content .list-search-provider-details {
width: 120px;
color: TEXT-PRIMARY-COLOR;
}
.list-search-result,
.search-provider-icon {
background-color: transparent;
border-radius: 12px;
}
/* search result listitem -> item title (with leading icon) */
.list-search-result .list-search-result-title {
color: TEXT-PRIMARY-COLOR;
}
/* search result listitem -> item description */
.list-search-result .list-search-result-description {
color: TEXT-SECONDARY-COLOR;
}
.list-search-result:hover,
.search-provider-icon:hover,
.list-search-result:selected,
.search-provider-icon:selected {
background-color: ACCENT-DISABLED_HOVER;
box-shadow: inset 0 0 0 1px BORDER-SHADOW;
}
.list-search-result:focus,
.search-provider-icon:focus {
background-color: ACCENT-OPACITY-COLOR;
box-shadow: inset 0 0 0 1px ACCENT-SECONDARY-COLOR !important;
}
.list-search-result:active,
.search-provider-icon:active {
background-color: ACCENT-DISABLED_HOVER;
color: TEXT-PRIMARY-COLOR;
}