Sha256: b46d9afecb57d4220309c881e8fdefc464b605e539d64683ef0fab6a55701d8e

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

//----------------------------------------------------------------
//             Overflow
//----------------------------------------------------------------
.overflow-hidden{
    overflow: hidden;
}
.overflow-y{
    overflow-y: auto;
}
.overflow-y-scroll{
    overflow-y: scroll;
}
.overflow-x{
    overflow-x: auto;
}

//----------------------------------------------------------------
//             Element Reset
//----------------------------------------------------------------
.reset{
    outline: none;
    appearance: none;
    border: none;
    background:none;
    padding: 0;
    margin: 0;
    list-style:none;
    text-decoration: none;
    color: inherit;
}

//----------------------------------------------------------------
//             Cursor
//----------------------------------------------------------------
@each $type in (
auto
default
pointer
wait
text
move
not-allowed
help
grab
) {
    .cursor-#{$type}{
        cursor: $type;
    }
}

//----------------------------------------------------------------
//             SVG
//----------------------------------------------------------------
@include responsive-rule('fill-current'){ fill: currentColor;}
@include responsive-rule('stroke-current'){ stroke: currentColor;}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
uniform-ui-3.0.0.beta8 lib/assets/stylesheets/uniform/utilities.scss
uniform-ui-3.0.0.beta5 lib/assets/stylesheets/uniform/utilities.scss
uniform-ui-3.0.0.beta4 lib/assets/stylesheets/uniform/utilities.scss