Issue #2286923 by cs_shadow, alayham: Fixed views_ui dropbuttons are not RTL friendly.

8.0.x
webchick 2014-07-11 22:46:25 -07:00
parent c9b2ff5e13
commit 883577b673
1 changed files with 6 additions and 1 deletions

View File

@ -1153,9 +1153,14 @@ div.messages {
.views-ui-display-tab-bucket .dropbutton-wrapper {
position: absolute;
right: 5px;
right: 5px; /* LTR */
top: 4px;
}
[dir="rtl"] .views-ui-display-tab-bucket .dropbutton-wrapper {
left: 5px;
right: auto;
}
.views-ui-display-tab-bucket .dropbutton-wrapper .dropbutton-widget .dropbutton-action a {
width: auto;
}