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.
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.06 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      /* 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  /* Post body links */
093  .postlink {
094      text-decoration: none;
095      border-bottom: 1px solid transparent;
096      padding-bottom: 0;
097  }
098   
099  .postlink:hover {
100      text-decoration: none;
101  }
102   
103  .signature a, .signature a:hover {
104      border: none;
105      text-decoration: underline;
106  }
107   
108  /* Profile links */
109  .postprofile a, .postprofile dt.author a {
110      font-weight: bold;
111      text-decoration: none;
112  }
113   
114  .postprofile a:hover, .postprofile dt.author a:hover {
115      text-decoration: underline;
116  }
117   
118  /* Profile searchresults */
119  .search .postprofile a {
120      text-decoration: none;
121      font-weight: normal;
122  }
123   
124  .search .postprofile a:hover {
125      text-decoration: underline;
126  }
127   
128  .top {
129      font-size: 12px;
130      text-decoration: none;
131      margin-top: 10px;
132  }
133   
134  /* Back to top of page */
135  .back2top {
136      clear: both;
137  }
138   
139  .back2top .top {
140      float: right;
141      margin-right: -10px;
142      margin-top: 0;
143  }
144   
145  /* Arrow links  */
146   
147  .arrow-up {
148      padding-left: 10px;
149      text-decoration: none;
150      border-bottom-width: 0;
151  }
152   
153  .arrow-up:hover {
154   
155  }
156   
157  .arrow-down {
158      padding-right: 10px;
159  }
160   
161  .arrow-down:hover {
162   
163  }
164   
165  .arrow-left:hover {
166      text-decoration: none;
167  }
168   
169  .arrow-right:hover {
170      text-decoration: none;
171  }
172   
173  /* invisible skip link, used for accessibility  */
174  .skiplink {
175      position: absolute;
176      left: -999px;
177      width: 990px;
178  }
179   
180  /* Feed icon in forumlist_body.html */
181  a.feed-icon-forum {
182      float: right;
183      margin: 3px;
184  }
185   
186  a.anchor {
187      display: block;
188  }
189