Commit 5bdcdcd81fd56e9806ca1560d0ca1304d2e84be2

Authored by Dmitriy Zaporozhets
1 parent 1c7aecc8

Add border to white code blocks

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
CHANGELOG
... ... @@ -3,6 +3,7 @@ v 6.7.0
3 3 - Add edit file button to MergeRequest diff
4 4 - Public groups (Jason Hollingsworth)
5 5 - Cleaner headers in Notification Emails (Pierre de La Morinerie)
  6 + - Blob and tree gfm links to anchors work
6 7  
7 8 v 6.6.2
8 9 - Fix 500 error on branch/tag create or remove via UI
... ... @@ -33,7 +34,6 @@ v 6.6.0
33 34 - Restyle Issue#show page and MR#show page
34 35 - Ability to filter by multiple labels for Issues page
35 36 - Rails version to 4.0.3
36   - - Blob and tree gfm links to anchors work
37 37  
38 38 v 6.5.1
39 39 - Fix branch selectbox when create merge request from fork
... ...
app/assets/stylesheets/highlight/white.scss
... ... @@ -178,3 +178,9 @@
178 178 .shadow {
179 179 @include box-shadow(0 5px 15px #000);
180 180 }
  181 +
  182 +.wiki, .note-body {
  183 + .highlight {
  184 + border: 1px solid #DDD;
  185 + }
  186 +}
... ...