Update archweb stylesheet

Pull in the latest changes from the archweb Git repository.

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2012-07-09 13:10:35 +02:00
parent a64f23ff94
commit a5f1fb66fc

View file

@ -85,6 +85,10 @@ input[type=submit] {
clear: both; clear: both;
} }
.hide {
display: none;
}
hr { hr {
border: none; border: none;
border-top: 1px solid #888; border-top: 1px solid #888;
@ -122,6 +126,16 @@ a {
color: #e90; color: #e90;
} }
/* special anchor elements */
a.headerlink {
visibility: hidden;
padding-left: 0.5em;
}
h3:hover > a.headerlink {
visibility: visible;
}
/* headings */ /* headings */
h2 { h2 {
font-size: 1.5em; font-size: 1.5em;
@ -258,6 +272,23 @@ table.pretty2 {
border: 1px solid #bbb; border: 1px solid #bbb;
} }
/* additional styles for JS sorting */
table.pretty2 th.header {
padding-right: 20px;
background-image: url(nosort.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.pretty2 th.headerSortDown {
background-image: url(desc.gif);
}
table.pretty2 th.headerSortUp {
background-image: url(asc.gif);
}
table.pretty2 td { table.pretty2 td {
padding: 0.35em; padding: 0.35em;
border: 1px dotted #bbb; border: 1px dotted #bbb;
@ -481,15 +512,11 @@ h3 span.arrow {
text-align: right; text-align: right;
} }
#pkg-updates span.testing, #pkg-updates span.testing {
#pkg-updates span.community-testing,
span.multilib-testing {
font-style: italic; font-style: italic;
} }
#pkg-updates span.staging, #pkg-updates span.staging {
#pkg-updates span.community-staging,
span.multilib-staging {
font-style: italic; font-style: italic;
color: #ff8040; color: #ff8040;
} }
@ -575,25 +602,6 @@ table#download-torrents .cpu-arch {
text-align: center; text-align: center;
} }
table#download-mirrors {
width: auto;
margin-bottom: 1em;
}
table#download-mirrors td.mirror-country {
padding-top: 1em;
}
table#download-mirrors td.mirror-server {
padding-right: 1em;
}
table#download-mirrors a {
display: block;
float: right;
width: 4em;
}
/* pkglists/devlists */ /* pkglists/devlists */
table.results { table.results {
font-size: 0.846em; font-size: 0.846em;
@ -649,8 +657,7 @@ div#pkglist-about {
} }
/* pkglist: results navigation */ /* pkglist: results navigation */
#pkglist-stats-top, .pkglist-stats {
#pkglist-stats-bottom {
font-size: 0.85em; font-size: 0.85em;
} }
@ -668,6 +675,10 @@ div#pkglist-about {
} }
/* search fields and other filter selections */ /* search fields and other filter selections */
.filter-criteria {
margin-bottom: 1em;
}
.filter-criteria h3 { .filter-criteria h3 {
font-size: 1em; font-size: 1em;
margin-top: 0; margin-top: 0;
@ -728,6 +739,11 @@ div#pkglist-about {
padding: 0.25em 0 0.25em 1.5em; padding: 0.25em 0 0.25em 1.5em;
} }
#pkgdetails #pkginfo .userdata {
font-size: 0.85em;
padding: 0.5em;
}
/* pkgdetails: flag package */ /* pkgdetails: flag package */
form#flag-pkg-form label { form#flag-pkg-form label {
width: 10em; width: 10em;
@ -795,6 +811,28 @@ form#flag-pkg-form input[type=text] {
padding-top: 1em; padding-top: 1em;
} }
#pkgdetails #pkgfiles li.d {
color: #666;
}
#pkgdetails #pkgfiles li.f {
}
/* mirror stuff */
table td.country {
white-space: normal;
}
form#list-generator div ul {
list-style: none;
display: inline;
padding-left: 0;
}
form#list-generator div ul li {
display: inline;
}
/* dev/TU biographies */ /* dev/TU biographies */
div#arch-bio-toc { div#arch-bio-toc {
width: 75%; width: 75%;
@ -802,10 +840,20 @@ div#arch-bio-toc {
text-align: center; text-align: center;
} }
div#arch-bio-toc a {
white-space: nowrap;
}
table.arch-bio-entry {
width: 75%;
min-width: 640px;
margin: 0 auto;
}
table.arch-bio-entry td.pic { table.arch-bio-entry td.pic {
vertical-align: top; vertical-align: top;
padding-right: 15px; padding-right: 15px;
padding-top: 10px; padding-top: 2.25em;
} }
table.arch-bio-entry td.pic img { table.arch-bio-entry td.pic img {
@ -813,12 +861,19 @@ table.arch-bio-entry td.pic {
border: 1px solid #ccc; border: 1px solid #ccc;
} }
table.arch-bio-entry td h3 {
border-bottom: 1px dotted #ccc;
margin-bottom: 0.5em;
}
table.arch-bio-entry table.bio { table.arch-bio-entry table.bio {
margin-bottom: 2em; margin-bottom: 2em;
} }
table.arch-bio-entry table.bio th { table.arch-bio-entry table.bio th {
text-align: left; color: #666;
font-weight: normal;
text-align: right;
padding-right: 0.5em; padding-right: 0.5em;
vertical-align: top; vertical-align: top;
white-space: nowrap; white-space: nowrap;
@ -899,26 +954,26 @@ ul.admin-actions {
background: #ffd; background: #ffd;
} }
#dev-signoffs ul { ul.signoff-list {
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
#dev-signoffs .signoff-yes { .signoff-yes {
color: green; color: green;
font-weight: bold; font-weight: bold;
} }
#dev-signoffs .signoff-no { .signoff-no {
color: red; color: red;
} }
#dev-signoffs .signoff-bad { .signoff-bad {
color: darkorange; color: darkorange;
} }
#dev-signoffs .signoff-disabled { .signoff-disabled {
color: gray; color: gray;
} }
@ -949,6 +1004,14 @@ ul.admin-actions {
color: red; color: red;
} }
#key-status .signed-yes {
color: green;
}
#key-status .signed-no {
color: red;
}
/* highlight current website in the navbar */ /* highlight current website in the navbar */
#archnavbar.anb-home ul li#anb-home a, #archnavbar.anb-home ul li#anb-home a,
#archnavbar.anb-packages ul li#anb-packages a, #archnavbar.anb-packages ul li#anb-packages a,
@ -982,3 +1045,8 @@ ul.admin-actions {
font-size: 0.85em; font-size: 0.85em;
line-height: 1em; line-height: 1em;
} }
#visualize-keys svg {
width: 100%;
height: 100%;
}