1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // cover some element-ui styles
- .ant-breadcrumb__inner,
- .ant-breadcrumb__inner a {
- font-weight: 400 !important;
- }
- .ant-upload {
- input[type="file"] {
- display: none !important;
- }
- }
- .ant-upload__input {
- display: none;
- }
- // to fixed https://github.com/ElemeFE/element/issues/2461
- .ant-dialog {
- transform: none;
- left: 0;
- position: relative;
- margin: 0 auto;
- }
- // refine element ui upload
- .upload-container {
- .ant-upload {
- width: 100%;
- .ant-upload-dragger {
- width: 100%;
- height: 200px;
- }
- }
- }
- // dropdown
- .ant-dropdown-menu {
- a {
- display: block
- }
- }
- // to fix el-date-picker css style
- .ant-range-separator {
- box-sizing: content-box;
- }
- /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
- ::-webkit-scrollbar {
- height: 10px; /*滚动条高度*/
- /* background-color: #132958; */
- width: 8px;
- // background: #fff;
- }
- /*定义滑块 内阴影+圆角*/
- ::-webkit-scrollbar-thumb {
- border-radius: 2px;
- /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
- background-color: #909399 !important; /*滚动条的背景颜色*/
- }
- .ant-table tbody tr:hover>td {
- background-color:#d5e4f7!important;
- }
- .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{
- background-color:#d5e4f7!important;
- }
|