Unidiff1 files changed, 15 insertions, 0 deletions
|
diff --git a/cgit.css b/cgit.css index a37d218..7928c2f 100644 --- a/ cgit.css+++ b/ cgit.css |
|
@@ -107,55 +107,70 @@ div.content { |
107 | padding: 2em; |
107 | padding: 2em; |
108 | border-top: solid 3px #ccc; |
108 | border-top: solid 3px #ccc; |
109 | border-bottom: solid 3px #ccc; |
109 | border-bottom: solid 3px #ccc; |
110 | } |
110 | } |
111 | |
111 | |
112 | |
112 | |
113 | table.list { |
113 | table.list { |
114 | width: 100%; |
114 | width: 100%; |
115 | border: none; |
115 | border: none; |
116 | border-collapse: collapse; |
116 | border-collapse: collapse; |
117 | } |
117 | } |
118 | |
118 | |
119 | table.list tr { |
119 | table.list tr { |
120 | background: white; |
120 | background: white; |
121 | } |
121 | } |
122 | |
122 | |
| |
123 | table.list tr.logheader { |
| |
124 | background: #eee; |
| |
125 | } |
| |
126 | |
123 | table.list tr:hover { |
127 | table.list tr:hover { |
124 | background: #eee; |
128 | background: #eee; |
125 | } |
129 | } |
126 | |
130 | |
127 | table.list tr.nohover:hover { |
131 | table.list tr.nohover:hover { |
128 | background: white; |
132 | background: white; |
129 | } |
133 | } |
130 | |
134 | |
131 | table.list th { |
135 | table.list th { |
132 | font-weight: bold; |
136 | font-weight: bold; |
133 | /* color: #888; |
137 | /* color: #888; |
134 | border-top: dashed 1px #888; |
138 | border-top: dashed 1px #888; |
135 | border-bottom: dashed 1px #888; |
139 | border-bottom: dashed 1px #888; |
136 | */ |
140 | */ |
137 | padding: 0.1em 0.5em 0.05em 0.5em; |
141 | padding: 0.1em 0.5em 0.05em 0.5em; |
138 | vertical-align: baseline; |
142 | vertical-align: baseline; |
139 | } |
143 | } |
140 | |
144 | |
141 | table.list td { |
145 | table.list td { |
142 | border: none; |
146 | border: none; |
143 | padding: 0.1em 0.5em 0.1em 0.5em; |
147 | padding: 0.1em 0.5em 0.1em 0.5em; |
144 | } |
148 | } |
145 | |
149 | |
| |
150 | table.list td.logsubject { |
| |
151 | font-family: monospace; |
| |
152 | font-weight: bold; |
| |
153 | } |
| |
154 | |
| |
155 | table.list td.logmsg { |
| |
156 | font-family: monospace; |
| |
157 | white-space: pre; |
| |
158 | padding: 1em 0em 2em 0em; |
| |
159 | } |
| |
160 | |
146 | table.list td a { |
161 | table.list td a { |
147 | color: black; |
162 | color: black; |
148 | } |
163 | } |
149 | |
164 | |
150 | table.list td a:hover { |
165 | table.list td a:hover { |
151 | color: #00f; |
166 | color: #00f; |
152 | } |
167 | } |
153 | |
168 | |
154 | img { |
169 | img { |
155 | border: none; |
170 | border: none; |
156 | } |
171 | } |
157 | |
172 | |
158 | input#switch-btn { |
173 | input#switch-btn { |
159 | margin: 2px 0px 0px 0px; |
174 | margin: 2px 0px 0px 0px; |
160 | } |
175 | } |
161 | |
176 | |
|