Sha256: 9d8144f65bef3ee1a45d67c769c1e181f6ab625f3b2149f90510a149f9fa5aaa
Contents?: true
Size: 679 Bytes
Versions: 6
Compression:
Stored size: 679 Bytes
Contents
// Override defaults to use SCSS instead of JS $solid-bg: 'border_type_1.png'; $dashed-bg: 'border_type_2.png'; $dotdashed-bg: 'border_type_3.png'; $thick-bg: 'border_type_4.png'; $thickest-bg: 'border_type_5.png'; @mixin bg-for-line($image) { background-image: image-url($image); } .mirador-container .mirador-line-type { .border-type-image, ul i { &.solid { @include bg-for-line($solid-bg); } &.dashed { @include bg-for-line($dashed-bg); } &.dotdashed { @include bg-for-line($dotdashed-bg); } &.thick { @include bg-for-line($thick-bg); } &.thickest { @include bg-for-line($thickest-bg); } } }
Version data entries
6 entries across 6 versions & 1 rubygems