Skip to content

Commit

Permalink
Minor css improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
robinshine committed Aug 11, 2021
1 parent 1813610 commit d2c42ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ else if (event instanceof IssueChangeEvent)
else
url = urlManager.urlFor(issue);

String summary = "[" + issue.getState() + "] ";
String summary = issue.getState() + " - ";
if (user != null)
summary = summary + user.getDisplayName() + " " + event.getActivity();
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ protected Collection<? extends NamedQuery> getNamedQueries() {
}
}

String summary = "[" + request.getStatusName() + "] ";
String summary = request.getStatusName() + " - ";
if (user != null)
summary = summary + user.getDisplayName() + " " + event.getActivity();
else if (committer != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1860,13 +1860,12 @@ input[type="radio"], input[type="checkbox"] {


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 0.5rem;
margin-bottom: 1rem;
font-weight: 500;
line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
h1, .h1 {
font-size: 2rem;
Expand Down

0 comments on commit d2c42ff

Please sign in to comment.