[dash] Port section container to CSS, lower spacing

Newer mockup has smaller spacing.

https://bugzilla.gnome.org/show_bug.cgi?id=600734
This commit is contained in:
Colin Walters 2009-11-06 17:32:23 -05:00
parent ce90dda76f
commit bf68f9f0cf
2 changed files with 10 additions and 6 deletions

View File

@ -89,6 +89,10 @@ StTooltip {
padding: 0px 14px; padding: 0px 14px;
} }
#dashSections {
spacing: 12px;
}
#searchEntry { #searchEntry {
padding: 4px; padding: 4px;
border-bottom: 1px solid #262626; border-bottom: 1px solid #262626;

View File

@ -565,8 +565,8 @@ Dash.prototype = {
// Size for this one explicitly set from overlay.js // Size for this one explicitly set from overlay.js
this.searchArea = new Big.Box({ y_align: Big.BoxAlignment.CENTER }); this.searchArea = new Big.Box({ y_align: Big.BoxAlignment.CENTER });
this.sectionArea = new Big.Box({ orientation: Big.BoxOrientation.VERTICAL, this.sectionArea = new St.BoxLayout({ name: "dashSections",
spacing: DASH_SECTION_SPACING }); vertical: true });
this.actor.add(this.searchArea); this.actor.add(this.searchArea);
this.actor.add(this.sectionArea); this.actor.add(this.sectionArea);
@ -693,7 +693,7 @@ Dash.prototype = {
} }
})); }));
this.sectionArea.append(this._appsSection.actor, Big.BoxPackFlags.NONE); this.sectionArea.add(this._appsSection.actor);
/***** Places *****/ /***** Places *****/
@ -702,7 +702,7 @@ Dash.prototype = {
this._placesSection = new Section(_("PLACES"), true); this._placesSection = new Section(_("PLACES"), true);
let placesDisplay = new PlaceDisplay.DashPlaceDisplay(); let placesDisplay = new PlaceDisplay.DashPlaceDisplay();
this._placesSection.content.add(placesDisplay.actor, { expand: true }); this._placesSection.content.add(placesDisplay.actor, { expand: true });
this.sectionArea.append(this._placesSection.actor, Big.BoxPackFlags.NONE); this.sectionArea.add(this._placesSection.actor);
/***** Documents *****/ /***** Documents *****/
@ -727,7 +727,7 @@ Dash.prototype = {
})); }));
this._docDisplay.emit('changed'); this._docDisplay.emit('changed');
this.sectionArea.append(this._docsSection.actor, Big.BoxPackFlags.EXPAND); this.sectionArea.add(this._docsSection.actor, { expand: true });
/***** Search Results *****/ /***** Search Results *****/
@ -775,7 +775,7 @@ Dash.prototype = {
createPaneForDetails(this, section.resultArea.display); createPaneForDetails(this, section.resultArea.display);
} }
this.sectionArea.append(this._searchResultsSection.actor, Big.BoxPackFlags.EXPAND); this.sectionArea.add(this._searchResultsSection.actor, { expand: true });
this._searchResultsSection.actor.hide(); this._searchResultsSection.actor.hide();
}, },