/* 

// =============================================================================
// File: synchi_ide.css
// Version: 1.1
// 
// Defines Synchi IDE styles
// ============================================================================

*/

#synchi_ide {
    width: 100%;
    height: 500px;
    background-color: white;
}

#synchi_ide.fullscreen {      
    position: fixed !important;
    left: 0px !important;
    top: 0px !important;
    z-index: 400 !important;
    height: 100% !important;
}

#synchi_ide.fullscreen table {
    height: 100% !important;
}

/* Editor */

#synchi_ide_editor {
    position: relative;
    left: 2px;
    top: 2px;
    height: 432px;
    /*width: 100%;*/
    right: 2px;
    overflow: auto;
    border: 1px solid #DFDFDF;
    background-color: #FAFAFA;
    overflow: hidden;
}

#synchi_ide_editor .synchi_ide_file {
    height: 100%;
    overflow: hidden;
    display: none;
}

#synchi_ide_editor .synchi_ide_file .CodeMirror {
    /*width: 100%;*/
    height: 100%;
}

#synchi_ide_editor .synchi_ide_file .CodeMirror-scroll {
    /*width: 100%;*/
    height: 100%;
}

#synchi_ide_editor .synchi_ide_file.image_preview {
    padding: 10px;
    overflow-y: scroll;
}

#synchi_ide_editor .synchi_ide_file.image_preview img {
    border: 2px solid whitesmoke;
    max-width: 500px;
}

#synchi_ide_editor_controls {
    text-align: right;
}

#synchi_ide_editor_controls a {
    margin-right: 5px;
}

#synchi_ide_editor_controls a img {
    -moz-opacity: 0.5;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

#synchi_ide_editor_controls a:hover img {
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

#synchi_ide_editor_controls a.synchi_spacer {
    cursor: default;
}

#synchi_ide_editor_controls a.synchi_spacer img {
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Tabs */

#synchi_ide_tabs {
    width: auto;
    overflow: hidden;
    margin-top: 6px;
    height: 25px;
}

#synchi_ide_tabs .tab {
    float: left;
    border: 1px solid #DFDFDF;
    height: 18px;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 5px;
    margin-right: 3px;
    margin-top: 1px;
    /*cursor: pointer;*/
    -moz-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
    -moz-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
}

#synchi_ide_tabs .tab .file_link {
    padding-left: 19px;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    margin-right: 5px;
}

#synchi_ide_tabs .tab:hover {
    background-color: #FAFAFA;
}

#synchi_ide_tabs .tab.changed a {
    font-weight: bold;
}

#synchi_ide_tabs .tab.focused {
    background-color: #BDF;
}

#synchi_ide_tabs .tab.focused a {
    color: black;
}

#synchi_ide_tabs .tab a {
    text-decoration: none;
}

#synchi_ide_tabs .tab a img {
    width: 10px;
    height: 10px;
    -moz-opacity: 0.5;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

#synchi_ide_tabs .tab a:hover img {
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Sidebar */

#synchi_ide_sidebar {
    position: relative;
    left: 2px;
    top: 2px;
    height: 432px;
    width: 294px;
    overflow: auto;
    border: 1px solid #DFDFDF;
    background-color: #FAFAFA;
}

#synchi_ide_sidebar:focus {
    outline: none;
}

#synchi_ide_sidebar a:hover {
    background: none;
}

#synchi_ide_sidebar a.selected {
    background: #BDF;
}

#synchi_ide_sidebar_filesize {
    font-weight: bold;
    font-size: 10px;
    margin-right: 5px;
}