_changelist.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. line-height: 32px;
  12. display: inline-block;
  13. }
  14. }
  15. .results {
  16. overflow-x: auto;
  17. }
  18. table {
  19. @extend .table;
  20. box-shadow: 0 2px 0 0 $content-border2-color;
  21. width: 100%;
  22. }
  23. .changelist-footer {
  24. margin-top: 20px;
  25. background: $background-color;
  26. &.fixed {
  27. position: fixed;
  28. left: 250px + 20px;
  29. right: 20px;
  30. bottom: 0;
  31. margin: 0;
  32. padding: 20px 0;
  33. border-top: 2px solid $content-border2-color;
  34. }
  35. &.popup {
  36. left: 20px;
  37. }
  38. .actions {
  39. float: left;
  40. &-label {
  41. margin-left: 10px;
  42. }
  43. span {
  44. .all, .action-counter, .clear, .question {
  45. display: none;
  46. }
  47. }
  48. }
  49. }
  50. }
  51. table#change-history {
  52. @extend .table;
  53. box-shadow: 0 2px 0 0 $content-border2-color;
  54. width: 100%;
  55. }