diff --git a/web/src/app/shared/components/pagination/pagination.component.html b/web/src/app/shared/components/pagination/pagination.component.html index 4895b77ce..97fcd7f7d 100644 --- a/web/src/app/shared/components/pagination/pagination.component.html +++ b/web/src/app/shared/components/pagination/pagination.component.html @@ -6,7 +6,7 @@
  • {{pageNumber + 1}}
  • diff --git a/web/src/app/shared/components/pagination/pagination.component.scss b/web/src/app/shared/components/pagination/pagination.component.scss index 904ecb1e0..0387ee4e0 100644 --- a/web/src/app/shared/components/pagination/pagination.component.scss +++ b/web/src/app/shared/components/pagination/pagination.component.scss @@ -34,3 +34,15 @@ ul.pagination{ margin: 0px 5px 0 0; color: $blue; } + + +// small "hack" to remove the arrows in the input fields of type numbers +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + +input[type='number'] { + -moz-appearance:textfield; +}