mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-30 11:40:08 +02:00
[ticket/14865] Fix all fixable linting issues
PHPBB3-14865
This commit is contained in:
@@ -3,13 +3,13 @@
|
||||
|
||||
/* Links adjustment to correctly display an order of rtl/ltr mixed content */
|
||||
a {
|
||||
direction: ltr;
|
||||
unicode-bidi: embed;
|
||||
text-decoration: none;
|
||||
|
||||
/* we use links inline more often then not so to address several bugs with
|
||||
IE and some other browsers we render all links as inlineblock by default */
|
||||
display: inline-block;
|
||||
|
||||
direction: ltr;
|
||||
unicode-bidi: embed;
|
||||
}
|
||||
|
||||
/* Coloured usernames */
|
||||
@@ -20,11 +20,15 @@ a {
|
||||
}
|
||||
|
||||
/* Links on gradient backgrounds */
|
||||
.forumbg .header a, .forabg .header a, th a {
|
||||
.forumbg .header a,
|
||||
.forabg .header a,
|
||||
th a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.forumbg .header a:hover, .forabg .header a:hover, th a:hover {
|
||||
.forumbg .header a:hover,
|
||||
.forabg .header a:hover,
|
||||
th a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
@@ -33,15 +37,13 @@ a {
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 3px 0 0 3px;
|
||||
display: none;
|
||||
margin-top: -20px;
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
right: 0;
|
||||
z-index: 2;
|
||||
display: none;
|
||||
box-sizing: border-box;
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
.dropdown-extended li:hover a.mark_read {
|
||||
@@ -53,12 +55,14 @@ a {
|
||||
}
|
||||
|
||||
.jumpbox-cat-link,
|
||||
.jumpbox-forum-link { font-weight: bold; }
|
||||
.jumpbox-forum-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
/* Links for forum/topic lists */
|
||||
a.forumtitle {
|
||||
font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
|
||||
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
@@ -69,7 +73,7 @@ a.forumtitle:hover {
|
||||
}
|
||||
|
||||
a.topictitle {
|
||||
font-family: "Trebuchet MS", Helvetica, Arial, Sans-serif;
|
||||
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
@@ -100,25 +104,28 @@ a.lastsubject:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.signature a, .signature a:hover {
|
||||
border: none;
|
||||
.signature a,
|
||||
.signature a:hover {
|
||||
text-decoration: underline;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Profile links */
|
||||
.postprofile a, .postprofile dt.author a {
|
||||
.postprofile a,
|
||||
.postprofile dt.author a {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.postprofile a:hover, .postprofile dt.author a:hover {
|
||||
.postprofile a:hover,
|
||||
.postprofile dt.author a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Profile searchresults */
|
||||
.search .postprofile a {
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.search .postprofile a:hover {
|
||||
@@ -138,20 +145,20 @@ a.lastsubject:hover {
|
||||
|
||||
.back2top .top {
|
||||
float: right;
|
||||
margin-right: -10px;
|
||||
margin-top: 0;
|
||||
margin-right: -10px;
|
||||
}
|
||||
|
||||
/* Arrow links */
|
||||
|
||||
.arrow-up {
|
||||
padding-left: 10px;
|
||||
text-decoration: none;
|
||||
border-bottom-width: 0;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.arrow-up:hover {
|
||||
|
||||
/* add hover styles here */
|
||||
}
|
||||
|
||||
.arrow-down {
|
||||
@@ -159,7 +166,7 @@ a.lastsubject:hover {
|
||||
}
|
||||
|
||||
.arrow-down:hover {
|
||||
|
||||
/* add hover styles here */
|
||||
}
|
||||
|
||||
.arrow-left:hover {
|
||||
|
Reference in New Issue
Block a user