Sha256: f70e8b14194726591f57c7f6d599add016d1b19c5329090773c3717da5137c00
Contents?: true
Size: 845 Bytes
Versions: 62
Compression:
Stored size: 845 Bytes
Contents
/*------------------------------------*\ #STATE \*------------------------------------*/ $state-pending-color: $green !default; $state-done-color: $gray !default; $state-danger-color: $red !default; $state-indicator-size: 0.8em !default; .state { &::before { display: inline-block; margin: 0.2em 0.2em 0 0; width: $state-indicator-size; height: $state-indicator-size; background: none; border-radius: 100%; vertical-align: text-top; content: ''; } } .state--pending::before { background-color: $state-pending-color; } .state--danger::before { background-color: $state-danger-color; } .state--done { &::before { margin-top: 0; color: $state-done-color; background: none; content: '✓'; vertical-align: baseline; } }
Version data entries
62 entries across 62 versions & 1 rubygems