• ■ ■ ■ ■
    server-core/src/main/java/io/onedev/server/notification/IssueNotificationManager.java
    skipped 74 lines
    75 75   else
    76 76   url = urlManager.urlFor(issue);
    77 77   
    78  - String summary = "[" + issue.getState() + "] ";
     78 + String summary = issue.getState() + " - ";
    79 79   if (user != null)
    80 80   summary = summary + user.getDisplayName() + " " + event.getActivity();
    81 81   else
    skipped 160 lines
  • ■ ■ ■ ■
    server-core/src/main/java/io/onedev/server/notification/PullRequestNotificationManager.java
    skipped 167 lines
    168 168   }
    169 169   }
    170 170  
    171  - String summary = "[" + request.getStatusName() + "] ";
     171 + String summary = request.getStatusName() + " - ";
    172 172   if (user != null)
    173 173   summary = summary + user.getDisplayName() + " " + event.getActivity();
    174 174   else if (committer != null)
    skipped 145 lines
  • ■ ■ ■ ■ ■
    server-core/src/main/java/io/onedev/server/web/asset/bootstrap/css/bootstrap-custom.css
    skipped 1859 lines
    1860 1860   
    1861 1861   
    1862 1862  h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    1863  - margin-bottom: 0.5rem;
     1863 + margin-bottom: 1rem;
    1864 1864   font-weight: 500;
    1865 1865   line-height: 1.2;
    1866 1866  }
    1867 1867  h1, h2, h3, h4, h5, h6 {
    1868 1868   margin-top: 0;
    1869  - margin-bottom: 0.5rem;
    1870 1869  }
    1871 1870  h1, .h1 {
    1872 1871   font-size: 2rem;
    skipped 974 lines
Please wait...
Page is in error, reload to recover