/*
 * results.css
 *
 * Copyright (c) 2004, 2005 by Daniel Potter.  All rights reserved.
 *
 * This file is part of the FFXI Skillchains Tool.
 *
 * The FFXI Skillchains Tool is free software; you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * The FFXI Skillchains Tool is distributed in the hope that it will
 * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the FFXI Skillchains Tool; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA  02111-1307  USA
 *
 * Defines the look of the results screen
 */

body {
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
    font-size: 8pt;
}

/* this can get overridden, sorta */
div {
    display: block;
    cursor: default;
}

.results-tree-children {
    margin-left: 16px;
}

.results-twisty {
    vertical-align: middle;
}

.results-twisty-spacer {
    vertical-align: middle;
}

.arrow-image {
    vertical-align: middle;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.skill {
    /*-moz-binding: url('chrome://skillchains/content/results.xbl#weapon-skill');*/
}

.chain {
    /*-moz-binding: url('chrome://skillchains/content/results.xbl#skill-chain');*/
}

/* Some fun things to allow us to set attributes on the body and have CSS
   rules take effect to make certain options work almost magically */

body .skillElement {
    display: none;
}

body[skillelements=show] .skillElement {
    display: inline;
}

body .chainIcon {
    display: none;
}

body[chainicons=show] .chainIcon {
    display: inline;
}

body .chainElement {
    display: none;
}

body[chainelements=show] .chainElement {
    display: inline;
}

body .chainElementNames {
    display: inline;
}

body[chainelementnames=hide] .chainElementNames {
    display: none;
}

body .playerName {
    display: none;
}

body[players=show] .playerName {
    display: inline;
}

body .weaponName {
    display: none;
}

body[weapons=show] .weaponName {
    display: inline;
}
