diff --git a/data/Makefile.am b/data/Makefile.am index 1f5857d77..912ad3dbe 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -30,7 +30,8 @@ dist_theme_DATA = \ theme/scroll-button-up.png \ theme/scroll-button-up-hover.png \ theme/scroll-vhandle.png \ - theme/section-back.svg + theme/section-back.svg \ + theme/section-more.svg schemadir = @GCONF_SCHEMA_FILE_DIR@ schema_DATA = gnome-shell.schemas diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index f09b81f3c..3e0288477 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -156,10 +156,12 @@ StTooltip { } .more-link { - border-left: 1px solid #262626; - padding: 0px 0px 0px 4px; - color: #ffffff; - font-weight: normal; +} + +.more-link-expander { + background-image: url("section-more.svg"); + width: 9px; + height: 9px; } .dash-pane { diff --git a/data/theme/section-more.svg b/data/theme/section-more.svg new file mode 100755 index 000000000..74f579d63 --- /dev/null +++ b/data/theme/section-more.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/js/ui/dash.js b/js/ui/dash.js index 89a549281..fd5d947a9 100644 --- a/js/ui/dash.js +++ b/js/ui/dash.js @@ -345,8 +345,8 @@ MoreLink.prototype = { reactive: true }); this.pane = null; - let text = new St.Label({ text: _("More") }); - this.actor.add(text, { expand: true, y_fill: false }); + let expander = new St.Bin({ style_class: "more-link-expander" }); + this.actor.add(expander, { expand: true, y_fill: false }); this.actor.connect('button-press-event', Lang.bind(this, function (b, e) { if (this.pane == null) {