Skip to content

Commit

Permalink
In pagination CSS, use hex values in content properties instead of th…
Browse files Browse the repository at this point in the history
…e characters themselves, closes #8130
  • Loading branch information
gakimball committed Feb 15, 2016
1 parent fc77712 commit 0008fde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/components/_pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ $pagination-arrows: true !default;

/// Adds styles for an ellipsis for use in a pagination list.
@mixin pagination-ellipsis {
content: '';
content: '\2026';
padding: $pagination-item-padding;
color: $pagination-ellipsis-color;
}
Expand All @@ -147,14 +147,14 @@ $pagination-arrows: true !default;
@if $pagination-arrows {
.pagination-previous a::before,
.pagination-previous.disabled::before {
content: '«';
content: '\00ab';
display: inline-block;
margin-#{$global-right}: 0.5rem;
}

.pagination-next a::after,
.pagination-next.disabled::after {
content: '»';
content: '\00bb';
display: inline-block;
margin-#{$global-left}: 0.5rem;
}
Expand Down

0 comments on commit 0008fde

Please sign in to comment.