[gnome-shell] Update more-docs to look more like more-apps
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Update more-docs to look more like more-apps
- Date: Tue, 16 Mar 2010 22:36:42 +0000 (UTC)
commit 9f68786547ceda61babf689d99f4d2fbdf9f92af
Author: Florian Müllner <fmuellner src gnome org>
Date: Wed Mar 10 16:54:58 2010 +0100
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 ce6b1a9..4068a27 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 cb80d4a..3d2d7e9 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 f275bf2..102c681 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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]