From 9f68786547ceda61babf689d99f4d2fbdf9f92af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 10 Mar 2010 16:54:58 +0100 Subject: [PATCH] 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 --- data/theme/gnome-shell.css | 15 +++++---------- js/ui/dash.js | 5 ----- js/ui/genericDisplay.js | 8 +++++--- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index ce6b1a9c8..4068a27b3 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -373,16 +373,11 @@ StTooltip { } .dash-pane { - background-color: rgba(0,0,0,0.95); - border: 1px solid #262626; - padding: 4px; - spacing: 4px; -} - -.dash-pane-close { - background-image: url("close.svg"); - width: 16px; - height: 16px; + border-radius: 10px; + background-color: #111111; + border: 2px solid #868686; + color: #ffffff; + padding: 30px 10px 10px 20px; } .dash-search-section-header { diff --git a/js/ui/dash.js b/js/ui/dash.js index cb80d4a36..3d2d7e928 100644 --- a/js/ui/dash.js +++ b/js/ui/dash.js @@ -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 }); diff --git a/js/ui/genericDisplay.js b/js/ui/genericDisplay.js index f275bf253..102c681b4 100644 --- a/js/ui/genericDisplay.js +++ b/js/ui/genericDisplay.js @@ -257,13 +257,15 @@ GenericDisplay.prototype = { if (disableVScrolling) { this.actor = this._list = new Shell.OverflowList({ spacing: 6, - item_height: 50 }); + item_height: 50 }); } else { - this.actor = new St.ScrollView({ x_fill: true, y_fill: true }); - this.actor.get_hscroll_bar().hide(); + this.actor = new St.ScrollView({ x_fill: true, + y_fill: false, + vshadows: true }); this._list = new St.BoxLayout({ style_class: 'generic-display-container', vertical: true }); this.actor.add_actor(this._list); + this.actor.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); } this._pendingRedisplay = RedisplayFlags.NONE;