element-ui.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // cover some element-ui styles
  2. .ant-breadcrumb__inner,
  3. .ant-breadcrumb__inner a {
  4. font-weight: 400 !important;
  5. }
  6. .ant-upload {
  7. input[type="file"] {
  8. display: none !important;
  9. }
  10. }
  11. .ant-upload__input {
  12. display: none;
  13. }
  14. // to fixed https://github.com/ElemeFE/element/issues/2461
  15. .ant-dialog {
  16. transform: none;
  17. left: 0;
  18. position: relative;
  19. margin: 0 auto;
  20. }
  21. // refine element ui upload
  22. .upload-container {
  23. .ant-upload {
  24. width: 100%;
  25. .ant-upload-dragger {
  26. width: 100%;
  27. height: 200px;
  28. }
  29. }
  30. }
  31. // dropdown
  32. .ant-dropdown-menu {
  33. a {
  34. display: block
  35. }
  36. }
  37. // to fix el-date-picker css style
  38. .ant-range-separator {
  39. box-sizing: content-box;
  40. }
  41. /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  42. ::-webkit-scrollbar {
  43. height: 10px; /*滚动条高度*/
  44. /* background-color: #132958; */
  45. width: 8px;
  46. // background: #fff;
  47. }
  48. /*定义滑块 内阴影+圆角*/
  49. ::-webkit-scrollbar-thumb {
  50. border-radius: 2px;
  51. /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  52. background-color: #909399 !important; /*滚动条的背景颜色*/
  53. }
  54. .ant-table tbody tr:hover>td {
  55. background-color:#d5e4f7!important;
  56. }
  57. .ant-table__body tr.hover-row.current-row>td,.ant-table__body tr.hover-row.ant-table__row--striped.current-row>td,.ant-table__body tr.hover-row.ant-table__row--striped>td,.ant-table__body tr.hover-row>td{
  58. background-color:#d5e4f7!important;
  59. }