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

Merge pull request #2037 from prototech/ticket/12080

[ticket/12080] Fix color palettes when responsive.
This commit is contained in:
Nathan Guse
2014-02-20 20:59:14 -06:00
4 changed files with 23 additions and 6 deletions

View File

@@ -1045,6 +1045,14 @@ table.styles td.users, table td.mark {
table.responsive.styles td:first-child > dfn, table.responsive td.actions > dfn {
display: none !important;
}
.horizontal-palette td:nth-child(2n), .vertical-palette tr:nth-child(2n) {
display: none;
}
.colour-palette a {
display: inline-block !important;
}
}
/* General form styles
@@ -1353,6 +1361,10 @@ fieldset dt {
border-left: 1px solid #CCCCCC;
}
fieldset #color_palette_placeholder {
padding-top: 0;
}
fieldset dd {
margin: 0 0 0 45%;
padding: 0 0 0 5px;
@@ -1419,6 +1431,10 @@ input:focus, textarea:focus {
width: auto;
}
fieldset .responsive-columns dt {
float: left;
}
.ltr fieldset dd {
padding-left: 20px;
}