public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-shell/files: gnome-shell-3.2.1-messageTray-reduce-fade.patch gnome-shell-3.2.1-theme-lighten-sent-message.patch
@ 2011-11-05  7:51 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; only message in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-11-05  7:51 UTC (permalink / raw
  To: gentoo-commits

tetromino    11/11/05 07:51:56

  Added:                gnome-shell-3.2.1-messageTray-reduce-fade.patch
                        gnome-shell-3.2.1-theme-lighten-sent-message.patch
  Log:
  Bump to 3.2.1 from the gnome overlay. Notable changes: built-in (and non-optional) networkmanager UI, telepathy chat integration, removable media UI, completely overhauled extension system, login-screen mode for gdm, and many improvements and bugfixes.
  
  (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  gnome-base/gnome-shell/files/gnome-shell-3.2.1-messageTray-reduce-fade.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.2.1-messageTray-reduce-fade.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.2.1-messageTray-reduce-fade.patch?rev=1.1&content-type=text/plain

Index: gnome-shell-3.2.1-messageTray-reduce-fade.patch
===================================================================
From 18541c447e30154e7bd5806e11e3fe70fb9d5887 Mon Sep 17 00:00:00 2001
From: Jasper St. Pierre <jstpierre@mecheye.net>
Date: Thu, 27 Oct 2011 13:52:17 -0400
Subject: [PATCH 2/2] messageTray: Reduce the scroll view fade

https://bugzilla.gnome.org/show_bug.cgi?id=662226
---
 data/theme/gnome-shell.css |    1 +
 js/ui/messageTray.js       |    3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index 0e09866..ea81870 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -1217,6 +1217,7 @@ StTooltip StLabel {
 
 #notification-scrollview {
     max-height: 10em;
+    -st-vfade-offset: 24px;
 }
 
 #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow {
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 75eb9f9..ca12fb1 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -597,8 +597,7 @@ Notification.prototype = {
         this._table.add_style_class_name('multi-line-notification');
         this._scrollArea = new St.ScrollView({ name: 'notification-scrollview',
                                                vscrollbar_policy: this._scrollPolicy,
-                                               hscrollbar_policy: Gtk.PolicyType.NEVER,
-                                               style_class: 'vfade' });
+                                               hscrollbar_policy: Gtk.PolicyType.NEVER });
         this._table.add(this._scrollArea, { row: 1,
                                             col: 2 });
         this._updateLastColumnSettings();
-- 
1.7.3.4




1.1                  gnome-base/gnome-shell/files/gnome-shell-3.2.1-theme-lighten-sent-message.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.2.1-theme-lighten-sent-message.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/files/gnome-shell-3.2.1-theme-lighten-sent-message.patch?rev=1.1&content-type=text/plain

Index: gnome-shell-3.2.1-theme-lighten-sent-message.patch
===================================================================
From 3294a6e1a7d7a6bea1cb02ec671aaa0d350b57f5 Mon Sep 17 00:00:00 2001
From: Jasper St. Pierre <jstpierre@mecheye.net>
Date: Fri, 2 Sep 2011 16:01:24 -0400
Subject: [PATCH 1/2] theme: Lighten up the sent message color, clean up

Properly apply "received" style and drop unused border-radius styles
now that the messages have no background color

https://bugzilla.gnome.org/show_bug.cgi?id=658096
---
 data/theme/gnome-shell.css |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css
index 4487159..0e09866 100644
--- a/data/theme/gnome-shell.css
+++ b/data/theme/gnome-shell.css
@@ -1329,9 +1329,8 @@ StTooltip StLabel {
     padding: 8px 0;
 }
 
-.chat-sent {
+.chat-received {
     padding-left: 4px;
-    border-radius: 4px;
 }
 
 .chat-received:rtl {
@@ -1341,8 +1340,7 @@ StTooltip StLabel {
 
 .chat-sent {
     padding-left: 18pt;
-    border-radius: 4px;
-    color: #7E7E7E;
+    color: #959595;
 }
 
 .chat-sent:rtl {
@@ -1352,7 +1350,6 @@ StTooltip StLabel {
 
 .chat-meta-message {
     padding-left: 4px;
-    border-radius: 4px;
     font-size: 9pt;
     color: #bbbbbb;
 }
-- 
1.7.3.4







^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-11-05  7:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-05  7:51 [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-shell/files: gnome-shell-3.2.1-messageTray-reduce-fade.patch gnome-shell-3.2.1-theme-lighten-sent-message.patch Alexandre Rostovtsev (tetromino)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox