1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-24 01:03:05 +02:00

[ticket/15115] Fix errors

PHPBB3-15115
This commit is contained in:
hanakin
2017-03-09 16:35:28 -05:00
parent 2ca1402476
commit ec71279a77
16 changed files with 340 additions and 176 deletions

View File

@@ -4,6 +4,7 @@
These style definitions are IE 8 & 9 only.
They are required due to the poor CSS support in IE browsers.
/* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */
@@ -27,7 +28,7 @@ dd label input {
height: 20px\9;
}
/* IE8 often can't handle max-width in %, so we use px instead */
/* IE8 often can"t handle max-width in %, so we use px instead */
.postprofile .avatar img {
max-width: 150px\9;
}
@@ -45,14 +46,16 @@ dd label input {
.headerbar,
.forumbg {
background-image: url('./images/bg_header.gif');
background-image: url("./images/bg_header.gif");
}
.forabg {
background-image: url('./images/bg_list.gif');
background-image: url("./images/bg_list.gif");
}
.tabs .tab > a {
border-radius: 0;
}
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */