tazpkg diff tazpanel/pkgs.css @ rev 718

pkgs.cgi: new package' links (less HTML, more CSS); add pkgs.css; transition to packages.info.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 18 03:43:49 2014 +0200 (2014-12-18)
parents
children 474681a166a8
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tazpanel/pkgs.css	Thu Dec 18 03:43:49 2014 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +/* links classes:
     1.5 + *   pkg   - package (not installed);
     1.6 + *   pkgi  - package (installed);
     1.7 + *   pkgib - package (installed and blocked);
     1.8 + *   w     - web site
     1.9 + *
    1.10 + * you can style links using icons and/or color
    1.11 + */
    1.12 +
    1.13 +a.pkg {
    1.14 +	background: url(images/tazpkg.png) no-repeat left; }
    1.15 +a.pkgi, a.pkgib {
    1.16 +	background: url(images/tazpkg-installed.png) no-repeat left; }
    1.17 +/*
    1.18 +a.pkgi {
    1.19 +	color: green; }
    1.20 +*/
    1.21 +a.pkgib {
    1.22 +	color: red; }
    1.23 +a.w {
    1.24 +	background: url(images/browser.png) no-repeat left; }
    1.25 +
    1.26 +a.pkg, a.pkgi, a.pkgib, a.w {
    1.27 +	margin: 0; padding: 0 0 0 17px;
    1.28 +	min-height: 16px; min-width: 16px;
    1.29 +	display: inline-block; }
    1.30 +
    1.31 +
    1.32 +td.pkg {
    1.33 +	white-space: nowrap; }