Skip to content
Snippets Groups Projects
Unverified Commit 8685b3f8 authored by Connor Shea's avatar Connor Shea
Browse files

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

parent 98cede7e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
Loading
Loading
@@ -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;
}
}
Loading
Loading
@@ -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 {
Loading
Loading
Loading
Loading
@@ -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;
}
}
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment