style.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .row-dragging {
  2. .bms-ant-table-cell {
  3. width: 130px;
  4. }
  5. }
  6. .DiySqlMana {
  7. // padding: 16px;
  8. border-radius: 4px;
  9. .left {
  10. float: left;
  11. border-radius: 4px;
  12. width: 220px;
  13. height:calc(100vh - 80px);
  14. overflow: scroll;
  15. margin-right: 16px;
  16. padding: 16px;
  17. background: #FFFFFF;
  18. .wrap {
  19. margin-top: 16px;
  20. .type {
  21. cursor: pointer;
  22. height: 32px;
  23. line-height: 32px;
  24. padding-left: 8px;
  25. background: #FFFFFF;
  26. border-radius: 4px;
  27. font-size: 14px;
  28. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  29. font-weight: 400;
  30. color: #17181A;
  31. margin-bottom: 4px;
  32. &.on {
  33. font-weight: 500;
  34. color: #17181A;
  35. background: #F0F2F5;
  36. }
  37. &:last-child {
  38. margin-bottom: 0;
  39. }
  40. }
  41. }
  42. }
  43. .right {
  44. float: left;
  45. width: calc(100% - 236px);
  46. padding: 16px;
  47. border-radius: 4px;
  48. background: #FFFFFF;
  49. .toolBar {
  50. display: flex;
  51. flex-direction: row;
  52. justify-content: space-between;
  53. align-items: center;
  54. .filter {
  55. display: flex;
  56. flex-direction: row;
  57. justify-content: flex-start;
  58. align-items: center;
  59. .filterItem {
  60. display: flex;
  61. flex-direction: row;
  62. justify-content: center;
  63. align-items: center;
  64. }
  65. }
  66. .btnGroup {
  67. .add {
  68. cursor: pointer;
  69. display: inline-block;
  70. font-size: 14px;
  71. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  72. font-weight: 400;
  73. color: #FFFFFF;
  74. line-height: 24px;
  75. padding: 0 14px;
  76. background: #3377FF;
  77. border-radius: 4px;
  78. }
  79. }
  80. }
  81. }
  82. }