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 |
links.css
001 /* Link Styles
002 ---------------------------------------- */
003
004 /* Links adjustment to correctly display an order of rtl/ltr mixed content */
005 a {
006 direction: ltr;
007 unicode-bidi: embed;
008 text-decoration: none;
009 /* we use links inline more often then not so to address several bugs with
010 IE and some other browsers we render all links as inlineblock by default */
011 display: inline-block;
012
013 }
014
015 /* Coloured usernames */
016 .username-coloured {
017 font-weight: bold;
018 display: inline !important;
019 padding: 0 !important;
020 }
021
022 /* Links on gradient backgrounds */
023 .forumbg .header a, .forabg .header a, th a {
024 text-decoration: none;
025 }
026
027 .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
028 text-decoration: underline;
029 }
030
031 /* Notification mark read link */
032 .dropdown-extended a.mark_read {
033 background-position: center center;
034 background-repeat: no-repeat;
035 border-radius: 3px 0 0 3px;
036 display: none;
037 margin-top: -20px;
038 position: absolute;
039 z-index: 2;
040 right: 0;
041 top: 50%;
042 -webkit-box-sizing: border-box;
043 -moz-box-sizing: border-box;
044 box-sizing: border-box;
045 }
046
047 .dropdown-extended li:hover a.mark_read {
048 display: block;
049 }
050
051 .dropdown-extended a.mark_read:hover {
052 width: 50px;
053 }
054
055 .jumpbox-cat-link,
056 .jumpbox-forum-link { font-weight: bold; }
057
058
059 /* Links for forum/topic lists */
060 a.forumtitle {
061 font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
062 font-size: 1.2em;
063 font-weight: bold;
064 text-decoration: none;
065 }
066
067 a.forumtitle:hover {
068 text-decoration: underline;
069 }
070
071 a.topictitle {
072 font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
073 font-size: 1.2em;
074 font-weight: bold;
075 text-decoration: none;
076 display: inline;
077 }
078
079 a.topictitle:hover {
080 text-decoration: underline;
081 }
082
083 a.lastsubject {
084 font-weight: bold;
085 text-decoration: none;
086 }
087
088 a.lastsubject:hover {
089 text-decoration: underline;
090 }
091
092 .row-item a:hover {
093 text-decoration: none;
094 }
095
096 .row-item .forumtitle:hover,
097 .row-item .topictitle:hover,
098 .row-item .lastsubject:hover,
099 .row-item .subforum:hover,
100 .row-item a.username:hover,
101 .row-item a.username-coloured:hover {
102 text-decoration: underline;
103 }
104
105 /* Post body links */
106 .postlink {
107 text-decoration: none;
108 border-bottom: 1px solid transparent;
109 padding-bottom: 0;
110 }
111
112 .postlink:hover {
113 text-decoration: none;
114 }
115
116 .signature a, .signature a:hover {
117 border: none;
118 text-decoration: underline;
119 }
120
121 /* Profile links */
122 .postprofile a, .postprofile dt.author a {
123 font-weight: bold;
124 text-decoration: none;
125 }
126
127 .postprofile a:hover, .postprofile dt.author a:hover {
128 text-decoration: underline;
129 }
130
131 /* Profile searchresults */
132 .search .postprofile a {
133 text-decoration: none;
134 font-weight: normal;
135 }
136
137 .search .postprofile a:hover {
138 text-decoration: underline;
139 }
140
141 .top {
142 font-size: 12px;
143 text-decoration: none;
144 margin-top: 10px;
145 }
146
147 /* Back to top of page */
148 .back2top {
149 clear: both;
150 }
151
152 .back2top .top {
153 float: right;
154 margin-right: -10px;
155 margin-top: 0;
156 }
157
158 /* Arrow links */
159
160 .arrow-up {
161 padding-left: 10px;
162 text-decoration: none;
163 border-bottom-width: 0;
164 }
165
166 .arrow-up:hover { }
167
168 .arrow-down {
169 padding-right: 10px;
170 }
171
172 .arrow-down:hover { }
173
174 .arrow-left:hover {
175 text-decoration: none;
176 }
177
178 .arrow-right:hover {
179 text-decoration: none;
180 }
181
182 /* invisible skip link, used for accessibility */
183 .skiplink {
184 position: absolute;
185 left: -999px;
186 width: 990px;
187 }
188
189 /* Feed icon in forumlist_body.html */
190 a.feed-icon-forum {
191 float: right;
192 margin: 3px;
193 }
194
195 a.anchor {
196 display: block;
197 }
198