Files
notifications-admin/app/assets/stylesheets/components/table.scss
T

62 lines
742 B
SCSS
Raw Normal View History

2016-01-19 09:55:13 +00:00
.table {
margin-bottom: $gutter;
}
2015-12-17 11:14:19 +00:00
.table-heading {
text-align: left;
}
%table-field,
.table-field {
&:last-child {
padding-right: 0;
}
&-status {
&-default {
color: $secondary-text-colour;
}
&-error {
2016-01-19 09:55:13 +00:00
2015-12-17 11:14:19 +00:00
color: $error-colour;
font-weight: bold;
2016-01-19 09:55:13 +00:00
a:link,
a:visited {
color: $error-colour;
}
2015-12-17 11:14:19 +00:00
}
2015-12-10 17:54:05 +00:00
}
}
2015-12-17 11:14:19 +00:00
.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: 5px 0 8px 0;
}