
/* hide FeinCMS internal fields (instead of the no-longer-used template filter */
.ui-sortable .field-region, .ui-sortable .field-ordering {
	display: none;
}

#main {
    clear: none;
    padding-top: 0px;
}


#suit-center .panel h2 {
    color: #333;
    font-size: 13px;
    line-height: 12px;
    margin-left: 0;
    text-shadow: none;
}

.order-machine fieldset.module {
	margin-top: 10px;
}

.order-machine fieldset.module > h2 {
    padding: 7px 5px 7px 17px;
    border: 1px solid #e5e5e5;
    background: #bbb url('/static/suit/img/drag-handle.png') 4px center no-repeat;
}

.order-machine fieldset.module > h2 > span.collapse{
    color: #0088cc;
}

.order-machine fieldset.module > h2 > span.collapse:hover{
    color: #005580;
}

/* draggable */
.order-machine fieldset.highlight {
    border: 1px solid #e5e5e5;
    background: #bbb url('/static/suit/img/drag-handle.png') 4px center no-repeat;
    margin: 10px 0;
}

.navi_tab {
    float: none;
    border-bottom:none;
    min-width: none;
    margin-top:none;
    background-image:none;
    color: #333333;
    background: none;

    display:inline-block;
    padding:8px 20px 7px;
    -moz-background-clip: padding;
    -webkit-background-clip:padding-box;
    background-clip:padding-box;
    -webkit-border-top-left-radius:5px;
    -moz-border-radius-topleft:5px;
    border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    -moz-border-radius-topright:5px;
    border-top-right-radius:5px;
    box-shadow:inset 1px 1px 0 #fff;
    text-decoration:none;
    color:#08c;
    font-size:13px
}

.navi_tab.tab_active {
    color: #333;
    cursor: default;
    margin-bottom: -1px;
    background-color: #EDEFF1;
}


/* 'recover deleted page' button */
div.toolbar-content > div.object-tools > li {
    list-style: none;
    display: inline;
}

/* Disable move control between feincms regions */
.move-control {
	display: none !important;
}

/* for the homepage admin - see home/admin.py */
#id_images_from {
    height: 450px;
}

/* for short urls */
.short-url-input {
    width:162px;
    overflow:hidden;
}

.clipboard-icon {
    width: 20px;
}

/* Override Suit's column layout which uses strange hacks with negative margins */
/* Causes a bug in admin sidebar in newer versions of Chrome on Windows */
/* Use Flexbox instead */

.suit-columns {
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

#suit-left,
#suit-center {
    float: none;
    position: static;
}

#suit-left {
    margin-left: 0;
    -ms-flex: 0 0 200px;
    -webkit-flex: 0 0 200px;
    flex: 0 0 200px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

#suit-center {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}








