Files
notifications-admin/app/assets/stylesheets/views/users.scss
T

42 lines
695 B
SCSS
Raw Normal View History

2020-02-21 13:21:44 +00:00
$item-top-padding: govuk-spacing(3);
2017-10-25 11:46:12 +01:00
2016-07-07 09:17:50 +01:00
.user-list {
2017-03-15 12:50:45 +00:00
@include core-19;
2020-02-21 13:21:44 +00:00
margin-bottom: govuk-spacing(6);
2016-07-07 09:17:50 +01:00
&-item {
2020-02-21 13:21:44 +00:00
padding: $item-top-padding 150px govuk-spacing(3) 0;
2016-07-07 09:17:50 +01:00
border-top: 1px solid $border-colour;
2017-10-25 11:46:12 +01:00
position: relative;
2016-07-07 09:17:50 +01:00
2018-11-22 10:41:47 +00:00
h3 {
2020-02-21 13:21:44 +00:00
padding-right: govuk-spacing(3);
2018-11-22 10:41:47 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: $secondary-text-colour; // So the ellipsis is grey
.heading-small {
color: $black;
}
}
2016-07-07 09:17:50 +01:00
&:last-child {
border-bottom: 1px solid $border-colour;
}
}
2017-10-25 11:46:12 +01:00
&-edit-link {
text-align: right;
position: absolute;
top: $item-top-padding;
right: 0px;
}
2016-07-07 09:17:50 +01:00
}