Open styles/###/theme/colours.css
Find This may be a partial find and not the whole line
Code: Select all
.attachbox {
background-color: #FFFFFF;
border-color: #C9D2D8;
}Replace with Replace the preceding lines with the following
Code: Select all
.attachbox {
background: inherit;
border-color: #C9D2D8;
}Find This may be a partial find and not the whole line
Code: Select all
Code: Select all
.attachbox {
float: left;
width: auto;
margin: 5px 5px 5px 0;
padding: 6px;
background-color: #FFFFFF;
border: 1px dashed #d8d8d8;
clear: left;
}Replace with Replace the preceding lines with the following
Code: Select all
.attachbox {
float: left;
width: auto;
margin: 5px 5px 5px 0;
padding: 6px;
background: inherit;
border: 1px dashed #d8d8d8;
clear: left;
}