_changelist.scss 882 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @import "globals";
  2. #changelist {
  3. .changelist-filter {
  4. margin-bottom: 20px;
  5. line-height: 40px;
  6. * {
  7. vertical-align: top;
  8. }
  9. &-submit-block {
  10. white-space: nowrap;
  11. }
  12. }
  13. .results {
  14. overflow-x: auto;
  15. }
  16. table {
  17. @extend .table;
  18. width: 100%;
  19. }
  20. .changelist-footer {
  21. margin-top: 20px;
  22. background: $background-color;
  23. &.fixed {
  24. position: fixed;
  25. left: 250px + 20px;
  26. right: 20px;
  27. bottom: 0;
  28. margin: 0;
  29. padding: 20px 0;
  30. border-top: 2px solid $content-border2-color;
  31. }
  32. &.popup {
  33. left: 20px;
  34. }
  35. .actions {
  36. float: left;
  37. &-label {
  38. margin-left: 10px;
  39. }
  40. span {
  41. .all, .action-counter, .clear, .question {
  42. display: none;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. table#change-history {
  49. @extend .table;
  50. width: 100%;
  51. }