Show More
@@ -1,90 +1,94 b'' | |||
|
1 | 1 | div.diffblock .code-header .changeset_header > div { |
|
2 | 2 | margin: 0 @padding; |
|
3 | 3 | } |
|
4 | 4 | |
|
5 | 5 | |
|
6 | 6 | // Line select and comment |
|
7 | 7 | div.diffblock.margined.comm tr { |
|
8 | 8 | td { |
|
9 | 9 | position: relative; |
|
10 | 10 | } |
|
11 | 11 | |
|
12 | 12 | .add-comment-line { |
|
13 | 13 | // Force td width for Firefox |
|
14 | 14 | width: 20px; |
|
15 | 15 | |
|
16 | 16 | // TODO: anderson: fixing mouse-over bug. |
|
17 | 17 | // why was it vertical-align baseline in first place?? |
|
18 | 18 | vertical-align: top !important; |
|
19 | 19 | // Force width and display for IE 9 |
|
20 | 20 | .add-comment-content { |
|
21 | 21 | display: inline-block; |
|
22 | 22 | width: 20px; |
|
23 | 23 | |
|
24 | 24 | a { |
|
25 | 25 | display: none; |
|
26 | 26 | position: absolute; |
|
27 | 27 | top: 2px; |
|
28 | 28 | left: 2px; |
|
29 | 29 | color: @grey3; |
|
30 | 30 | } |
|
31 | 31 | } |
|
32 | 32 | } |
|
33 | 33 | |
|
34 | 34 | .comment-toggle { |
|
35 | display: inline-block; | |
|
36 | visibility: hidden; | |
|
37 | 35 | width: 20px; |
|
38 | 36 | color: @rcblue; |
|
37 | .icon-comment{ | |
|
38 | display: inline-block; | |
|
39 | visibility: hidden; | |
|
40 | } | |
|
39 | 41 | |
|
40 | 42 | &.active { |
|
43 | .icon-comment{ | |
|
41 | 44 | visibility: visible; |
|
45 | } | |
|
42 | 46 | cursor: pointer; |
|
43 | 47 | } |
|
44 | 48 | } |
|
45 | 49 | |
|
46 | 50 | &.line { |
|
47 | 51 | &:hover, &.hover{ |
|
48 | 52 | .add-comment-line a{ |
|
49 | 53 | display: inline; |
|
50 | 54 | } |
|
51 | 55 | } |
|
52 | 56 | |
|
53 | 57 | &.hover, &.selected { |
|
54 | 58 | &, del, ins { |
|
55 | 59 | background-color: lighten(@alert3, 10%) !important; |
|
56 | 60 | } |
|
57 | 61 | } |
|
58 | 62 | |
|
59 | 63 | &.commenting { |
|
60 | 64 | &, del, ins { |
|
61 | 65 | background-image: none !important; |
|
62 | 66 | background-color: lighten(@alert4, 10%) !important; |
|
63 | 67 | } |
|
64 | 68 | } |
|
65 | 69 | } |
|
66 | 70 | } |
|
67 | 71 | |
|
68 | 72 | .compare-header { |
|
69 | 73 | overflow-x: auto; |
|
70 | 74 | overflow-y: hidden; |
|
71 | 75 | clear: both; |
|
72 | 76 | padding: @padding; |
|
73 | 77 | background: @grey6; |
|
74 | 78 | border: @border-thickness solid @border-default-color; |
|
75 | 79 | .border-radius(@border-radius); |
|
76 | 80 | |
|
77 | 81 | .compare-value, |
|
78 | 82 | .compare-label { |
|
79 | 83 | float: left; |
|
80 | 84 | display: inline-block; |
|
81 | 85 | min-width: 5em; |
|
82 | 86 | margin: 0; |
|
83 | 87 | padding: 0.9em 0.9em 0.9em 0; |
|
84 | 88 | } |
|
85 | 89 | |
|
86 | 90 | .compare-label { |
|
87 | 91 | clear: both; |
|
88 | 92 | font-family: @text-semibold; |
|
89 | 93 | } |
|
90 | } No newline at end of file | |
|
94 | } |
General Comments 0
You need to be logged in to leave comments.
Login now