add some additional plugin config sequence_item styles

The first will add a better width to plugin sequence_item(s), covering all screen resolutions, and sets auto margin to center on bigger screens, where sequence_container grows greater than inner 96%.
The seconds breaks sequence_item text in its own inline box on screens >= 768px.

This is well tested with plugins containing sequence_item movers eg entryproperties plugin.
This commit is contained in:
Ian 2014-05-01 13:24:18 +02:00
parent 2307e892a9
commit 744a0fc32a

View File

@ -2055,6 +2055,17 @@ label .perm_name,
padding: .25em;
margin: 0 0 .25em;
}
.configure_plugin .configuration_group .sequence_item {
width: 96%;
margin: auto;
}
@media screen and (min-width: 768px) {
.configure_plugin .configuration_group .sequence_item span {
display: inline-block;
width: 70%;
vertical-align: top;
}
}
#template_select h3,
.media_file h3 {