Commit 18ea0e0ea726114b82161118d3e46bc0f11a90df

Authored by Dmitriy Zaporozhets
1 parent 7a53215d

Prevent overflow of comment code in event body. Add border-radius to highlight code inside note body

app/assets/stylesheets/sections/events.scss
... ... @@ -58,6 +58,7 @@
58 58 background: #f9f9f9;
59 59 border-radius: 0;
60 60 color: #555;
  61 + margin: 0 20px;
61 62 }
62 63  
63 64 .note-file-attach {
... ...
app/assets/stylesheets/sections/notes.scss
... ... @@ -92,6 +92,10 @@ ul.notes {
92 92 .note-body {
93 93 @include md-typography;
94 94 margin-left: 45px;
  95 +
  96 + .highlight {
  97 + @include border-radius(4px);
  98 + }
95 99 }
96 100 .note-header {
97 101 padding-bottom: 5px;
... ...