##// END OF EJS Templates
ux: remove position relative on diff td as it causes very slow...
dan -
r788:5bb62bb1 default
parent child Browse files
Show More
@@ -6,14 +6,15 b' div.diffblock .code-header .changeset_he'
6 6 // Line select and comment
7 7 div.diffblock.margined.comm tr {
8 8 td {
9 position: relative;
9 // IMPORTANT - never position:relative this as it causes insanely
10 // slow rendering
10 11 }
11 12
12 13 .add-comment-line {
13 14 // Force td width for Firefox
14 15 width: 20px;
15
16 // TODO: anderson: fixing mouse-over bug.
16
17 // TODO: anderson: fixing mouse-over bug.
17 18 // why was it vertical-align baseline in first place??
18 19 vertical-align: top !important;
19 20 // Force width and display for IE 9
@@ -23,9 +24,8 b' div.diffblock.margined.comm tr {'
23 24
24 25 a {
25 26 display: none;
26 position: absolute;
27 top: 2px;
28 left: 2px;
27 margin-top: 2px;
28 margin-left: 2px;
29 29 color: @grey3;
30 30 }
31 31 }
@@ -69,7 +69,7 b' div.diffblock.margined.comm tr {'
69 69 &.commenting {
70 70 &, del, ins {
71 71 background-image: none !important;
72 background-color: lighten(@alert4, 10%) !important;
72 background-color: lighten(@alert4, 10%) !important;
73 73 }
74 74 }
75 75 }
@@ -27,7 +27,6 b''
27 27 @import 'panels';
28 28 @import 'deform';
29 29
30
31 30 //--- BASE ------------------//
32 31 .noscript-error {
33 32 top: 0;
General Comments 0
You need to be logged in to leave comments. Login now