style.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. .TableSelecter {
  2. .pfm-ant-modal-footer {
  3. display: none !important;
  4. }
  5. .footer {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: flex-end;
  9. margin-top: 15px;
  10. span {
  11. display: inline-block;
  12. width: 56px;
  13. height: 24px;
  14. font-size: 14px;
  15. line-height: 23px;
  16. text-align: center;
  17. border-radius: 4px;
  18. cursor: pointer;
  19. &.ok {
  20. color: #FFFFFF;
  21. background: #3377FF;
  22. margin-left: 8px;
  23. }
  24. &.cancel {
  25. border: 1px solid #DAE2F2;
  26. }
  27. }
  28. }
  29. }
  30. .patientInfoImport {
  31. position: relative;
  32. // padding: 16px;
  33. background: #FFFFFF;
  34. border-radius: 4px;
  35. .toolBar {
  36. display: flex;
  37. flex-direction: row;
  38. justify-content: space-between;
  39. align-items: center;
  40. .filter {
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: flex-start;
  44. align-items: center;
  45. .filterItem {
  46. display: flex;
  47. flex-direction: row;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. }
  52. .btnGroup {
  53. .import,
  54. .copy {
  55. cursor: pointer;
  56. display: inline-block;
  57. font-size: 14px;
  58. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  59. font-weight: 400;
  60. color: #FFFFFF;
  61. line-height: 24px;
  62. padding: 0 14px;
  63. background: #3377FF;
  64. border-radius: 4px;
  65. }
  66. .copy {
  67. color: #17181A;
  68. border: 1px solid #DAE2F2;
  69. background: #FAFCFF;
  70. margin-right: 8px;
  71. }
  72. &>span {
  73. cursor: pointer;
  74. display: inline-block;
  75. color: #17181A;
  76. line-height: 24px;
  77. padding: 0 14px;
  78. border-radius: 4px;
  79. border: 1px solid #DAE2F2;
  80. background: #FAFCFF;
  81. margin-right: 8px;
  82. }
  83. }
  84. }
  85. }