Starting to hook up "orphaned" actions.
[catagits/Gitalist.git] / root / static / css / site.css
1 body {
2   margin: 1em;
3 }
4
5 thead, tfoot {
6   /* FTR all table columns should be sortable hence the colour to indicate clickableness. */
7   color: navy;
8   font-size: small;
9   font-weight: bold !important;
10 }
11 thead th {
12   border-bottom: solid 1px #777;
13 }
14 tfoot td {
15   border-top: solid 1px #777;
16 }
17
18 .listing tbody tr:nth-child(even) {
19   background-color: #f7f7f7;
20 }
21 .listing tbody tr:hover {
22   background-color: #fefeaa;
23 }
24
25 span.chroma-hash {
26   font-family: monospace;
27   font-size:   1em;
28   font-style: normal;
29 }
30 div.chroma-hash {
31   float: right;
32 }
33
34 .time-since {
35   font-style: italic;
36 }
37 .author, .head {
38   font-weight: bold;
39   font-family: "Trebuchet MS", "Lucida Grande", serif;
40 }
41
42 .file-name, .file-mode {
43   font-family: monospace;
44 }
45 .action-list {
46   font-size: smaller;
47 }
48
49 .path {
50   border-bottom: solid 1px #ddd;
51   padding: 3px 0;
52   font-weight: bold;
53 }
54
55
56 /* header */
57 #page-header {
58   height: 25px;
59   padding: 8px;
60   font-size: 1.5em;
61   font-weight: bold;
62   background-color: #d9d8d1;
63 }
64
65 img.logo {
66   float: right;
67   border-width: 0px;
68   margin-top: 4px;
69 }
70
71 /* footer */
72 #page-footer {
73   height: 20px;
74   padding: 8px;
75   margin-top: 10px;
76   font-style: italic;
77   background-color: #d9d8d1;
78   border-top: solid 1px #777;
79 }
80
81 /* actions include */
82 .actions {
83   padding-bottom: 4px 0;
84   font-style: italic;
85   border-top: solid 1px #777;
86   border-bottom: solid 1px #777;
87   margin-bottom: 10px;
88   padding: 5px 0;
89 }
90
91 /* pager include */
92 .pager {
93   text-align: center;
94 }
95
96 /* search include */
97 #page-search {
98   text-align: right;
99   float: right;
100   font-size: 0.7em;
101   padding-right: 20px;
102 }
103
104 /* shortlog include */
105 table.shortlog tbody tr {
106   padding: 1px 0px;
107 }
108 table.shortlog tbody td {
109   padding: 0 1px;
110 }
111
112 /* /commit page */
113 .commit-message {
114   font-family: monospace;
115   font-size: 1.2em;
116 }
117 div.commit-message {
118   margin-bottom: 10px;
119 }
120 pre.commit-message {
121   border-top:  solid 2px red;
122   border-bottom:  solid 2px green;
123   padding: 5px;
124 }
125 .commit-info dt {
126   font-weight: bold;
127 }
128 .commit-info dd {
129   font-family: monospace;
130 }
131
132 /* /heads */
133 .heads .head {
134   font-weight: bold;
135 }
136 .heads .current {
137   text-decoration: underline;
138 }
139 table.heads {
140   width: 75%;
141 }
142
143 /* /blame */
144 #blame pre, #blame tt {
145   margin: 0;
146   font-size: 0.9em;
147 }
148 #blame .commit-info {
149 }
150 #blame .lineno {
151   text-align: right;
152   padding: 0 8px;
153 }
154 #blame a {
155   text-decoration: none;
156 }
157 #blame tr.alt {
158   background-color: #f7f7f7;
159 }
160 #blame tbody tr:hover {
161   background-color: #fefeaa;
162 }
163
164 /* /blob */
165 pre.blob {
166   background-color: #333;
167   color: #ddd;
168   border-left: solid 3px #c33;
169   padding: 5px;
170   padding-left: 15px;
171   margin: 10px 15px;
172 }
173
174 /* /blobdiff etc */
175
176 .diff-head, .diff-index {
177   font-family: monospace;
178 }
179 .diff-head {
180   border-top: solid 1px red;
181 }
182 .diff-index {
183   border-bottom: solid 1px green;
184 }
185
186 /* /commitdiff */
187 .diff-patch {
188   font-size: 0.8em;
189 }
190
191 /* /log */
192 #log .entry {
193   border: solid 1px grey;
194   margin: 5px 0;
195   padding: 5px;
196 }
197 #log .meta {
198   border-top: dotted 1px #ddd;
199   color: #311;
200 }
201 #log table.summary {
202   width: 33%;
203   font-size: 0.9em;
204 }
205 #log .message {
206   font-family: monospace;
207   font-size: 1.15em;
208   /* XXX Need to enforce find the CSS switch to force the chroma-hash below the message box */
209 }
210 #log .age {
211   float: right;
212   font-size: 0.85em;
213   font-style: italic;
214 }
215
216 /* /summary */
217 #stats {
218   float: right;
219 }
220
221 /* /tree */
222 table.tree {
223   width: 65%;
224 }
225
226 /* Formerly of gitweb.css */
227
228 span.refs span {
229   padding: 0px 4px;
230   font-size: 80%;
231   /* XXX needs more families */
232   font-family: Verdana;
233   letter-spacing: -1px;
234   border: 1px solid;
235   background-color: #ffaaff;
236   border-color: #ffccff #ff00ee #ff00ee #ffccff;
237 }
238
239 span.refs span.ref {
240   background-color: #aaaaff;
241   border-color: #ccccff #0033cc #0033cc #ccccff;
242 }
243
244 span.refs span.tag {
245   background-color: #ffffaa;
246   border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
247 }
248
249 span.refs span.head {
250   background-color: #aaffaa;
251   border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
252 }
253 span.refs a {
254   text-decoration: none;
255 }
256
257 a.rss_logo {
258   float: right;
259   padding: 3px 0px;
260   width: 35px;
261   line-height: 10px;
262   border: 1px solid;
263   border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
264   color: #ffffff;
265   background-color: #ff6600;
266   font-weight: bold;
267   font-family: sans-serif;
268   font-size: 70%;
269   font-style: normal;
270   text-align: center;
271   text-decoration: none;
272 }
273
274 a.rss_logo:hover {
275   background-color: #ee5500;
276 }