Touch up the spacing and style of the app view

Adds more padding between app icons, left aligns the view,
removes the ugly separator, adds some margin on the right.
This commit is contained in:
William Jon McCann 2010-11-29 13:16:20 -05:00
parent 063fc8e29c
commit c908a060b8
2 changed files with 6 additions and 6 deletions

View File

@ -347,6 +347,7 @@ StTooltip StLabel {
}
#viewSelector {
padding: 16px;
spacing: 16px;
}
@ -485,22 +486,21 @@ StTooltip StLabel {
}
.icon-grid {
spacing: 6px;
spacing: 36px;
-shell-grid-item-size: 70px;
}
.all-app {
padding: 10px;
padding: 36px 150px 10px 0px;
}
.app-section-divider-container {
padding-top: 10px;
padding-bottom: 10px;
padding-top: 36px;
padding-bottom: 36px;
}
.app-section-divider {
height: 2px;
background-image: url("separator-white.png");
}
#dash > .app-well-app {

View File

@ -30,7 +30,7 @@ function AlphabeticalView() {
AlphabeticalView.prototype = {
_init: function() {
this.actor = new St.BoxLayout({ vertical: true });
this._grid = new IconGrid.IconGrid();
this._grid = new IconGrid.IconGrid({ xAlign: St.Align.START });
this._appSystem = Shell.AppSystem.get_default();
this.actor.add(this._grid.actor, { y_align: St.Align.START, expand: true });
},