[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/styles/prosilver/theme/ -> links.css (source)

   1  /* Link Styles
   2  ---------------------------------------- */
   3  
   4  /* Links adjustment to correctly display an order of rtl/ltr mixed content */
   5  a {
   6      direction: ltr;
   7      unicode-bidi: embed;
   8      text-decoration: none;
   9  }
  10  
  11  a:hover    { text-decoration: underline; }
  12  
  13  /* Coloured usernames */
  14  .username-coloured {
  15      font-weight: bold;
  16      display: inline !important;
  17      padding: 0 !important;
  18  }
  19  
  20  /* Links on gradient backgrounds */
  21  .forumbg .header a, .forabg .header a, th a {
  22      text-decoration: none;
  23  }
  24  
  25  .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
  26      text-decoration: underline;
  27  }
  28  
  29  /* Navigation bar links */
  30  li.breadcrumbs span:first-child > a {
  31      display: inline-block;
  32      padding-left: 17px;
  33  }
  34  
  35  /* Notification mark read link */
  36  .dropdown-extended a.mark_read {
  37      background-position: center center;
  38      background-repeat: no-repeat;
  39      border-radius: 3px 0 0 3px;
  40      display: none;
  41      margin-top: -20px;
  42      position: absolute;
  43      z-index: 2;
  44      right: 0;
  45      top: 50%;
  46      width: 30px;
  47      height: 40px;
  48      -webkit-box-sizing: border-box;
  49      -moz-box-sizing: border-box;
  50      box-sizing: border-box;
  51  }
  52  
  53  .dropdown-extended li:hover a.mark_read {
  54      display: block;
  55  }
  56  
  57  .dropdown-extended a.mark_read:hover {
  58      width: 40px;
  59  }
  60  
  61  /* Links for forum/topic lists */
  62  a.forumtitle {
  63      font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
  64      font-size: 1.2em;
  65      font-weight: bold;
  66      text-decoration: none;
  67  }
  68  
  69  a.forumtitle:hover {
  70      text-decoration: underline;
  71  }
  72  
  73  a.topictitle {
  74      font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
  75      font-size: 1.2em;
  76      font-weight: bold;
  77      text-decoration: none;
  78  }
  79  
  80  a.topictitle:hover {
  81      text-decoration: underline;
  82  }
  83  
  84  a.lastsubject {
  85      font-weight: bold;
  86      text-decoration: none;
  87  }
  88  
  89  a.lastsubject:hover {
  90      text-decoration: underline;
  91  }
  92  
  93  /* Post body links */
  94  .postlink {
  95      text-decoration: none;
  96      border-bottom: 1px solid transparent;
  97      padding-bottom: 0;
  98  }
  99  
 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  }


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1