26ab7f9e9d6ffc645abf00ee4d938901436f7fff
[redakcja.git] / platforma / static / css / history.css
1 #history-view .diff_table {
2         width: 90%;
3 }
4  
5 /* DIFFS */
6  .diff_table { 
7         border-width: 1px;
8         border-style: solid;
9         border-color: black;
10         empty-cells: show;
11         border-spacing: 0px;            
12 }
13
14 .diff_table td {
15         border-width: 0px 1px 1px 0px;
16         border-style: dotted;
17         border-color: grey;
18         
19         font-size: 10px;
20         line-height: 20px;
21         font-family: monospace;
22         padding: 0px;
23         white-space:pre-line;
24         /*word-wrap:break-word;
25         word-break:break-all; */
26 }
27
28 .diff_table th {
29         border-width: 0px 1px 1px 0px;
30         border-style: solid;
31         border-color: black;
32         background: #e5ffe5;            
33 }
34  
35 /* .diff_table td.left, .diff_table td.right {
36         width: 50%;
37 }*/
38
39 .diff_table tr.change {
40         background-color: #dcdcdc;
41         
42 }
43
44 .diff_mark {
45         display: inline-block;
46         padding: 2px;
47 }
48
49 .diff_mark_removed {
50         background-color: #ff9c94;
51 }
52
53 .diff_mark_added {
54         background-color: #90ee90;
55 }
56
57 .diff_mark_changed {
58         background-color: yellow;
59 }