tazpkg view tazpanel/pkgs.css @ rev 740

pkgs.cgi: fix regressions, "All categories" and "All tags" in the sidebar are works now.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Dec 31 17:08:23 2014 +0200 (2014-12-31)
parents c214f7081500
children c1b57681482e
line source
2 /* Sidebar menus */
4 #content-sidebar { margin: 20px 144px 20px 20px; }
6 #sidebar {
7 position: fixed;
8 top: 80px;
9 right: 5px;
10 width: 132px;
11 }
13 #sidebar h4 {
14 margin: 0;
15 font-size: 16px; color: #222;
16 text-align: center;
17 }
19 .select_wrap {
20 display: inline-block;
21 vertical-align: top;
22 overflow: hidden;
23 }
25 .select_wrap select {
26 padding: 5px;
27 margin:-5px -20px -5px -5px;
28 width: 157px;
29 font-size: small;
30 }
32 select option:nth-child(even) {
33 background-color: rgba(0,0,0,0.05);
34 }
36 #sidebar a {
37 display: inline-block;
38 padding: 0 0 0 0.5em; margin: 0;
39 color: #666;
40 font-size: small;
41 width: 100%;
42 }
46 /* links classes:
47 * pkg - package (not installed);
48 * pkgi - package (installed);
49 * pkgib - package (installed and blocked);
50 * w - web site
51 *
52 * you can style links using icons and/or color
53 */
55 a.pkg {
56 background: url(images/tazpkg.png) no-repeat left; }
57 a.pkgi, a.pkgib {
58 background: url(images/tazpkg-installed.png) no-repeat left; }
59 /*
60 a.pkgi {
61 color: green; }
62 */
63 a.pkgib {
64 color: red; }
65 a.w, .pkglist td:nth-child(4) a {
66 background: url(images/browser.png) no-repeat left; }
68 a.pkg, a.pkgi, a.pkgib, a.w, .pkglist td:nth-child(4) a {
69 margin: 0; padding: 0 0 0 17px;
70 min-height: 16px; min-width: 16px;
71 display: inline-block; }
74 .pkglist td:nth-child(1), .filelist td:nth-child(1) {
75 white-space: nowrap;
76 }
78 .pkglist td:nth-child(1) a, .filelist td:nth-child(1) a {
79 max-width: 12em;
80 }
82 .pkglist td:nth-child(2) {
83 max-width: 7em;
84 }
86 .pkglist td:nth-child(1) a, .pkglist td:nth-child(2),
87 .filelist td:nth-child(1) a, .filelist td:nth-child(2) {
88 white-space: nowrap;
89 overflow: hidden;
90 text-overflow: ellipsis; -o-text-overflow: ellipsis;
91 }
93 .filelist td:nth-child(2) {
94 max-width: 30em;
95 }
97 #actions { overflow: auto; }
99 a.pages {
100 padding: 0.5ex;
101 margin: 0.5ex 0;
102 border: 1px solid #AAA;
103 width: 3ex;
104 display: inline-block;
105 text-align: center;
106 }
107 a.pages:hover {
108 border: 1px solid #F94;
109 background: #F94;
110 color: black;
111 }
112 a.pages.current, a.pages.current:hover {
113 font-weight: bold;
114 border: 1px solid #07F;
115 background: #07F;
116 color: #eee;
117 }
119 a.tag1 { font-size: 0.9em; color: #678; }
120 a.tag2 { font-size: 1.0em; color: #444; }
121 a.tag3 { font-size: 1.1em; color: #16A; }
122 a.tag4 { font-size: 1.3em; color: #282; }
123 a.tag5 { font-size: 1.5em; color: #828; }
124 a.tag6 { font-size: 1.8em; color: #862; }
125 a.tag7 { font-size: 2.1em; color: #FA0; }
126 a.tag8 { font-size: 2.4em; color: #F00; }
127 a.tag1, a.tag2, a.tag3, a.tag4, a.tag5, a.tag6, a.tag7, a.tag8 {
128 display: inline-block;
129 white-space: nowrap;
130 vertical-align: middle;
131 padding: 0.2em 0.5em;
132 }
133 a.tag1:hover, a.tag2:hover, a.tag3:hover, a.tag4:hover, a.tag5:hover, a.tag6:hover, a.tag7:hover, a.tag8:hover {
134 outline: 1.5pt solid #FC8; }