In an RTL language, the main toolbar tabs should float to the right.
The CSS that causes this is no longer targeting the right structure in the HTML. This is the current layout in an RTL language.
The tabs used to be rendered in an unordered list. The CSS reflected this:
.js .toolbar .bar li {
float: right;
}
The tabs are now rendered as div
elements, so the selector above no longer applies.
The li
in the selector above should be changed to a class .tab
to correct this.
Attachment | Size | Status | Test result | Operations |
---|---|---|---|---|
incorrect-layout.png | 88.93 KB | Ignored: Check issue status. | None | None |