From fcded2ea2b875ff175a53829fbffd629cd8139a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 20 Feb 2013 17:36:27 +0100 Subject: [PATCH] appDisplay: Fix view-switcher buttons in RTL locales https://bugzilla.gnome.org/show_bug.cgi?id=694265 --- data/theme/gnome-shell.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index 6610cbb0f..5df743d68 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -869,11 +869,13 @@ StScrollBar StButton#vhandle:active { background-gradient-direction: vertical; } -.app-view-control:first-child { +.app-view-control:first-child:ltr, +.app-view-control:last-child:rtl { border-radius: 8px 0px 0px 8px; } -.app-view-control:last-child { +.app-view-control:last-child:ltr, +.app-view-control:first-child:rtl { border-radius: 0px 8px 8px 0px; }