Commit 25d93987d4667ad1aa1d9550117685ce14f9d5cb

Authored by Jason Hollingsworth
1 parent 74f1da10

Fix shifting line numbers.

Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
app/assets/stylesheets/generic/highlight.scss
@@ -33,20 +33,21 @@ @@ -33,20 +33,21 @@
33 padding: 10px; 33 padding: 10px;
34 text-align: right; 34 text-align: right;
35 float: left; 35 float: left;
36 - width: 60px;  
37 36
38 a { 37 a {
39 font-family: $monospace_font; 38 font-family: $monospace_font;
40 display: block; 39 display: block;
41 font-size: 12px !important; 40 font-size: 12px !important;
42 line-height: 16px !important; 41 line-height: 16px !important;
  42 + white-space: nowrap;
43 43
44 i { 44 i {
45 - display: none; 45 + visibility: hidden;
  46 + @extend .pull-left;
46 } 47 }
47 48
48 &:hover i { 49 &:hover i {
49 - display: inline; 50 + visibility: visible;
50 } 51 }
51 } 52 }
52 } 53 }