1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 19:20:23 +02:00

Merge pull request #5005 from hanakin/ticket/15404

[ticket/15404] autoprefix browser compatibility
This commit is contained in:
Marc Alexander
2017-11-04 14:46:30 +01:00
committed by GitHub
7 changed files with 97 additions and 14 deletions

View File

@@ -69,6 +69,7 @@ ul.topiclist.two-columns dt .list-inner {
ul.topiclist dd {
border-left: 1px solid transparent;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 4px 0;
}
@@ -135,6 +136,7 @@ li.header dt .list-inner {
}
li.header dd {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-left: 1px;
}
@@ -308,6 +310,7 @@ dd.option {
}
.postbody img.postimage {
-webkit-box-sizing: border-box;
box-sizing: border-box;
max-width: 100%;
}
@@ -567,6 +570,7 @@ blockquote .codebox {
border: 1px dashed transparent;
float: left;
clear: left;
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: auto;
max-width: 100%;
@@ -646,6 +650,7 @@ dl.file dd {
dl.thumbnail img {
border: 1px solid transparent;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 3px;
}