Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
plupload.css
01 #attach-panel-multi {
02 display: none;
03 margin-bottom: 1em;
04 }
05
06 #file-list td {
07 vertical-align: middle;
08 }
09
10 .attach-name {
11 width: 50%;
12 }
13
14 .attach-comment {
15 width: 30%;
16 }
17
18 .attach-filesize {
19 width: 15%;
20 }
21
22 .attach-status {
23 width: 5%;
24 }
25
26 .attach-filesize, .attach-status {
27 text-align: center;
28 }
29
30 .attach-controls {
31 display: inline-block;
32 float: right;
33 }
34
35 #attach-row-tpl, .nojs .file-inline-bbcode {
36 display: none;
37 }
38
39 #file-total-progress {
40 height: 2px;
41 display: block;
42 position: relative;
43 margin: 4px -10px -6px -10px;
44 }
45
46 .file-progress {
47 background-color: #CCCCCC;
48 display:inline-block;
49 height: 8px;
50 width: 50px;
51 }
52
53 .file-progress-bar, #file-total-progress-bar {
54 background-color: green;
55 display: block;
56 height: 100%;
57 width: 0;
58 }
59
60 .file-status.file-working {
61 background: url('./images/plupload/throbber.gif');
62 }
63
64 .file-status.file-uploaded {
65 background: url('./images/plupload/done.gif');
66 }
67
68 .file-status.file-error {
69 background: url('./images/plupload/error.gif');
70 }
71
72 .file-status {
73 display: inline-block;
74 height: 16px;
75 width: 16px;
76 }
77
78 .file-name {
79 max-width: 65%;
80 vertical-align: bottom;
81 }
82