Sha256: 360e5d3f448b029f42416cd2ced17c6e6cd75ede8167ae81579521125295b536

Contents?: true

Size: 1.33 KB

Versions: 7

Compression:

Stored size: 1.33 KB

Contents

// Styles for index lists
// To manage column widths, go to columns.css

.filters {
    .select2-container {
        min-width: 130px;
    }

    .filter.label {
    display: inline-block;
    margin-right: 10px;
    }

    form {
    display: inline-block;
    }
}

.header-highlighted {
    background-color: $successBackground;
}

th.clickable {
    cursor: pointer;
    &:hover {
        background-color: $infoBackground;
    }
}

.index-list {
    position: relative;

    th, td {
        overflow: hidden;
        .cancel-link { float: right; }
    }

    tbody.list {
        tr {
            // Style quick-edit cells
            td[data-updatable=true] {
                background: $warningBackground;

                &:hover {
                    background: $infoBackground;
                    cursor: text;
                }
            }
        }
    }

    thead {
        background: $white;

        &.ready {
            position: absolute;

            &.affix {
                z-index: 5;
                border: 1px solid $grayLight;
                position: fixed; // Have to use redefine it here to override .ready
                top: $navOffset + $breadcrumbOffset + 10px !important;
                background: $warningBackground;
                @include box-shadow(0 2px 6px rgba(0,0,0,.2));
            }
        }
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
outpost-cms-0.1.4 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.1.3 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.1.2 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.1.1 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.1.0 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.0.5 app/assets/stylesheets/outpost/_index.css.scss
outpost-cms-0.0.4 app/assets/stylesheets/outpost/_index.css.scss