summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_pagination.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/styles/bmc/_sila/_pagination.scss')
-rw-r--r--src/assets/styles/bmc/_sila/_pagination.scss23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/assets/styles/bmc/_sila/_pagination.scss b/src/assets/styles/bmc/_sila/_pagination.scss
index 8183057e..2b36f79b 100644
--- a/src/assets/styles/bmc/_sila/_pagination.scss
+++ b/src/assets/styles/bmc/_sila/_pagination.scss
@@ -20,10 +20,25 @@
@include media-breakpoint-up(sm) {
justify-content: flex-end;
}
+ .page-item button {
+ @include themify($themes) {
+ color: themed("text-primary");
+ background-color: themed("gray-30");
+ border-color: themed("gray-30");
+ }
+ }
.page-item.active button {
- color: theme-color("dark");
- background-color: color("white");
- border-color: $border-color;
- box-shadow: inset 0px -3px theme-color("primary");
+ @include themify($themes) {
+ color: themed("text-primary");
+ background-color: themed("surface-primary");
+ border-color: themed("gray-30");
+ }
+ }
+ .page-item.disabled span {
+ @include themify($themes) {
+ color: themed("text-primary");
+ background-color: themed("surface-secondary");
+ border-color: themed("gray-30");
+ }
}
}