Sha256: 06bd7e6494b35ce08653547fb1d8d4fb7709fc64309c55c7529d7e31dea0236f
Contents?: true
Size: 911 Bytes
Versions: 96
Compression:
Stored size: 911 Bytes
Contents
/* * Scopes are fixed categories on a model * You can find the scopes in an index-view, on top of the table */ .table_tools { .scopes { @include border-radius(5px); border: 1px solid gray(224); margin: 0; padding: 0; .scope { border-left: 1px solid gray(224); margin: 0; padding: 0; a { @include transition(color 150ms); color: gray(200); padding: 4px 6px !important; text-decoration: none !important; &:hover { color: gray(150); } } &.selected { background-color: gray(224); a { color: gray(150); font-weight: bold; text-decoration: none; span { font-weight: normal; } } } // the first scope-element gets no border &:first-child { border-left: none; } } } }
Version data entries
96 entries across 96 versions & 1 rubygems