]> Pileus Git - ~andy/gtk/commit
combobox: Don't special-case RTL child positions anymore
authorBenjamin Otte <otte@redhat.com>
Tue, 18 Dec 2012 17:23:07 +0000 (18:23 +0100)
committerBenjamin Otte <otte@redhat.com>
Tue, 18 Dec 2012 17:25:42 +0000 (18:25 +0100)
commitcf712c462d766e32840da21a67708bbf2cbb25a6
treee1629ff4bbe35cf1c69fdca19fe9f289dd63104a
parent821a675013e04598503d3c5ea23ab91607f98e70
combobox: Don't special-case RTL child positions anymore

If you want to get rounded corners on an hbox, instead of
  :first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  :last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
you now need to write:
  :first-child, :last-child:dir(rtl) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  :last-child, :first-child:dir(rtl)
  {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
gtk/gtkcombobox.c