~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/static/css/annotate.css

  • Committer: Matt Nordhoff
  • Date: 2009-05-16 06:03:47 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: mnordhoff@mattnordhoff.com-20090516060347-7cx6v0ecarpwhdat
Make highlight's caller responsible for decoding the text to unicode.

Otherwise it broke because I was passing already-decoded text.

The other option was duplicating the decoding in the non-highlighting path, which seemed less fun.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*table*/
 
2
.annoLineTit, .annoLine, .annoRevTit, .annoRev, .annoComm, .annoCommTit, .annoContTit, .annoCont {
 
3
        width:45px;
 
4
        border:1px solid #d2d2d2;
 
5
}
 
6
.annoLine, .annoRev, .annoComm, .annoCont {
 
7
        border:none;    
 
8
}
 
9
.annoLine {
 
10
        width:37px;
 
11
}
 
12
.annoContTit, .annoCont {
 
13
        width:auto;
 
14
}
 
15
.annoRevTit, .annoRev {
 
16
        width:70px;
 
17
        text-align:center;
 
18
}
 
19
.annoComm, .annoCommTit {
 
20
        width:200px;
 
21
}
 
22
.annoLine, .annoCont {
 
23
        font:normal 12px/normal monospace;
 
24
        whitespace: pre;
 
25
}
 
26
.annoCont pre { margin: 0; }
 
27
.annoLine {
 
28
        text-align:right;
 
29
}