review/static/styles/extra.css @ fc97fabaf28d

Update windows contrib script for current TortoiseHg version (2.6.2).

TortoiseHg 2.6.2 is packaged with Python 2.7.3 (and not 2.6.x), and now
includes some of the libraries that this script previously needed to copy into
place.
author Chris Nielsen
date Fri, 18 Jan 2013 11:51:36 -0500
parents 3fe8d9b6705b
children (none)
a.button span, a.button {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.00, rgba(0, 0, 0, 0.15)),
        color-stop(1, rgba(0, 0, 0, 0.0))
    );
    background: -moz-linear-gradient(
        center bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
}
a.button:active span {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.00, rgba(0, 0, 0, 0.1)),
        color-stop(1, rgba(0, 0, 0, 0.0))
    );
    background: -moz-linear-gradient(
        center bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
}


#index .content table tr:nth-child(even) td.node {
    background: -webkit-gradient(
        linear,
        left 50%,
        right 50%,
        color-stop(0.0, rgba(250, 250, 250, 1)),
        color-stop(0.35, rgba(250, 250, 250, 0.0))
    );
    background: -moz-linear-gradient(
        center left,
        rgba(250, 250, 250, 1) 0%,
        rgba(250, 250, 250, 0) 35%
    );
}


#index .content table tr:nth-child(even) td.stats {
    background: -webkit-gradient(
        linear,
        right 50%,
        left 50%,
        color-stop(0.0, rgba(250, 250, 250, 1)),
        color-stop(0.9, rgba(250, 250, 250, 0.0))
    );
    background: -moz-linear-gradient(
        center right,
        rgba(250, 250, 250, 1) 0%,
        rgba(250, 250, 250, 0) 35%
    );
}

#changeset .content .togglebox form {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.0, rgb(234, 233, 223)),
        color-stop(0.3, rgb(250, 249, 239)),
        color-stop(0.95, rgb(250, 249, 239)),
        color-stop(1, rgb(255, 254, 243))
    );
}