Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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-comment .inputbox {
19 resize: vertical;
20 width: 100%;
21 }
22
23 .attach-filesize {
24 width: 15%;
25 }
26
27 .attach-status {
28 width: 5%;
29 }
30
31 .attach-filesize, .attach-status {
32 text-align: center;
33 }
34
35 .attach-controls {
36 display: inline-block;
37 float: right;
38 }
39
40 .nojs .file-inline-bbcode {
41 display: none;
42 }
43
44 .file-total-progress {
45 height: 2px;
46 display: block;
47 position: relative;
48 margin: 4px -10px -6px -10px;
49 }
50
51 .file-progress {
52 background-color: #CCCCCC;
53 display:inline-block;
54 height: 8px;
55 width: 50px;
56 }
57
58 .file-progress-bar, .file-total-progress-bar {
59 background-color: green;
60 display: block;
61 height: 100%;
62 width: 0;
63 }
64
65 .file-status.file-working {
66 background: url('./images/plupload/throbber.gif');
67 }
68
69 .file-status.file-uploaded {
70 background: url('./images/plupload/done.gif');
71 }
72
73 .file-status.file-error {
74 background: url('./images/plupload/error.gif');
75 }
76
77 .file-status {
78 display: inline-block;
79 height: 16px;
80 width: 16px;
81 }
82
83 .file-name {
84 max-width: 65%;
85 vertical-align: bottom;
86 }
87