diff --git a/core/misc/dropbutton/dropbutton.base-rtl.css b/core/misc/dropbutton/dropbutton.base-rtl.css index 917c2a8..f1714c4 100644 --- a/core/misc/dropbutton/dropbutton.base-rtl.css +++ b/core/misc/dropbutton/dropbutton.base-rtl.css @@ -8,8 +8,7 @@ * The dropbutton arrow. */ .dropbutton-widget { - left: 0; - right: auto; + float: left; } .dropbutton-toggle { left: 0; @@ -20,6 +19,8 @@ right: auto; } .dropbutton-multiple .dropbutton-widget { + left: 0; padding-left: 2em; padding-right: 0; + right: auto; } diff --git a/core/misc/dropbutton/dropbutton.base.css b/core/misc/dropbutton/dropbutton.base.css index 307484e..a0d20a1 100644 --- a/core/misc/dropbutton/dropbutton.base.css +++ b/core/misc/dropbutton/dropbutton.base.css @@ -19,8 +19,7 @@ position: relative; } .dropbutton-widget { - position: absolute; - right: 0; /* LTR */ + float: right; /* LTR */ } .dropbutton-wrapper, .dropbutton-widget { @@ -49,7 +48,9 @@ * The arrow inherits the link color, but can be overridden with border colors. */ .dropbutton-multiple .dropbutton-widget { + position: absolute; padding-right: 2em; /* LTR */ + right: 0; /* LTR */ } .dropbutton-multiple.open, .dropbutton-multiple.open .dropbutton-widget { diff --git a/core/misc/dropbutton/dropbutton.theme.css b/core/misc/dropbutton/dropbutton.theme.css index 041724b..6125c8e 100644 --- a/core/misc/dropbutton/dropbutton.theme.css +++ b/core/misc/dropbutton/dropbutton.theme.css @@ -4,9 +4,6 @@ * General styles for dropbuttons. */ -.dropbutton-wrapper { - cursor: pointer; -} .dropbutton-widget { background-color: white; border: 1px solid #cccccc;