MDL-46950 gradereport_grader: Prettier styling for base and clean

This issue is a part of the MDL-46658 Task.
This issue is a part of the MDL-25544 Epic.
This commit is contained in:
Frederic Massart 2014-08-29 12:17:12 +08:00 committed by Andrew Nicols
parent 31819e8961
commit 62e11d37c2
3 changed files with 35 additions and 3 deletions

View File

@ -42,6 +42,13 @@
vertical-align: middle;
}
/**
* Stripped table.
*/
.gradeparent tr:nth-of-type(even) .cell {
background-color: #f9f9f9;
}
/**
* All the floating divs.
*/
@ -53,14 +60,20 @@
}
/**
* All the header/floating cells.
* All the headers + floating cells.
*/
.gradeparent .heading .cell,
.gradeparent .avg .cell,
.gradeparent .user.cell {
font-size: 14px;
font-weight: normal;
background-color: #eee;
}
/**
* All the floating cells.
*/
.gradeparent .floater .cell {
background-color: #f9f9f9;
}
/**

View File

@ -230,3 +230,22 @@
}
}
}
/**
* Grader report.
*/
.path-grade-report {
.gradeparent {
table {
.border-radius(@baseBorderRadius);
}
table,
.cell {
border-color: @tableBorder;
}
tr:nth-of-type(even) .cell,
.floater .cell {
background-color: @tableBackgroundAccent;
}
}
}

File diff suppressed because one or more lines are too long