equal
deleted
inserted
replaced
|
1 /* styles for access control forms) |
|
2 * |
|
3 * :organization: Logilab |
|
4 * :copyright: 2003-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
|
5 * :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
|
6 */ |
|
7 |
|
8 /******************************************************************************/ |
|
9 /* security edition form (views/management.py) */ |
|
10 /******************************************************************************/ |
|
11 |
|
12 table.schemaInfo { |
|
13 margin: 1ex 1em; |
|
14 text-align: left; |
|
15 border: 1px solid black; |
|
16 border-collapse: collapse; |
|
17 } |
|
18 |
|
19 table.schemaInfo th, |
|
20 table.schemaInfo td { |
|
21 padding: 0em 1em; |
|
22 border: 1px solid black; |
|
23 } |
|
24 |
|
25 /******************************************************************************/ |
|
26 /* user groups edition form (views/euser.py) */ |
|
27 /******************************************************************************/ |
|
28 |
|
29 table#groupedit { |
|
30 margin: 1ex 1em; |
|
31 text-align: left; |
|
32 border: 1px solid black; |
|
33 border-collapse: collapse; |
|
34 } |
|
35 |
|
36 table#groupedit th, |
|
37 table#groupedit td { |
|
38 padding: 0.5em 1em; |
|
39 } |
|
40 |
|
41 table#groupedit tr { |
|
42 border-bottom: 1px solid black; |
|
43 } |
|
44 |
|
45 table#groupedit tr.nogroup { |
|
46 border: 1px solid red; |
|
47 margin: 1px; |
|
48 } |
|
49 |
|
50 table#groupedit td { |
|
51 text-align: center; |
|
52 padding: 0.5em; |
|
53 } |
|
54 |