[5606] | 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; |
---|
[10626] | 12 | width: auto; |
---|
[5606] | 13 | } |
---|
| 14 | |
---|
| 15 | .warning { |
---|
| 16 | color: #f22; |
---|
| 17 | background-color: #ffd5dc; |
---|
| 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; |
---|
[6294] | 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; |
---|
[6815] | 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; |
---|
[5606] | 82 | } |
---|