tazpkg view tazpanel/pkgs.css @ rev 730

pkgs.cgi: html: remove "$SCRIPT_NAME" and replace "&" with "&".
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Dec 28 05:10:28 2014 +0200 (2014-12-28)
parents 82838b56a261
children 853142b48010
line source
1 /* links classes:
2 * pkg - package (not installed);
3 * pkgi - package (installed);
4 * pkgib - package (installed and blocked);
5 * w - web site
6 *
7 * you can style links using icons and/or color
8 */
10 a.pkg {
11 background: url(images/tazpkg.png) no-repeat left; }
12 a.pkgi, a.pkgib {
13 background: url(images/tazpkg-installed.png) no-repeat left; }
14 /*
15 a.pkgi {
16 color: green; }
17 */
18 a.pkgib {
19 color: red; }
20 a.w, .pkglist td:nth-child(4) a {
21 background: url(images/browser.png) no-repeat left; }
23 a.pkg, a.pkgi, a.pkgib, a.w, .pkglist td:nth-child(4) a {
24 margin: 0; padding: 0 0 0 17px;
25 min-height: 16px; min-width: 16px;
26 display: inline-block; }
29 .pkglist td:nth-child(1), .filelist td:nth-child(1) {
30 white-space: nowrap;
31 }
33 .pkglist td:nth-child(1) a, .filelist td:nth-child(1) a {
34 max-width: 12em;
35 }
37 .pkglist td:nth-child(2) {
38 max-width: 7em;
39 }
41 .pkglist td:nth-child(1) a, .pkglist td:nth-child(2),
42 .filelist td:nth-child(1) a, .filelist td:nth-child(2) {
43 white-space: nowrap;
44 overflow: hidden;
45 text-overflow: ellipsis; -o-text-overflow: ellipsis;
46 }
48 .filelist td:nth-child(2) {
49 max-width: 30em;
50 }
52 #actions { overflow: auto; }
54 a.pages {
55 padding: 0.5ex;
56 margin: 0.5ex 0;
57 border: 1px solid #AAA;
58 width: 3ex;
59 display: inline-block;
60 text-align: center;
61 }
62 a.pages:hover {
63 border: 1px solid #F94;
64 background: #F94;
65 color: black;
66 }
67 a.pages.current, a.pages.current:hover {
68 font-weight: bold;
69 border: 1px solid #07F;
70 background: #07F;
71 color: #eee;
72 }