Gnome-shell: Fix unstyled search results on v3.36

This commit is contained in:
EliverLara
2020-04-27 12:21:10 -05:00
parent fd24a01440
commit 5c70ab4fb4
2 changed files with 12 additions and 1 deletions

View File

@@ -1381,7 +1381,14 @@ StScrollBar {
}
.search-section { spacing: 16px; } // This should be equal to #searchResultsContent spacing
.search-section-content { spacing: 32px; } // This is the space between the provider icon and the results container
.search-section-content {
background-color: transparent;
border-radius: 0;
border: none;
box-shadow: none;
// This is the space between the provider icon and the results container
spacing: 32px;
}
.search-statustext { // "no results"
@extend %status_text;
}

View File

@@ -1261,6 +1261,10 @@ StScrollBar {
spacing: 16px; }
.search-section-content {
background-color: transparent;
border-radius: 0;
border: none;
box-shadow: none;
spacing: 32px; }
.list-search-results {