fix color in pagination of contest page (#86)

This commit is contained in:
Võ Trung Hoàng Hưng 2023-10-06 01:06:21 +07:00 committed by GitHub
parent c64baad181
commit 458b9e425e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -322,7 +322,7 @@ input {
// Bootstrap-y pagination // Bootstrap-y pagination
ul.pagination a:hover { ul.pagination a:hover {
color: #FFF; color: #FFF;
background: #0aa082; background: #cc4e17;
border: none; border: none;
} }
@ -338,22 +338,6 @@ ul.pagination {
li { li {
display: inline; display: inline;
// &:first-child > {
// a, span {
// margin-left: 0;
// border-top-left-radius: $widget_border_radius;
// border-bottom-left-radius: $widget_border_radius;
// }
// }
// &:last-child > {
// a, span {
// margin-left: 0;
// border-top-right-radius: $widget_border_radius;
// border-bottom-right-radius: $widget_border_radius;
// }
// }
> { > {
a, span { a, span {
position: relative; position: relative;
@ -373,15 +357,15 @@ ul.pagination {
.disabled-page > { .disabled-page > {
a { a {
color: #888; color: #f1efef;
background-color: #04534380; background-color: #ab6247;
border-color: #04534380; border-color: #6a240b;
} }
span { span {
color: #888; color: #f1efef;
background-color: #04534380; background-color: #ab6247;
border-color: #04534380; border-color: #6a240b;
} }
} }