* Add new role for support staff. * Move dashboard/support functionality into a new Django app called "support". * Add support view for searching and regenerating certificates. * Refactor certificates views into separate files.
33 lines
544 B
SCSS
33 lines
544 B
SCSS
// lms - views - support
|
|
// These styles are included on admin pages used by the support team.
|
|
// ===================================================================
|
|
|
|
.certificates-search {
|
|
margin: 40px 0;
|
|
|
|
input[name="query"] {
|
|
width: 476px;
|
|
}
|
|
}
|
|
|
|
|
|
.certificates-results {
|
|
table {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
th {
|
|
text-align: center;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
th, td {
|
|
padding: 10px 10px;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.btn-cert-regenerate {
|
|
font-size: 12px;
|
|
}
|