| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // 对 ant design vue 的默认样式覆盖
- // popover
- .ant-popover {
- padding-top: 5px !important;
- }
- .ant-popover-arrow {
- display: none;
- }
- .ant-popover-inner {
- box-shadow: $boxShadow;
- border: 1px solid $borderColor;
- }
- .ant-popover-inner-content {
- padding: 12px !important;
- }
- // dropdown
- .ant-dropdown {
- min-width: 120px;
- }
- .ant-dropdown-menu {
- box-shadow: $boxShadow;
- border: 1px solid $borderColor;
- }
- .ant-dropdown-menu-item {
- transition: none;
- &:hover {
- background-color: #e1e1e1;
- }
- }
- // button
- .ant-btn {
- &.no-padding {
- padding: 0;
- }
- }
- // radio
- .ant-radio-button-wrapper {
- text-align: center;
- }
- // slider
- .ant-slider-track {
- background-color: $themeColor;
- }
- .ant-slider-handle {
- border-color: $themeColor;
- }
- // select
- .ant-select {
- user-select: none;
- }
- // tooltip
- .ant-tooltip-inner {
- font-size: 12px;
- }
|