Files
notifications-admin/app/assets/stylesheets/components/table.scss
Chris Hill-Scott 7e670d9662 Limit number of jobs on dashboard to 5
…and add a link to view the rest of the jobs if there are more than 5.
2016-02-04 17:25:29 +00:00

70 lines
909 B
SCSS

.table {
margin-bottom: $gutter;
}
.table-heading {
text-align: left;
margin: 40px 0 5px 0;
}
%table-field,
.table-field {
&:last-child {
padding-right: 0;
}
&-status {
&-default {
color: $secondary-text-colour;
}
&-error {
color: $error-colour;
font-weight: bold;
a:link,
a:visited {
color: $error-colour;
}
}
}
}
.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;
}
.table-empty-message {
@include core-16;
color: $secondary-text-colour;
border-bottom: 1px solid $border-colour;
padding: 0.75em 0 0.5625em 0;
}
.table-show-more-link {
margin-top: -20px;
border-bottom: 1px solid $border-colour;
padding-bottom: 10px;
@include bold-16;
}