Files
notifications-admin/app/assets/stylesheets/components/table.scss
Chris Hill-Scott aa0663cad8 Add messages to the current job’s history
This mocks out a data structure for a job’s messages, and renders this data:
- on the notification page, as a table, which links through to…
- …the page for an indidivual message
2016-01-05 13:31:53 +00:00

44 lines
485 B
SCSS

.table-heading {
text-align: left;
}
%table-field,
.table-field {
&:last-child {
padding-right: 0;
}
&-status {
&-default {
color: $secondary-text-colour;
}
&-error {
color: $error-colour;
font-weight: bold;
}
}
}
.table-field-heading {
&:last-child {
padding-right: 0;
}
&-right-aligned {
display: block;
text-align: right;
}
}
.table-field-right-aligned {
@extend .table-field;
text-align: right;
}