Use an 'inline' dl to unify the appearance of the mapper and admin info details lines

This commit is contained in:
Andy Allan 2021-09-15 13:19:56 +01:00
parent 3b1ef97c69
commit dfaea75c27
2 changed files with 41 additions and 24 deletions

View file

@ -1096,12 +1096,6 @@ tr.turn:hover {
/* Rules for the user profile page */
.admin-user-info small {
margin-bottom: $lineheight/2;
display: inline;
margin-right: $lineheight;
}
.contact-activity {
margin-top: $lineheight;
width: 100%;
@ -1559,6 +1553,17 @@ div.secondary-actions {
}
}
/* Create a single-line dl */
dl.dl-inline {
dt, dd {
display: inline-block;
}
dd {
margin-right: 1em;
}
}
/* Customise the background colour of striped tables */
.table-striped > tbody > tr:nth-child(2n+1) > td,