/**
 *
 * @package Quick Title Edition Extension
 * @copyright (c) 2015 ABDev
 * @copyright (c) 2015 PastisD
 * @copyright (c) 2015 Geolim4 <http://geolim4.com>
 * @copyright (c) 2015 Zoddo <zoddo.ino@gmail.com>
 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
 *
 */

/* selector */
fieldset.attribute {
    text-align: right;
    margin-top: 15px;
    height: 2.5em;
}

/* attributes */
.qte_solved { color: #006600; }
.qte_cancelled { color: #cc0000; }

.qte_match_on, .qte_match_off, .qte_match_cancelled, .qte_match_postponed, .qte_match_tbc {
    display: inline-block;
    margin: 1px 4px 1px 0;
    padding: 2px 5px;
    color: #ffffff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-shadow: 0 1px 0 #005884;
}

.qte_match_won, .qte_match_drawn, .qte_match_lost {
    display: inline-block;
    margin: 1px 4px 1px 0;
    padding: 2px 5px;
    background-color: #fffff4;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border:1px solid gray;
    font-weight:bold;
}

.qte_mdpgroundcare {
    display: inline-block;
    margin: 1px 4px 1px 0;
    padding: 2px 5px;
    background-color: #43a047;
    color: #ffffff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border:1px solid gray;
    font-weight:bold;
}

.qte_match_on {
    background: -webkit-linear-gradient(#074c00, #42a341);
    background: -o-linear-gradient(#074c00, #42a341);
    background: -moz-linear-gradient(#074c00, #42a341);
    background: linear-gradient(#074c00, #42a341);
}
.qte_match_off {
    background: -webkit-linear-gradient(#d62121, #3a1111);
    background: -o-linear-gradient(#d62121, #3a1111);
    background: -moz-linear-gradient(#d62121, #3a1111);
    background: linear-gradient(#d62121, #3a1111);
}
.qte_match_cancelled {
    background: -webkit-linear-gradient(#ff8800, #ff3300);
    background: -o-linear-gradient(#ff8800, #ff3300);
    background: -moz-linear-gradient(#ff8800, #ff3300);
    background: linear-gradient(#ff8800, #ff3300);
}
.qte_match_postponed {
    background: -webkit-linear-gradient(#0f9be1, #6aa7f7, #0076b1, #0076b1);
    background: -o-linear-gradient(#0f9be1, #6aa7f7, #0076b1, #0076b1);
    background: -moz-linear-gradient(#0f9be1, #6aa7f7, #0076b1, #0076b1);
    background: linear-gradient(#0f9be1, #6aa7f7, #0076b1, #0076b1);
}
.qte_match_tbc {
    background: -webkit-linear-gradient(#040404, #656565);
    background: -o-linear-gradient(#040404, #656565);
    background: -moz-linear-gradient(#040404, #656565);
    background: linear-gradient(#040404, #656565);
}
.qte_match_won {
    color: green;
}
.qte_match_drawn {
    color: #FFA500;
}
.qte_match_lost {
    color: red;
}

.qte_solved, .qte_cancelled { font-weight:bold; }

/* imageset */
.imageset.qte_solved {
    background-image: url("./images/icon_topic_solved.gif");
    padding-left: 16px;
    padding-top: 16px;
}

.imageset.qte_cancelled {
    background-image: url("./images/icon_topic_cancel.gif");
    padding-left: 16px;
    padding-top: 16px;
}
