##// END OF EJS Templates
inline comments gui
marcink -
r1683:28eeddf8 beta
parent child Browse files
Show More
@@ -70,12 +70,29 b' table.code-difftable td {'
70 -moz-user-select:none;
70 -moz-user-select:none;
71 -webkit-user-select: none;
71 -webkit-user-select: none;
72 }
72 }
73 .code-difftable .lineno-inline{
74 background:none repeat scroll 0 0 #FFF !important;
75 padding-left:2px;
76 padding-right:2px;
77 text-align:right;
78 width:30px;
79 -moz-user-select:none;
80 -webkit-user-select: none;
81 }
73 .code-difftable .new {
82 .code-difftable .new {
74 border-right: 1px solid #CCC !important;
83 border-right: 1px solid #CCC !important;
75 }
84 }
76 .code-difftable .old {
85 .code-difftable .old {
77 border-right: 1px solid #CCC !important;
86 border-right: 1px solid #CCC !important;
78 }
87 }
88
89 .code-difftable .lineno-inline.new-inline{
90
91 }
92 .code-difftable .lineno-inline.old-inline{
93 border-right: 1px solid #CCC !important;
94 }
95
79 .code-difftable .lineno pre{
96 .code-difftable .lineno pre{
80 color:#747474 !important;
97 color:#747474 !important;
81 font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
98 font:11px "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace !important;
@@ -307,8 +307,8 b' var removeInlineForm = function(form) {'
307 var tableTr = function(cls,body){
307 var tableTr = function(cls,body){
308 var form = document.createElement('tr');
308 var form = document.createElement('tr');
309 YUD.addClass(form, cls);
309 YUD.addClass(form, cls);
310 form.innerHTML = '<td class="lineno new"></td>'+
310 form.innerHTML = '<td class="lineno-inline new-inline"></td>'+
311 '<td class="lineno old"></td>'+
311 '<td class="lineno-inline old-inline"></td>'+
312 '<td>{0}</td>'.format(body);
312 '<td>{0}</td>'.format(body);
313 return form;
313 return form;
314 }
314 }
General Comments 0
You need to be logged in to leave comments. Login now