summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_close-button.scss
blob: 37171c185456c951af675aaf3670513b5e0315e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.close-mail-button {
    $button-size: 27px;

    margin-right: 3px;
    float: left;
    background: $lighter_gray;
    color: $medium_light_grey;
    width: $button-size;
    height: $button-size;
    padding: 0;
    border-radius: 0;

    &:hover, &:focus, &:active {
        background-color: darken($lighter_gray, 2);
        color: darken($medium_light_grey, 10);
    }

    i {
        padding: 0;
        margin: 0;
    }
}