Issue #2286923 by cs_shadow, alayham: Fixed views_ui dropbuttons are not RTL friendly.
parent
c9b2ff5e13
commit
883577b673
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue