Merge branch 'MDL-55320-master' of git://github.com/lameze/moodle

This commit is contained in:
Dan Poltawski 2016-08-22 15:20:17 +01:00
commit c1d5d922a8
2 changed files with 18 additions and 1 deletions

View File

@ -2676,6 +2676,23 @@ h3.sectionname .inplaceeditable.inplaceeditingon .editinstructions {
/** Chart output HTML table */
.chart-output-htmltable {
width: 100%;
text-align: right;
th {
width: 20%;
}
td {
width: 80%;
}
}
.dir-rtl .chart-output-htmltable {
width: 100%;
text-align: left;
th {
width: 20%;
}
td {
width: 80%;
}
}
/** Chart area. */

File diff suppressed because one or more lines are too long