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
60 lines
1.3 KiB
CSS
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;
|
|
} |