reactable-pagination.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. @import '../stylesheets/less/variables.less';
  20. .reactable-pagination td {
  21. padding: 15px 0 0 0 !important;
  22. }
  23. .reactable-pagination a:focus {
  24. text-decoration: none;
  25. color: @gray-dark;
  26. outline: 1;
  27. }
  28. .reactable-page-button,
  29. .reactable-next-page,
  30. .reactable-previous-page {
  31. background: @lightest;
  32. border-radius: @border-radius-normal;
  33. border: 1px solid @gray-light;
  34. color: @gray-dark;
  35. display: inline-block;
  36. font-size: @font-size-s;
  37. margin-right: 5px;
  38. padding: 5px 10px;
  39. text-align: center;
  40. text-decoration: none;
  41. vertical-align: middle;
  42. white-space: nowrap;
  43. &:hover {
  44. background-color: @gray-bg;
  45. border-color: @gray;
  46. color: @gray-dark;
  47. text-decoration: none;
  48. }
  49. }
  50. .reactable-current-page {
  51. border: 1px solid @gray-light;
  52. color: @gray-dark;
  53. font-weight: @font-weight-bold;
  54. pointer-events: none;
  55. opacity: 0.65;
  56. }