-
Bug
-
Resolution: Fixed
-
Minor
-
2.9
-
MOODLE_29_STABLE
-
MOODLE_29_STABLE
-
MDL-51127-master -
The RTL equivalent css should almost always mimic the opposite of its LTR counterpart.
The .dir-rtl .context-button-group however seems to have been style as a last ditch effort adding a right: -15px; instead of trying to find the source of the actual problem, that of the whole button group css in that area which is wrong.
.dir-ltr .page-context-header {
|
.page-header-image {
|
float: left;
|
margin-right: 1em;
|
}
|
.header-button-group {
|
float: right;
|
}
|
}
|
|
.dir-rtl .page-context-header {
|
.page-header-image {
|
float: right;
|
margin-left: 1em;
|
}
|
|
.header-button-group {
|
float: left;
|
right: -15px;
|
}
|
}
|
- will help resolve
-
MDL-51194 Move CSS classes out of theme/bootstrapbase/less/moodle.less
-
- Closed
-