5028e230615aeb4c0626d0af3c60be0d2b74787b
[redakcja.git] / platforma / static / css / history.css
1 #history-view {
2     overflow: auto;
3     position: absolute;
4     top: 30px; /* 0 for no toolbar, 30 for toolbar */
5     bottom: 0px;
6     left: 0px;
7     right: 0px;
8         z-index: 1;
9 }
10
11 /*
12  * File History
13  */
14 #changes-list {
15         margin: 0.5em 0.2em;    
16 }
17
18 #changes-list div {
19         position: relative;
20         padding: 0.5em;
21         margin: 0.5em;
22 }
23
24 #changes-list div:hover {
25         background-color: #f0f0f0;
26 }
27
28 #changes-list div.selected {
29         background-color: #ffec63;
30 }
31
32 #changes-list span.tag {
33         display: inline-block;
34         visibility: hidden;
35         width: 60px;
36         margin: 0 0.5em 0 0;    
37         font-size: 11px;
38         padding: 3px 2px;
39         text-align: center;             
40         color: black;
41         background: #add8e6;
42         cursor: pointer;
43         vertical-align: middle;
44         -moz-border-radius: 10px;
45         -webkit-border-radius: 10px;
46         border-radius: 10px;
47 }
48
49 #changes-list div:hover span.tag {
50         visibility: visible;     
51 }
52
53 #changes-list span.tag:hover {
54         background: #bde8f6;
55 }
56
57 #changes-list span[data-version-tag] {
58         visibility: visible;
59         border: 1px solid black;        
60         
61         color: black;
62 }
63
64 #changes-list span[data-stub-value='version'] {
65         font-weight: bold;
66 }
67
68 #changes-list span[data-stub-value='date'], 
69 #changes-list span[data-stub-value='author'] 
70 {
71         font-size: 11px;
72         color: gray;
73 }
74  
75  
76 /* 
77  * Graphical DIFF view
78  * 
79  */
80 #history-view .diff_table {
81         width: 90%;
82 }
83
84  .diff_table { 
85         border-width: 1px;
86         border-style: solid;
87         border-color: black;
88         empty-cells: show;
89         border-spacing: 0px;            
90 }
91
92 .diff_table td {
93         border-width: 0px 1px 1px 0px;
94         border-style: dotted;
95         border-color: grey;
96         
97         font-size: 10px;
98         line-height: 20px;
99         font-family: monospace;
100         padding: 0px;
101         white-space:pre-line;
102         /*word-wrap:break-word;
103         word-break:break-all; */
104 }
105
106 .diff_table th {
107         border-width: 0px 1px 1px 0px;
108         border-style: solid;
109         border-color: black;
110         background: #e5ffe5;            
111 }
112  
113 /* .diff_table td.left, .diff_table td.right {
114         width: 50%;
115 }*/
116
117 .diff_table tr.change {
118         background-color: #dcdcdc;
119         
120 }
121
122 .diff_mark {
123         display: inline-block;
124         padding: 2px;
125 }
126
127 .diff_mark_removed {
128         background-color: #ff9c94;
129 }
130
131 .diff_mark_added {
132         background-color: #90ee90;
133 }
134
135 .diff_mark_changed {
136         background-color: yellow;
137 }