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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

links.css

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 3.61 KiB


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  }
010   
011  a:hover    { text-decoration: underline; }
012   
013  /* Coloured usernames */
014  .username-coloured {
015      font-weight: bold;
016      display: inline !important;
017      padding: 0 !important;
018  }
019   
020  /* Links on gradient backgrounds */
021  .forumbg .header a, .forabg .header a, th a {
022      text-decoration: none;
023  }
024   
025  .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
026      text-decoration: underline;
027  }
028   
029  /* Navigation bar links */
030  li.breadcrumbs span:first-child > a {
031      display: inline-block;
032      padding-left: 17px;
033  }
034   
035  /* Notification mark read link */
036  .dropdown-extended a.mark_read {
037      background-position: center center;
038      background-repeat: no-repeat;
039      border-radius: 3px 0 0 3px;
040      display: none;
041      margin-top: -20px;
042      position: absolute;
043      z-index: 2;
044      right: 0;
045      top: 50%;
046      width: 30px;
047      height: 40px;
048      -webkit-box-sizing: border-box;
049      -moz-box-sizing: border-box;
050      box-sizing: border-box;
051  }
052   
053  .dropdown-extended li:hover a.mark_read {
054      display: block;
055  }
056   
057  .dropdown-extended a.mark_read:hover {
058      width: 40px;
059  }
060   
061  /* Links for forum/topic lists */
062  a.forumtitle {
063      font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
064      font-size: 1.2em;
065      font-weight: bold;
066      text-decoration: none;
067  }
068   
069  a.forumtitle:hover {
070      text-decoration: underline;
071  }
072   
073  a.topictitle {
074      font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
075      font-size: 1.2em;
076      font-weight: bold;
077      text-decoration: none;
078  }
079   
080  a.topictitle:hover {
081      text-decoration: underline;
082  }
083   
084  a.lastsubject {
085      font-weight: bold;
086      text-decoration: none;
087  }
088   
089  a.lastsubject:hover {
090      text-decoration: underline;
091  }
092   
093  /* Post body links */
094  .postlink {
095      text-decoration: none;
096      border-bottom: 1px solid transparent;
097      padding-bottom: 0;
098  }
099   
100  .postlink:hover {
101      text-decoration: none;
102  }
103   
104  .signature a, .signature a:hover {
105      border: none;
106      text-decoration: underline;
107  }
108   
109  /* Profile links */
110  .postprofile a, .postprofile dt.author a {
111      font-weight: bold;
112      text-decoration: none;
113  }
114   
115  .postprofile a:hover, .postprofile dt.author a:hover {
116      text-decoration: underline;
117  }
118   
119  /* Profile searchresults */
120  .search .postprofile a {
121      text-decoration: none;
122      font-weight: normal;
123  }
124   
125  .search .postprofile a:hover {
126      text-decoration: underline;
127  }
128   
129  /* Back to top of page */
130  .back2top {
131      clear: both;
132      height: 11px;
133      text-align: right;
134  }
135   
136  a.top {
137      background: none no-repeat top left;
138      text-decoration: none;
139      width: 11px;
140      height: 11px;
141      display: block;
142      float: right;
143      overflow: hidden;
144      letter-spacing: 1000px;
145      text-indent: 11px;
146  }
147   
148  a.top2 {
149      background: none no-repeat 0 50%;
150      text-decoration: none;
151      padding-left: 15px;
152  }
153   
154  /* Arrow links  */
155  a.arrow-up        { background: none no-repeat left center; }
156  a.arrow-down        { background: none no-repeat right center; }
157  a.arrow-left        { background: none no-repeat 3px 60%; }
158  a.arrow-right        { background: none no-repeat 95% 60%; }
159   
160  a.arrow-up {
161      padding-left: 10px;
162      text-decoration: none;
163      border-bottom-width: 0;
164  }
165   
166  a.arrow-up:hover {
167      background-position: left top;
168  }
169   
170  a.arrow-down {
171      padding-right: 10px;
172  }
173   
174  a.arrow-down:hover {
175      background-position: right bottom;
176      text-decoration: none;
177  }
178   
179  a.arrow-left {
180      padding-left: 12px;
181  }
182   
183  a.arrow-left:hover {
184      text-decoration: none;
185      background-position: 0 60%;
186  }
187   
188  a.arrow-right {
189      padding-right: 12px;
190  }
191   
192  a.arrow-right:hover {
193      text-decoration: none;
194      background-position: 100% 60%;
195  }
196   
197  /* invisible skip link, used for accessibility  */
198  .skiplink {
199      position: absolute;
200      left: -999px;
201      width: 990px;
202  }
203   
204  /* Feed icon in forumlist_body.html */
205  a.feed-icon-forum {
206      float: right;
207      margin: 3px;
208  }
209   
210  a.anchor {
211      display: block;
212  }
213