Sha256: 0a86d383c5b6e856dc2063e78244ce1cc7272e1ec1a689eb2aa2ad0b5a76ecff
Contents?: true
Size: 1.75 KB
Versions: 43
Compression:
Stored size: 1.75 KB
Contents
// Table of Contents // ================================================== // Pagination // scss-lint:disable NestingDepth // Pagination // ================================================== .pagination { color: color(slate); list-style: none; padding: 0; li { display: inline-block; line-height: 1; margin-right: 2px; &:last-child { margin: 0; } a, &.active { border-radius: border-radius(xl); display: inline-block; min-width: 8px; padding: 8px 12px; text-align: center; } a { background: color(haze); @if ($pseudo-elements) { &:hover, &:focus { background: darkish-color(haze); } &:active { background: lightish-color(haze); } } } &.active { background: color(primary); color: color(white); } &.pagination-icon { a { font-size: text-size(m); padding: 7px; } &:first-child { a { padding-left: 6px; padding-right: 8px; } } &:last-child { a { padding-left: 8px; padding-right: 6px; } } } } &.dark, &.light, &.white { background: color(transparent); } &.dark { li { a { background: color(light-slate); @if ($pseudo-elements) { &:hover, &:focus { background: darkish-color(light-slate); } &:active { background: lightish-color(light-slate); } } } } } &.light { li { a { background: color(dark-haze); @if ($pseudo-elements) { &:hover, &:focus { background: darkish-color(dark-haze); } &:active { background: lightish-color(dark-haze); } } } } } }
Version data entries
43 entries across 43 versions & 1 rubygems