source: extensions/Password_Policy/admin/template/pp.css @ 27179

Last change on this file since 27179 was 27179, checked in by Eric, 10 years ago

Piwigo 2.6 compatibility:
Users management (users display, password renewal and unlocking accounts) recoded in plugin's admin panel

File size: 2.3 KB
Line 
1/* PP instructions */
2li {
3  margin-bottom: 15px;
4}
5
6label {
7    cursor: pointer;
8    display: list-item;
9    list-style: none outside none;
10}
11
12/* jQuery cluetip instructions */
13label.cluetip
14{
15  display: block;
16  font-weight: bold;
17  margin-bottom: 5px;
18}
19
20textarea.pp_textfields
21{
22  width: 70%;
23}
24
25table.table2 {
26        border: 1px solid #111;
27        margin: 1em auto;
28        padding: 0;
29  width: 97%;
30}
31
32/* ******************************* */
33/* jQuery tablesorter instructions */
34/* ******************************* */
35/* ******************************* */
36/* jQuery tablesorter instructions */
37/* ******************************* */
38
39/*table.tablesorter tbody tr.normal-row td {
40  background: #111111; 
41  color: #666666;
42}
43table.tablesorter tbody tr.alt-row td {
44  background: #222222;
45  color: #666666;
46}*/
47
48tr.tablesorter-headerRow, throw
49{
50cursor:pointer;
51text-align:center;
52}
53
54th.tablesorter-header
55{
56background-image:url("./icons/bg.png");
57background-position:right center;
58background-repeat:no-repeat;
59cursor:pointer;
60}
61
62th.tablesorter-headerDesc
63{
64background-image:url("./icons/desc.png");
65}
66
67th.tablesorter-headerAsc
68{
69background-image:url("./icons/asc.png");
70}
71
72th.sorter-false {
73        background-image: none;
74}
75
76
77
78/* ************************************* */
79/* jQuery tablesorter pager instructions */
80/* ************************************* */
81
82.pager{
83  text-align:center;
84}
85
86/* pager wrapper, div */
87.tablesorter-pager {
88  padding: 5px;
89}
90/* pager wrapper, in thead/tfoot */
91td.tablesorter-pager {
92  background-color: #e6eeee;
93  margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */
94}
95/* pager navigation arrows */
96.tablesorter-pager img {
97  vertical-align: middle;
98  margin-right: 2px;
99  cursor: pointer;
100}
101
102#pager img {
103  margin-bottom: -3px;
104}
105
106/* pager output text */
107.tablesorter-pager .pagedisplay {
108  padding: 0 5px 0 5px;
109  width: 50px;
110  text-align: center;
111}
112
113
114/* pager element reset (needed for bootstrap) */
115.tablesorter-pager select {
116  margin: 0;
117  padding: 0;
118}
119
120/*** css used when "updateArrows" option is true ***/
121/* the pager itself gets a disabled class when the number of rows is less than the size */
122.tablesorter-pager.disabled {
123  display: none;
124}
125/* hide or fade out pager arrows when the first or last row is visible */
126.tablesorter-pager .disabled {
127  /* visibility: hidden */
128  opacity: 0.5;
129  filter: alpha(opacity=50);
130  cursor: default;
131}
Note: See TracBrowser for help on using the repository browser.