appDisplay: Fix view-switcher buttons in RTL locales

https://bugzilla.gnome.org/show_bug.cgi?id=694265
This commit is contained in:
Florian Müllner 2013-02-20 17:36:27 +01:00
parent 420f0109ee
commit fcded2ea2b

View File

@ -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;
}