Sha256: f6c4644fc5731fac34134c43bc449adb981cb8a5b7a74ccba4e07ffd5850dc7e
Contents?: true
Size: 871 Bytes
Versions: 38
Compression:
Stored size: 871 Bytes
Contents
// ========================================================================== // Job color declaration classes // Pulled from $colors-job-statuses/types // ========================================================================== @each $key, $val in $colors-job-statuses { .c-b-job-#{$key} { border-color: map-get($val, 3) !important; } .c-fill-job-#{$key} { background-color: map-get($val, 3) !important; } .c-txt-job-#{$key} { color: map-get($val, 3) !important; } } // Just dealing with job types (fulltime, freelance, etc) @each $key, $val in $colors-job-types { .c-b-job-#{$key} { border-color: map-get($val, 2) !important; } .c-fill-job-#{$key} { background-color: map-get($val, 2) !important; } .c-txt-job-#{$key} { color: map-get($val, 2) !important; } .c-txt-job-#{$key}-light { color: map-get($val, 1) !important; } }
Version data entries
38 entries across 38 versions & 1 rubygems