source: extensions/Register_FluxBB/admin/template/register_fluxbb.css @ 24198

Last change on this file since 24198 was 24198, checked in by Eric, 11 years ago

Fix a FluxBB issue (FluxBB mod) : When a new user registers, "Newest registered user" does not show him.

Tips in language/en_UK/plugin.lang.php and language/fr_FR/plugin.lang.php updated to give the way to apply the above fix.

  • 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  width: auto;
13}
14
15.warning {
16  color: #f22;
17  background-color: #ffd5dc;
18}
19
20.info{
21  color: #0a0;
22  background-color:#c2f5c2;
23  text-align: left;
24  margin: 5px;
25  padding: 50px 50px 10px 10px;
26  font-weight:bold;
27  background-repeat: no-repeat;
28  background-position: 5px 5px;
29  padding: 5px 60px 0pt 60px;
30  min-height: 20px;
31}
32
33.mod{
34  color: #f22;
35  background-color: #ffd5dc;
36  text-align: left;
37  margin: 5px;
38  padding: 50px 50px 10px 10px;
39  font-weight:bold;
40  background-repeat: no-repeat;
41  background-position: 5px 5px;
42  padding: 5px 60px 0pt 60px;
43  min-height: 20px;
44}
45
46/* Bloc expand-collapse instructions */
47.instructionBlock
48{
49  border: 1px solid #666;
50  margin: 5px;
51  overflow: hidden;
52}
53
54.instructionBlockHeaderCollapsed, .instructionBlockHeaderExpanded
55{
56  background-color: #111;
57  background-position: 15px center;
58  background-repeat: no-repeat;
59  color: #ff3363;
60  cursor: pointer;
61  font-size: 110%;
62  overflow: hidden;
63  padding: 8px 41px;
64  text-align: left;
65}
66
67.instructionBlockHeaderCollapsed span, .instructionBlockHeaderExpanded span
68{
69  border-bottom: none;
70}
71
72.instructionBlockContent
73{
74  padding: 0 15px 15px;
75}
Note: See TracBrowser for help on using the repository browser.