-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.css
116 lines (97 loc) · 2.61 KB
/
catalog.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
* Catalog
*
* The catalog plugin adds a catalog or webshop to Wolf CMS.
*
* @package Plugins
* @subpackage catalog
*
* @author Nic Wortel <[email protected]>
* @copyright Nic Wortel, 2012
* @version 0.1.0
*/
body#body_plugin_catalog div#content h1 {
margin-bottom: 20px;
}
body#body_plugin_catalog div.form-area {
margin: -20px;
}
body#body_plugin_catalog div#content table,
body#body_plugin_catalog div#content th,
body#body_plugin_catalog div#content td {
border: 1px solid #ddd;
vertical-align: top;
}
body#body_plugin_catalog div#content table {
width: 100%;
}
body#body_plugin_catalog div#content th {
background-color: #e6e6e6;
}
body#body_plugin_catalog div#content tr:nth-child(odd) {
background-color: #fff;
}
body#body_plugin_catalog div#content tr:nth-child(even) {
background-color: #f4f4f4;
}
body#body_plugin_catalog div#content th,
body#body_plugin_catalog div#content td {
padding: 2px 4px;
text-align: left;
}
body#body_plugin_catalog div#content td.label {
width: 180px;
}
/*body#body_plugin_catalog div#content th.sorted.ascending:after {
content: url("images/sort_up.png");
}
body#body_plugin_catalog div#content th.sorted.descending:after {
content: url("images/sort_down.png");
}*/
body#body_plugin_catalog div#content th a {
padding-right: 11px;
}
body#body_plugin_catalog div#content th.sorted.ascending a {
background-image:url('images/sort_up.png');
background-repeat:no-repeat;
background-position: right center;
}
body#body_plugin_catalog div#content th.sorted.descending a {
background-image:url('images/sort_down.png');
background-repeat:no-repeat;
background-position: right center;
}
body#body_plugin_catalog div#content th.number,
body#body_plugin_catalog div#content td.number {
width: 50px;
text-align: right;
}
body#body_plugin_catalog div#content th.number.long,
body#body_plugin_catalog div#content td.number.long {
width: 70px;
text-align: right;
}
body#body_plugin_catalog div#content th.price,
body#body_plugin_catalog div#content td.price {
width: 80px;
text-align: right;
}
body#body_plugin_catalog div#content th.icon,
body#body_plugin_catalog div#content td.icon {
width: 60px;
vertical-align: middle;
text-align: center;
}
body#body_plugin_catalog div#content td.label {
text-align: right;
}
body#body_plugin_catalog div#content td .not-applicable {
color: #bbb;
}
body#body_plugin_catalog div#content input.number {
text-align: right;
}
body#body_plugin_catalog div#content textarea {
width: 100% !important;
min-height: 200px;
}