_tools.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // Backups
  2. #backups-stats {
  3. #backups-usage {
  4. position: relative;
  5. margin-bottom: 1.5rem;
  6. h1 {
  7. position: absolute;
  8. right: 1rem;
  9. top: 5px;
  10. }
  11. }
  12. .backups-usage-wrapper {
  13. height: 40px;
  14. background: linear-gradient(90deg, $color-green 0%, $color-lime 20%, $color-yellow 40%, $color-orange 60%, $color-red 80%, $color-maroon 100%);
  15. > div {
  16. float: right;
  17. height: 40px;
  18. &.full {
  19. width: 100%;
  20. }
  21. }
  22. }
  23. }
  24. .backups-content {
  25. #admin-dashboard {
  26. display: block;
  27. #backups-stats {
  28. margin-left: 1rem;
  29. margin-right: 1rem;
  30. h1 {
  31. padding: 0rem;
  32. @include breakpoint(mobile-only) {
  33. font-size: 1.1rem;
  34. }
  35. }
  36. }
  37. }
  38. }
  39. // Scheduler
  40. .scheduler-content {
  41. #admin-main .admin-block & .alert {
  42. margin-top: -1rem;
  43. margin-bottom: 2rem;
  44. }
  45. .secondary-accent {
  46. .button {
  47. float: right;
  48. margin-top: -3px;
  49. }
  50. }
  51. #cron-install {
  52. @extend .default-animation;
  53. padding: 0 1.5rem;
  54. pre {
  55. padding: 0.5rem;
  56. }
  57. &.hide {
  58. display: none;
  59. }
  60. }
  61. }
  62. // Reports
  63. .report-output {
  64. #admin-main .admin-block & .alert {
  65. margin-top: 0;
  66. margin-bottom: 0;
  67. }
  68. td {
  69. .key {
  70. font-weight: bold;
  71. }
  72. .value {
  73. }
  74. }
  75. }
  76. // Direct install
  77. .direct-install-content {
  78. padding: 30px;
  79. .button {
  80. margin-top: 10px;
  81. margin-bottom: 50px;
  82. }
  83. }