mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
2ee3d43534
* style: affix & util * feat(alert): add customIcon slot * feat(anchor): ts type * style: auto-complete * feat: avatar add crossOrigin & maxPopoverTrigger * style(backTop): v-show instead v-if * style: badge * style: breadcrumb * feat: button add global size * feat: update i18n * feat: picker add disabledTime * test: update snap * doc: update img url * style: fix Card tabs of left position * doc: update cascader doc * feat: collapse * style: comment * style: configprovider * feat: date-picker add soem icon slot * style: update descriptions style * feat: add divider orientationMargin * doc: update drawer * feat: dropdown add destroyPopupOnHide & loading * style: update empty * feat: form add labelWrap * style: update grid * test: update grid snap * fix: image ts error * fix: mentions cannot select, close #5233 * doc: update pagination change info, close #5293 * fix: table dynamic expand error, close #5295 * style: remove not use * release 3.0.0-beta.11 * doc: update typo * feat: input add showCount * feat: inputNumber add prefix slot * style: update layout * style: update list * feat: add locale i18 * style: update locale ts * style: update mentions * feat: menu divider add dashed * perf: menu * perf: menu animate * feat: modal method add wrapClassName * style: update pageheader * feat: update pagination ts * feat: confirm add showCancel & promise * doc: update popover * style: update progress * style: radio * style: update rate、result、row * feat: select add fieldNames * feat: add skeleton button & input * feat: spin tip support slot * style: slider & space * stype: update steps ts type * style: update switch * feat: table add tree filter * test: update input sanp * feat: table add filterMode... * fix: tree autoExpandParent bug * test: update input snap * doc: tabs add destroyInactiveTabPane * style: update tag * style: update timeline & time-picker * fix: Tooltip arrowPointAtCenter 1px shift bug * feat: typography add enterEnterIcon triggerType * doc: update tree-select * fix: deps and TypeScript types * style: udpate transfer * style: update style * doc: add colorScheme * chore: add css var builg * doc: sort api * style: lint code * doc: add css var * test: update snap * chore: add pre script * chore: update lint * perf: collapse animate * perf: collapse tree * perf: typography shaking when edit * doc: update auto-complete demo * fix: table tree not have animate * feat: deprecated dropdown center placement * feat: deprecated dropdown center placement * test: update snap
155 lines
3.4 KiB
Plaintext
155 lines
3.4 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@switch-prefix-cls: ~'@{ant-prefix}-switch';
|
|
@switch-duration: 0.2s;
|
|
|
|
@switch-pin-size: @switch-height - 4px;
|
|
@switch-sm-pin-size: @switch-sm-height - 4px;
|
|
|
|
.@{switch-prefix-cls} {
|
|
.reset-component();
|
|
|
|
position: relative;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
min-width: @switch-min-width;
|
|
height: @switch-height;
|
|
line-height: @switch-height;
|
|
vertical-align: middle;
|
|
background-color: @disabled-color;
|
|
border: 0;
|
|
border-radius: 100px;
|
|
cursor: pointer;
|
|
transition: all @switch-duration;
|
|
user-select: none;
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
box-shadow: 0 0 0 2px fade(@disabled-color, 10%);
|
|
}
|
|
|
|
&-checked:focus {
|
|
box-shadow: 0 0 0 2px @primary-1;
|
|
}
|
|
|
|
&:focus:hover {
|
|
box-shadow: none;
|
|
}
|
|
|
|
&-checked {
|
|
background-color: @switch-color;
|
|
}
|
|
|
|
&-loading,
|
|
&-disabled {
|
|
cursor: not-allowed;
|
|
opacity: @switch-disabled-opacity;
|
|
|
|
* {
|
|
box-shadow: none;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
// ========================= Inner ==========================
|
|
&-inner {
|
|
display: block;
|
|
margin: 0 @switch-inner-margin-min 0 @switch-inner-margin-max;
|
|
color: @text-color-inverse;
|
|
font-size: @font-size-sm;
|
|
transition: margin @switch-duration;
|
|
}
|
|
|
|
&-checked &-inner {
|
|
margin: 0 @switch-inner-margin-max 0 @switch-inner-margin-min;
|
|
}
|
|
|
|
// ========================= Handle =========================
|
|
&-handle {
|
|
position: absolute;
|
|
top: @switch-padding;
|
|
left: @switch-padding;
|
|
width: @switch-pin-size;
|
|
height: @switch-pin-size;
|
|
transition: all @switch-duration ease-in-out;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: @switch-bg;
|
|
border-radius: (@switch-pin-size / 2);
|
|
box-shadow: 0 2px 4px 0 @switch-shadow-color;
|
|
transition: all @switch-duration ease-in-out;
|
|
content: '';
|
|
}
|
|
}
|
|
|
|
&-checked &-handle {
|
|
left: calc(100% - @switch-pin-size - @switch-padding);
|
|
}
|
|
|
|
&:not(&-disabled):active {
|
|
.@{switch-prefix-cls}-handle::before {
|
|
right: -30%;
|
|
left: 0;
|
|
}
|
|
|
|
&.@{switch-prefix-cls}-checked {
|
|
.@{switch-prefix-cls}-handle::before {
|
|
right: 0;
|
|
left: -30%;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ======================== Loading =========================
|
|
&-loading-icon.@{iconfont-css-prefix} {
|
|
position: relative;
|
|
top: ((@switch-pin-size - @font-size-base) / 2);
|
|
color: rgba(0, 0, 0, 0.65);
|
|
vertical-align: top;
|
|
}
|
|
|
|
&-checked &-loading-icon {
|
|
color: @switch-color;
|
|
}
|
|
|
|
// ========================== Size ==========================
|
|
&-small {
|
|
min-width: @switch-sm-min-width;
|
|
height: @switch-sm-height;
|
|
line-height: @switch-sm-height;
|
|
|
|
.@{switch-prefix-cls}-inner {
|
|
margin: 0 @switch-sm-inner-margin-min 0 @switch-sm-inner-margin-max;
|
|
font-size: @font-size-sm;
|
|
}
|
|
|
|
.@{switch-prefix-cls}-handle {
|
|
width: @switch-sm-pin-size;
|
|
height: @switch-sm-pin-size;
|
|
}
|
|
|
|
.@{switch-prefix-cls}-loading-icon {
|
|
top: ((@switch-sm-pin-size - 9px) / 2);
|
|
font-size: 9px;
|
|
}
|
|
|
|
&.@{switch-prefix-cls}-checked {
|
|
.@{switch-prefix-cls}-inner {
|
|
margin: 0 @switch-sm-inner-margin-max 0 @switch-sm-inner-margin-min;
|
|
}
|
|
|
|
.@{switch-prefix-cls}-handle {
|
|
left: calc(100% - @switch-sm-pin-size - @switch-padding);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@import './rtl';
|