tazpkg view tazpanel/pkgs.css @ rev 739

pkgs.css: restore accidently removed styles.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Dec 31 15:50:27 2014 +0200 (2014-12-31)
parents a4c149977942
children 71a13a528ad0
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 input[type=submit] { display: none; }
38 #sidebar label {
39 display: inline-block;
40 padding: 0 0 0 0.5em; margin: 0;
41 color: #666;
42 font-size: small;
43 width: 100%;
44 }
46 #sidebar label:hover { color: #000; }
50 /* links classes:
51 * pkg - package (not installed);
52 * pkgi - package (installed);
53 * pkgib - package (installed and blocked);
54 * w - web site
55 *
56 * you can style links using icons and/or color
57 */
59 a.pkg {
60 background: url(images/tazpkg.png) no-repeat left; }
61 a.pkgi, a.pkgib {
62 background: url(images/tazpkg-installed.png) no-repeat left; }
63 /*
64 a.pkgi {
65 color: green; }
66 */
67 a.pkgib {
68 color: red; }
69 a.w, .pkglist td:nth-child(4) a {
70 background: url(images/browser.png) no-repeat left; }
72 a.pkg, a.pkgi, a.pkgib, a.w, .pkglist td:nth-child(4) a {
73 margin: 0; padding: 0 0 0 17px;
74 min-height: 16px; min-width: 16px;
75 display: inline-block; }
78 .pkglist td:nth-child(1), .filelist td:nth-child(1) {
79 white-space: nowrap;
80 }
82 .pkglist td:nth-child(1) a, .filelist td:nth-child(1) a {
83 max-width: 12em;
84 }
86 .pkglist td:nth-child(2) {
87 max-width: 7em;
88 }
90 .pkglist td:nth-child(1) a, .pkglist td:nth-child(2),
91 .filelist td:nth-child(1) a, .filelist td:nth-child(2) {
92 white-space: nowrap;
93 overflow: hidden;
94 text-overflow: ellipsis; -o-text-overflow: ellipsis;
95 }
97 .filelist td:nth-child(2) {
98 max-width: 30em;
99 }
101 #actions { overflow: auto; }
103 a.pages {
104 padding: 0.5ex;
105 margin: 0.5ex 0;
106 border: 1px solid #AAA;
107 width: 3ex;
108 display: inline-block;
109 text-align: center;
110 }
111 a.pages:hover {
112 border: 1px solid #F94;
113 background: #F94;
114 color: black;
115 }
116 a.pages.current, a.pages.current:hover {
117 font-weight: bold;
118 border: 1px solid #07F;
119 background: #07F;
120 color: #eee;
121 }
123 a.tag1 { font-size: 0.9em; color: #678; }
124 a.tag2 { font-size: 1.0em; color: #444; }
125 a.tag3 { font-size: 1.1em; color: #16A; }
126 a.tag4 { font-size: 1.3em; color: #282; }
127 a.tag5 { font-size: 1.5em; color: #828; }
128 a.tag6 { font-size: 1.8em; color: #862; }
129 a.tag7 { font-size: 2.1em; color: #FA0; }
130 a.tag8 { font-size: 2.4em; color: #F00; }
131 a.tag1, a.tag2, a.tag3, a.tag4, a.tag5, a.tag6, a.tag7, a.tag8 {
132 display: inline-block;
133 white-space: nowrap;
134 vertical-align: middle;
135 padding: 0.2em 0.5em;
136 }
137 a.tag1:hover, a.tag2:hover, a.tag3:hover, a.tag4:hover, a.tag5:hover, a.tag6:hover, a.tag7:hover, a.tag8:hover {
138 outline: 1.5pt solid #FC8; }