style.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .row-dragging {
  2. .bms-ant-table-cell {
  3. width: 130px;
  4. }
  5. }
  6. .sortable-item {
  7. z-index: 1000;
  8. }
  9. .ReportTemplate {
  10. .breadcrumb {
  11. margin-top: 8px;
  12. margin-bottom: 16px;
  13. height: 14px;
  14. .tab {
  15. font-size: 14px;
  16. color: #7A8599;
  17. cursor: pointer;
  18. padding: 4px;
  19. &:hover {
  20. background: #E6EAF2;
  21. border-radius: 4px;
  22. }
  23. &.actived {
  24. color: #17181A;
  25. &:hover {
  26. cursor: default;
  27. color: #17181A;
  28. text-decoration: none;
  29. background: transparent;
  30. }
  31. }
  32. }
  33. }
  34. .contentWrap {
  35. position: relative;
  36. padding: 16px;
  37. border-radius: 4px;
  38. background: #fff;
  39. .export {
  40. position: absolute;
  41. top: 16px;
  42. right: 16px;
  43. width: 56px;
  44. height: 24px;
  45. color: #fff;
  46. text-align: center;
  47. line-height: 24px;
  48. cursor: pointer;
  49. background: #3377FF;
  50. border-radius: 4px;
  51. }
  52. .content {
  53. position: relative;
  54. padding-top: 8px;
  55. .bms-ant-tabs-nav {
  56. &::before {
  57. border-bottom: none !important;
  58. }
  59. }
  60. .bms-ant-table-body {
  61. max-height: calc(100vh - 210px) !important;
  62. }
  63. }
  64. }
  65. }