123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- .ant-slider {
- user-select: none;
- width: 100%;
- }
- .ant-slider-track {
- position: relative;
- width: 100%;
- height: 28px;
- background-color: #ffffff;
- }
- .ant-slider-track-number {
- height: 48.5px;
- }
- .ant-slider-track-touch-area {
- position: absolute;
- left: 14px;
- top: 0px;
- right: 12.5px;
- height: 100%;
- }
- .ant-slider-track-fill {
- position: absolute;
- left: 0px;
- top: 12.5px;
- right: 0px;
- height: 3px;
- }
- .ant-slider-track-fill-background {
- position: absolute;
- background-color: #f5f5f5;
- width: 100%;
- height: 100%;
- border-radius: 1.5px;
- }
- .ant-slider-track-fill-front {
- position: absolute;
- height: 100%;
- border-radius: 1.5px;
- background-color: #1677ff;
- }
- .ant-slider-handler {
- position: absolute;
- touch-action: none;
- left: 0;
- transform: translate(-50%, -50%);
- top: 1.5px;
- }
- .ant-slider-handler-block {
- width: 28px;
- height: 28px;
- background: #ffffff;
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12);
- border-radius: 28px;
- text-align: center;
- line-height: 28px;
- color: #1677ff;
- }
- .ant-slider-handler-icon-default {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .ant-slider-handler-icon-default-line1 {
- position: absolute;
- width: 2px;
- height: 8px;
- background-color: #1677ff;
- border-radius: 1px;
- top: 10px;
- left: 8px;
- }
- .ant-slider-handler-icon-default-line2 {
- position: absolute;
- width: 2px;
- height: 12px;
- background-color: #1677ff;
- border-radius: 1px;
- top: 8px;
- right: 13px;
- }
- .ant-slider-handler-icon-default-line3 {
- position: absolute;
- width: 2px;
- height: 8px;
- background-color: #1677ff;
- border-radius: 1px;
- top: 10px;
- right: 8px;
- }
- .ant-slider-handler-icon-from-props {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- text-align: center;
- line-height: 100%;
- }
- .ant-slider-handler-icon-from-props-icon {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .ant-slider-tick {
- position: absolute;
- width: 8px;
- height: 8px;
- border-radius: 8px;
- top: 1.5px;
- transform: translate(-50%, -50%);
- }
- .ant-slider-tick-front {
- background-color: #1677ff;
- }
- .ant-slider-tick-back {
- background-color: #f5f5f5;
- }
- .ant-slider-tick-number {
- position: absolute;
- color: #333333;
- font-size: 12px;
- transform: translateX(-50%);
- top: 22px;
- left: 4px;
- text-align: center;
- line-height: 16.5px;
- height: 16.5px;
- }
|