You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.0 KiB

  1. /**********************************************************************************
  2. *
  3. * Copyright (c) 2017-2019 MuK IT GmbH.
  4. *
  5. * This file is part of MuK Preview
  6. * (see https://mukit.at).
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. **********************************************************************************/
  22. .mk_preview_manager {
  23. height: 100%;
  24. @include mk-flex-container(column);
  25. .mk_preview_manager_body {
  26. @include mk-flex-child(1, 1, auto);
  27. }
  28. .mk_preview_manager_header,
  29. .mk_preview_manager_footer {
  30. @include mk-flex-child(0, 0, auto);
  31. background: gray('700');
  32. }
  33. .mk_preview_manager_header {
  34. justify-content: flex-end;
  35. .mk_preview_actions {
  36. padding: 0.6rem 0.8rem;
  37. a {
  38. color: gray('200');
  39. padding: 0 0.5rem;
  40. &:hover {
  41. color: gray('400');
  42. }
  43. }
  44. &:empty {
  45. display: none;
  46. }
  47. }
  48. }
  49. .mk_preview_manager_footer {
  50. justify-content: center;
  51. .pagination {
  52. margin: 0;
  53. .page-item .page-link {
  54. background-color: gray('700');
  55. color: gray('200');
  56. border: none;
  57. &:focus, &:hover {
  58. box-shadow: none;
  59. background-color: gray('200');
  60. color: gray('700');
  61. }
  62. }
  63. .page-item.disabled .page-link {
  64. color: gray('400');
  65. }
  66. .page-item.active .page-link {
  67. background-color: gray('200');
  68. color: gray('700');
  69. }
  70. }
  71. }
  72. }