Add borders to images in issues, MRs, and Help.

This commit is contained in:
Connor Shea 2016-06-14 12:15:21 -06:00
parent 98cede7ebe
commit 8685b3f80a
No known key found for this signature in database
GPG key ID: E52237E5B35A83E6
4 changed files with 22 additions and 0 deletions

View file

@ -18,6 +18,7 @@ v 8.9.0 (unreleased)
- Redesign all Devise emails. !4297
- Don't show 'Leave Project' to group members
- Fix wiki page events' webhook to point to the wiki repository
- Add a border around images to differentiate them from the background.
- Don't show tags for revert and cherry-pick operations
- Fix issue todo not remove when leave project !4150 (Long Nguyen)
- Allow customisable text on the 'nearly there' page after a user signs up

View file

@ -57,4 +57,11 @@
.documentation {
padding: 7px;
// Border around images in the help pages.
img {
border: 1px solid $table-border-gray;
padding: 5px;
margin: 5px;
}
}

View file

@ -4,6 +4,13 @@
margin-right: 1px;
}
}
// Border around images in issue and MR descriptions.
.description img {
border: 1px solid $table-border-gray;
padding: 5px;
margin: 5px;
}
}
.issuable-filter-count {

View file

@ -117,6 +117,13 @@ ul.notes {
code {
word-break: keep-all;
}
// Border around images in issue and MR comments.
img {
border: 1px solid $table-border-gray;
padding: 5px;
margin: 5px 0;
}
}
}