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