/**
 * zde se definují barvy jednotlivých témat
 */

/* --- LIGHT THEME (DARK THEME if not defined)--- */
html[data-theme="light"],
:root {
    --primary: #0068c7;
    --secondary: #005098; /*#0085fe;/*#005098;*/

    --link-fg: #005098;
    --link-hover-color: #0085fe;
    --link-selected-fg: #0085fe;

    --button-bg: var(--primary);
    --button-hover-bg: #00305b;
    --default-button-bg: var(--secondary);
    --default-button-hover-bg: #00305b;

    --hairline-color: #bbb;
    --border-color: #555555;
    --darkened-bg: #eee;
}


/* --- DARK THEME --- */
html[data-theme="dark"], html[data-theme="auto"],
:root {

    --secondary: #00305b;
    --button-bg: #00305b;
    --button-hover-bg: #00274a;
    --default-button-bg: #006bcc;
    --default-button-hover-bg: #00305b;

    /* načteno z dark_mode.css */
    --primary: #264b5d;
    --primary-fg: #f7f7f7;

    --body-fg: #eeeeee;
    --body-bg: #121212;
    --body-quiet-color: #e0e0e0;
    --body-loud-color: #ffffff;

    --breadcrumbs-link-fg: #e0e0e0;
    --breadcrumbs-bg: var(--primary);

    --link-fg: #81d4fa;
    --link-hover-color: #4ac1f7;
    --link-selected-fg: #6f94c6;

    --hairline-color: #353535;
    --border-color: #555555;

    --error-fg: #e35f5f;
    --message-success-bg: #006b1b;
    --message-warning-bg: #583305;
    --message-error-bg: #570808;

    --darkened-bg: #212121;
    --selected-bg: #1b1b1b;
    --selected-row: #00363a;

    --close-button-bg: #333333;
    --close-button-hover-bg: #666666;
}


html[data-theme="auto"],
:root {
}


html[data-theme="dark"], html[data-theme="auto"] {
    .dashboard-module {
        border: 1px solid #2a2a2a;
    }

    .dashboard-module h2 {
        background-color: #2a2a2a;
        color: #aaa;
    }

    .dashboard-module h3 {
        background: rgba(100, 100, 100, 0.2);
    }

    #main {
        background: transparent url("../../admin/img/promobox_pr06.png") no-repeat center top;
        background-attachment: fixed;
    }

}

html[data-theme="light"] {
    .dashboard-module {
        border: 1px solid #bbb;
    }

    .dashboard-module h2 {
        background-color: #bbb;
    }
}

/* --- ALL THEMES --- */

#main {
    background: transparent url("../../admin/img/promobox_pr12.png") no-repeat center top;
    background-attachment: fixed;
}

.dashboard-module h2 .glyphicon {
    color: var(--link-fg);
}

.dashboard-module ul li.odd {
    background: var(--body-bg);
}

.dashboard-module ul li.even {
    background: var(--darkened-bg);
}

.dashboard-module-content a {
    color: var(--link-fg)
}

#dash-wiki ul li, #dash-wiki p {
    background: none;
    color: white;
}

#dash-wiki a {
    color: var(--accent)
}


form .aligned p.help, form .aligned div.help {
    margin-left: 0px;
    margin-right: 160px;
}

#id_infotext {
    max-width: 900px;
}

#nav-sidebar {
    display: none;
}

#toggle-nav-sidebar {
    display: none;
}

.module {
    background: none;
}

#changelist-form {
    width: 100%;
}

#changelist .actions {
    width: auto;
}

/*#toolbar  {width: 100%;}*/

.main.shifted > #nav-sidebar + .content {
    max-width: calc(100% - 23px);
}
