CSS cosmetics
-
FYI: Connection-attribute checkboxes get somewhat distorted in chrome because of the following declaration on line 86 of admin/box.css:
.p2p-connections td input {
width: 100%;
}This is currently no problem in FF, but chrome actually stretches the checkbox and it somehow looks like a text input ??
The following declaration inserted after line 89 would fix that for modern browsers with good css3 support:
.p2p-connections td input[type=’checkbox’] {
width: auto;
}To savely address all broswers, you’d have to insert something like class=”checkbox” to the <input>-Tag and add the following css:
.p2p-connections td input.checkbox {
width: auto;
}many thanks for this fine plugin
from Salzburg,– Johannes
- The topic ‘CSS cosmetics’ is closed to new replies.