1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/**
* CSS Overrides for the sidebar
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
*
* @package admin
*/
#TitleArea {
margin: 1ex;
padding: 0;
}
div.panelinfo {
margin: 1ex;
}
.left_col,
.right_col
{
float: none;
width: 100%;
clear: none;
overflow: visible;
margin: 0;
padding: 0;
}
.left_col fieldset,
.right_col fieldset {
margin: 1ex;
padding: 0 1ex 1ex 1ex;
}
fieldset.extracats {
padding: 0 0 0 1ex;
margin: 1ex;
overflow: visible;
}
div.extracats
{
height: auto;
overflow: visible;
padding: 0ex 1ex;
margin: 0ex;
}
.notes,
.extracatnote
{
display: none;
color: #f00;
}
span.line
{
white-space: normal;
display: block;
}
span.line input
{
width: 98%;
}
|