moodle/report/competency/styles.css
Frederic Massart dee226a94d MDL-53773 competency: RTL styles for report_competency and tool_lp
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.
2016-04-18 11:06:01 +08:00

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;
}