MDL-55320 theme: Fix chat data table alignment

This commit is contained in:
Simey Lameze
2016-08-16 09:35:21 +08:00
parent 6f302b17b9
commit ff80d062de
2 changed files with 18 additions and 1 deletions
+17
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