Update more-docs to look more like more-apps

Disable horizontal scrolling and remove the close button. Update
the CSS to match more-apps.

https://bugzilla.gnome.org/show_bug.cgi?id=612452
This commit is contained in:
Florian Müllner
2010-03-10 16:54:58 +01:00
parent c02b57efc3
commit 9f68786547
3 changed files with 10 additions and 18 deletions

View File

@ -67,13 +67,8 @@ Pane.prototype = {
let chromeTop = new St.BoxLayout();
let closeIcon = new St.Button({ style_class: "dash-pane-close" });
closeIcon.connect('clicked', Lang.bind(this, function (b, e) {
this.close();
}));
let dummy = new St.Bin();
chromeTop.add(dummy, { expand: true });
chromeTop.add(closeIcon, { x_align: St.Align.END });
this.actor.add(chromeTop);
this.content = new St.BoxLayout({ vertical: true });