mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
dee226a94d
Notice that some styles are made specific to the plugins because I don't want to take the risk of introducing regressions by patching core so broadly for RTL support.
22 lines
526 B
CSS
22 lines
526 B
CSS
.dir-rtl.path-report-competency [data-region="competency-breakdown-report"] .row-fluid [class*="span"] {
|
|
float: right;
|
|
}
|
|
|
|
/** Broader RTL changes. */
|
|
.dir-rtl.path-report-competency .pull-left {
|
|
float: right;
|
|
}
|
|
.dir-rtl.path-report-competency .pull-right {
|
|
float: left;
|
|
}
|
|
.dir-rtl.path-report-competency dd {
|
|
margin-right: 10px;
|
|
}
|
|
.dir-rtl.path-report-competency ul.inline {
|
|
margin-right: 0;
|
|
}
|
|
.dir-rtl.path-report-competency .table th,
|
|
.dir-rtl.path-report-competency .table td {
|
|
text-align: right;
|
|
}
|