search.js: Replace the gradient separator with a simple line
This commit is contained in:
parent
985e53a04e
commit
9a007058ae
@ -1177,11 +1177,8 @@ StScrollBar {
|
|||||||
margin-left: 30px; }
|
margin-left: 30px; }
|
||||||
|
|
||||||
.search-section-separator {
|
.search-section-separator {
|
||||||
-gradient-height: 1px;
|
height: 2px;
|
||||||
-gradient-start: rgba(255, 255, 255, 0);
|
background-color: rgba(255, 255, 255, 0.2); }
|
||||||
-gradient-end: rgba(255, 255, 255, 0.1);
|
|
||||||
-margin-horizontal: 1.5em;
|
|
||||||
height: 1px; }
|
|
||||||
|
|
||||||
.list-search-result-content {
|
.list-search-result-content {
|
||||||
spacing: 12px;
|
spacing: 12px;
|
||||||
|
@ -149,8 +149,8 @@ const SearchResultsBase = new Lang.Class({
|
|||||||
y_fill: true });
|
y_fill: true });
|
||||||
this.actor.add(this._resultDisplayBin, { expand: true });
|
this.actor.add(this._resultDisplayBin, { expand: true });
|
||||||
|
|
||||||
let separator = new Separator.HorizontalSeparator({ style_class: 'search-section-separator' });
|
let separator = new St.DrawingArea({ style_class: 'search-section-separator' });
|
||||||
this.actor.add(separator.actor);
|
this.actor.add(separator);
|
||||||
|
|
||||||
this._resultDisplays = {};
|
this._resultDisplays = {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user