????

Your IP : 216.73.216.64


Current Path : C:/inetpub/vhost/redmine/public/themes/improved/src/sass/components/
Upload File :
Current File : C:/inetpub/vhost/redmine/public/themes/improved/src/sass/components/_paginations.scss

/***************************************************************************************************
 *
 * Paginations
 *
 */

.pagination .per-page span.selected {
    font-weight: bold;
}

span.pagination {
    margin-left: 3px;
    color: #888;
}

.pagination ul.pages {
    margin: 0 5px 0 0;
    padding: 0;
    display: inline;
    li {
        display: inline-block;
        padding: 0;
        border: 1px solid #ccc;
        margin-left: -1px;
        line-height: 2em;
        margin-bottom: 1em;
        white-space: nowrap;
        text-align: center;
        a, span {
            padding: 3px 8px;
        }
        &:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }
        &:last-child {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }
        &.current {
            color: white;
            background-color: #628DB6;
            border-color: #628DB6;
        }
        &.page {
            &:hover {
                background-color: #EEE;
            }
            a {
                &:hover, &:active {
                    color: inherit;
                    text-decoration: inherit;
                }
            }
        }
    }
}

span.pagination > span {
    white-space: nowrap;
}