source: extensions/Register_PhpBB/admin/template/register_phpbb.css @ 7795

Last change on this file since 7795 was 7795, checked in by Eric, 13 years ago

Commit new release 2.1.a coded by Pierric

  • Property svn:eol-style set to LF
File size: 1.4 KB
Line 
1/**
2 * Informations box in administration
3 */
4.warning, .info{
5  margin: 5px;
6  padding: 50px 50px 10px 10px;
7  font-weight:bold;
8  background-repeat: no-repeat;
9  background-position: 5px 5px;
10  padding:15px 60px 0pt 60px;
11  min-height: 54px;
12}
13
14.warning {
15  color: #f22;
16  background-color: #ffd5dc;
17  background-image: url(icon/warning.png);
18}
19
20.info{
21  margin: 5px;
22  padding: 50px 50px 10px 10px;
23  font-weight:bold;
24  background-repeat: no-repeat;
25  background-position: 5px 5px;
26  padding: 5px 60px 0pt 60px;
27  min-height: 20px;
28}
29
30.info {
31  color: #0a0;
32  background-color:#c2f5c2;
33}
34
35.mod{
36  margin: 5px;
37  padding: 50px 50px 10px 10px;
38  font-weight:bold;
39  background-repeat: no-repeat;
40  background-position: 5px 5px;
41  padding: 5px 60px 0pt 60px;
42  min-height: 20px;
43}
44
45.mod {
46  color: #f22;
47  background-color: #ffd5dc;
48}
49
50/* Bloc expand-collapse instructions */
51.instructionBlockHeaderCollapsed, .instructionBlockHeaderExpanded
52{
53  background-color:#111;
54  background-position:15px center;
55  background-repeat:no-repeat;
56  color:#ff3363;
57  cursor:pointer;
58  font-size:110%;
59  overflow:hidden;
60  padding:8px 41px;
61  text-align: left;
62}
63
64.instructionBlockHeaderCollapsed span, .instructionBlockHeaderExpanded span
65{
66  border-bottom: none;
67}
68 
69.instructionBlockHeaderCollapsed
70{
71  background-image: url(./icon/expand.gif);
72}
73
74.instructionBlockHeaderExpanded
75{
76  background-image: url(./icon/collapse.gif);
77}
78
79.instructionBlockContent
80{
81  padding:0 15px 15px;
82}
Note: See TracBrowser for help on using the repository browser.