/************************* CSS pre-parsed by easydb ************************/

/**
* Styles for filebrowser in customrender
*
* FIXME: this should be removed from core when we have our new exporter in place
*/

/* path view (header) */
#filebrowserPath {
    width:502px;
    background: #888888;
    color: #ffffff;
}
#filebrowserPath span {
    display: block;
    padding: 5px;
}

/* back button in path view */
#filebrowserPath button.back {
    display:block;
    width: 100%;
    height: 30px;
    background: url(img/ico_folder_up_16.png) 3px center no-repeat #eeeeee;
    text-align: left;
    padding-left: 24px;
    border: none;
    border-left: solid 1px #888888;
    border-right: solid 1px #888888;
    cursor: pointer;
    margin: 0px;
}
#filebrowserPath button.back:hover {
    text-decoration: underline;
}

/* one line in filebrowser */
#filebrowser {
    width:500px;
    border: solid 1px #888888;
}

/* one line in filebrowser */
#filebrowser div {
    display:block;
    height:30px;
    line-height:30px;
    position:relative;
    background: #eeeeee;
    border-bottom: solid 1px #ffffff;
}

/* directory link entry */
#filebrowser div a {
    position:absolute;
    display:block;
    left:0px;
    top:0px;
    width:370px;
    height:30px;
    line-height:30px;
    background: #eeeeee;
    background: url(img/ico_folder_16.png) 3px center no-repeat;
    border-bottom: solid 1px #ffffff;
    text-decoration: none;
    padding-left: 24px;
}
#filebrowser div a:hover {
    text-decoration: underline;
}

/* generic button */
#filebrowser button {
    float:right;
    width:25px;
    height:25px;
    margin:2px 3px 0px 0px;
    background: center center no-repeat;
    border: none;
    font-size: 0px;
    cursor: pointer;
}

/* specific button images */
#filebrowser button.zip {
    background-image: url(img/ico_zip_folder_16.png);
}
#filebrowser button.delete {
    background-image: url(img/ico_remove_16.png);
}
#filebrowser button.load {
    background-image: url(img/ico_save_16.png);
}

/* file item */
#filebrowser span.file {
    padding-left: 3px;
}


