mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 12:07:54 +08:00
73bef787cd
* feat: add Result component * fix: update md template tag html>tpl - fix `result` typo - update jest `result` snapshots * refactor: svg file to functional component icon - update jest snapshot * feat: add result * Feat descriptions (#1251) * feat: add descriptions * fix: add descriptions types and fix docs * fix: lint change code * fix: demo warning * fix: update demo, snapshot and remove classnames * test: add descriptions test * fix: descriptions demo (#1498) * feat: add page header (#1250) * feat: add page-header component * update site: page-header * ts definition update: page-header * get page-header props with getComponentFromProp func * optimize page-header * doc: add page-header actions.md responsive.md * breadcrumb itemRender add pure function support * style: format code * feat: update style to 3.23.6 from 2.13.6 * feat: update style to 3.26.8 from 3.23.6 * chore: update util * chore: update util * feat: update affix * feat: update alert * feat: update anchor * feat: update auto-complete * feat: update avatar * feat: update back-top * feat: update badge * feat: update button * feat: update breadcrumb * feat: update ts * docs: update doc * feat: update calendat * feat: update card * feat: update carousel * feat: update carousel * feat: update checkbox * feat: update comment * feat: update config-provider * docs: update doc * feat: update collapse * feat: update locale * feat: update date-picker * feat: update divider * feat: update drawer * feat: update dropdown * feat: update rc-trigger * feat: update dropdown * feat: update empty * test: add empty test * feat: update form * feat: update form * feat: update spin * feat: update grid * docs: update grid doc * feat: update icon * feat: update slider * feat: update textarea * feat: update input-number * feat: update layout * feat: update list * feat: update menu * feat: meaage add key for update content * feat: modal add closeIcon support * feat: update notification * feat: add pagination disabled support * feat: popconfirm add disabled support * test: update popover * feat: progress support custom line-gradiend * feat: update radio * test: update radio test * docs: update rate demo * feat: skeleton add avatar support number type * test: add switch test * test: update statistic test * fix: input clear icon event * feat: steps add type、 v-model、subTitle * feat: delete typography component * feat: delete Typography style * perf: update select * feat: add download transformFile previewFile actio * docs: update upload * feat: update tree-select * docs: update tree-select * feat: tree add blockNode selectable * docs: add tree demo * test: update snap * docs: updatedoc * feat: update tag * docs: update ad doc * feat: update tooltip * feat: update timeline * feat: time-picker add clearIcon * docs: update tabs * feat: transfer support custom children * test: update transfer test * feat: update table * test: update table test * test: update test * feat: calendar update locale * test: update test snap * feat: add mentions (#1790) * feat: mentions style * feat: theme default * feat: add mentions component * feat: mentions API * feat: add unit test for mentions * feat: update mentions demo * perf: model and inheritAttrs for mentions * perf: use getComponentFromProp instead of this.$props * perf: mentions rm defaultProps * feat: rm rows in mentionsProps * fix: mentions keyDown didn't work * docs: update mentions api * perf: mentions code * feat: update mentions * bump 1.5.0-alpha.1 * feat: pageheader add ghost prop * docs: update descriptions demo * chore: page-header add ghost type * fix: color error * feat: update to 3.26.12 * fix: some prop default value * fix(typo): form, carousel, upload. duplicate identifier (#1848) * Add Mentions Type (#1845) * feat: add mentions type * feat: add mentions in ant-design-vue.d.ts * docs: update doc * docs: add changelog * fix: mentions getPopupCotainer value (#1850) * docs: update doc * docs: uptate demo * docs: update demo * docs: delete demo * docs: delete doc * test: update snapshots * style: format code * chore: update travis * docs: update demo Co-authored-by: Sendya <18x@loacg.com> Co-authored-by: zkwolf <chenhao5866@gmail.com> Co-authored-by: drafish <xwlyy1991@163.com> Co-authored-by: Amour1688 <31695475+Amour1688@users.noreply.github.com>
358 lines
9.2 KiB
Plaintext
358 lines
9.2 KiB
Plaintext
// mixins for button
|
|
// ------------------------
|
|
.button-size(@height; @padding; @font-size; @border-radius) {
|
|
height: @height;
|
|
padding: @padding;
|
|
font-size: @font-size;
|
|
border-radius: @border-radius;
|
|
}
|
|
|
|
.button-disabled(@color: @btn-disable-color; @background: @btn-disable-bg; @border: @btn-disable-border) {
|
|
&-disabled,
|
|
&.disabled,
|
|
&[disabled] {
|
|
&,
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
.button-color(@color; @background; @border);
|
|
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button-variant-primary(@color; @background) {
|
|
.button-color(@color; @background; @background);
|
|
|
|
text-shadow: @btn-text-shadow;
|
|
box-shadow: @btn-primary-shadow;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.button-color(
|
|
@color; ~`colorPalette('@{background}', 5) `; ~`colorPalette('@{background}', 5) `
|
|
);
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
.button-color(
|
|
@color; ~`colorPalette('@{background}', 7) `; ~`colorPalette('@{background}', 7) `
|
|
);
|
|
}
|
|
|
|
.button-disabled();
|
|
}
|
|
|
|
.button-variant-other(@color; @background; @border) {
|
|
.button-color(@color; @background; @border);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.button-color(
|
|
~`colorPalette('@{btn-primary-bg}', 5) `; @background; ~`colorPalette('@{btn-primary-bg}', 5)
|
|
`
|
|
);
|
|
}
|
|
&:active,
|
|
&.active {
|
|
.button-color(
|
|
~`colorPalette('@{btn-primary-bg}', 7) `; @background; ~`colorPalette('@{btn-primary-bg}', 7)
|
|
`
|
|
);
|
|
}
|
|
.button-disabled();
|
|
}
|
|
.button-variant-ghost(@color; @border: @color) {
|
|
.button-color(@color; transparent; @border);
|
|
text-shadow: none;
|
|
&:hover,
|
|
&:focus {
|
|
& when (@border = transparent) {
|
|
.button-color(~`colorPalette('@{color}', 5) `; transparent; transparent);
|
|
}
|
|
& when not(@border = transparent) {
|
|
.button-color(~`colorPalette('@{color}', 5) `; transparent; ~`colorPalette('@{color}', 5) `);
|
|
}
|
|
}
|
|
&:active,
|
|
&.active {
|
|
& when (@border = transparent) {
|
|
.button-color(~`colorPalette('@{color}', 7) `; transparent; transparent);
|
|
}
|
|
& when not(@border = transparent) {
|
|
.button-color(~`colorPalette('@{color}', 7) `; transparent; ~`colorPalette('@{color}', 7) `);
|
|
}
|
|
}
|
|
.button-disabled();
|
|
}
|
|
.button-color(@color; @background; @border) {
|
|
color: @color;
|
|
background-color: @background;
|
|
border-color: @border;
|
|
// a inside Button which only work in Chrome
|
|
// http://stackoverflow.com/a/17253457
|
|
> a:only-child {
|
|
color: currentColor;
|
|
&::after {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: transparent;
|
|
content: '';
|
|
}
|
|
}
|
|
}
|
|
.button-group-base(@btnClassName) {
|
|
position: relative;
|
|
display: inline-block;
|
|
> .@{btnClassName},
|
|
> span > .@{btnClassName} {
|
|
position: relative;
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
z-index: 2;
|
|
}
|
|
&:disabled {
|
|
z-index: 0;
|
|
}
|
|
}
|
|
> .@{btnClassName}-icon-only {
|
|
font-size: @font-size-base;
|
|
}
|
|
// size
|
|
&-lg > .@{btnClassName},
|
|
&-lg > span > .@{btnClassName} {
|
|
.button-size(@btn-height-lg; @btn-padding-lg; @btn-font-size-lg; 0);
|
|
line-height: @btn-height-lg - 2px;
|
|
}
|
|
&-lg > .@{btnClassName}.@{btnClassName}-icon-only {
|
|
.square(@btn-height-lg);
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
&-sm > .@{btnClassName},
|
|
&-sm > span > .@{btnClassName} {
|
|
.button-size(@btn-height-sm; @btn-padding-sm; @font-size-base; 0);
|
|
line-height: @btn-height-sm - 2px;
|
|
> .@{iconfont-css-prefix} {
|
|
font-size: @font-size-base;
|
|
}
|
|
}
|
|
&-sm > .@{btnClassName}.@{btnClassName}-icon-only {
|
|
.square(@btn-height-sm);
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
// Base styles of buttons
|
|
// --------------------------------------------------
|
|
.btn() {
|
|
position: relative;
|
|
display: inline-block;
|
|
font-weight: @btn-font-weight;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
background-image: none;
|
|
border: @btn-border-width @btn-border-style transparent;
|
|
box-shadow: @btn-shadow;
|
|
cursor: pointer;
|
|
transition: all 0.3s @ease-in-out;
|
|
user-select: none;
|
|
touch-action: manipulation;
|
|
.button-size(@btn-height-base; @btn-padding-base; @font-size-base; @btn-border-radius-base);
|
|
> .@{iconfont-css-prefix} {
|
|
line-height: 1;
|
|
}
|
|
&,
|
|
&:active,
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
&:not([disabled]):hover {
|
|
text-decoration: none;
|
|
}
|
|
&:not([disabled]):active {
|
|
outline: 0;
|
|
box-shadow: none;
|
|
}
|
|
&.disabled,
|
|
&[disabled] {
|
|
cursor: not-allowed;
|
|
> * {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
&-lg {
|
|
.button-size(@btn-height-lg; @btn-padding-lg; @btn-font-size-lg; @btn-border-radius-base);
|
|
}
|
|
&-sm {
|
|
.button-size(@btn-height-sm; @btn-padding-sm; @btn-font-size-sm; @btn-border-radius-sm);
|
|
}
|
|
}
|
|
// primary button style
|
|
.btn-primary() {
|
|
.button-variant-primary(@btn-primary-color; @btn-primary-bg);
|
|
}
|
|
// default button style
|
|
.btn-default() {
|
|
.button-variant-other(@btn-default-color; @btn-default-bg; @btn-default-border);
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
text-decoration: none;
|
|
background: @btn-default-bg;
|
|
}
|
|
}
|
|
// ghost button style
|
|
.btn-ghost() {
|
|
.button-variant-other(@btn-ghost-color, @btn-ghost-bg, @btn-ghost-border);
|
|
}
|
|
// dashed button style
|
|
.btn-dashed() {
|
|
.button-variant-other(@btn-default-color, @btn-default-bg, @btn-default-border);
|
|
border-style: dashed;
|
|
}
|
|
// danger button style
|
|
.btn-danger() {
|
|
.button-variant-primary(@btn-danger-color, @btn-danger-bg);
|
|
}
|
|
// link button style
|
|
.btn-link() {
|
|
.button-variant-other(@link-color, transparent, transparent);
|
|
box-shadow: none;
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
border-color: transparent;
|
|
}
|
|
.button-disabled(@disabled-color; transparent; transparent);
|
|
}
|
|
// round button
|
|
.btn-round(@btnClassName: btn) {
|
|
.button-size(@btn-circle-size; 0 @btn-circle-size / 2; @font-size-base; @btn-circle-size);
|
|
&.@{btnClassName}-lg {
|
|
.button-size(
|
|
@btn-circle-size-lg; 0 @btn-circle-size-lg / 2; @btn-font-size-lg; @btn-circle-size-lg
|
|
);
|
|
}
|
|
&.@{btnClassName}-sm {
|
|
.button-size(
|
|
@btn-circle-size-sm; 0 @btn-circle-size-sm / 2; @font-size-base; @btn-circle-size-sm
|
|
);
|
|
}
|
|
}
|
|
// square button: the content only contains icon
|
|
.btn-square(@btnClassName: btn) {
|
|
.square(@btn-square-size);
|
|
.button-size(@btn-square-size; 0; @font-size-base + 2px; @btn-border-radius-base);
|
|
&.@{btnClassName}-lg {
|
|
.square(@btn-square-size-lg);
|
|
.button-size(@btn-square-size-lg; 0; @btn-font-size-lg + 2px; @btn-border-radius-base);
|
|
}
|
|
&.@{btnClassName}-sm {
|
|
.square(@btn-square-size-sm);
|
|
.button-size(@btn-square-size-sm; 0; @font-size-base; @btn-border-radius-base);
|
|
}
|
|
}
|
|
// circle button: the content only contains icon
|
|
.btn-circle(@btnClassName: btn) {
|
|
min-width: @btn-height-base;
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
text-align: center;
|
|
border-radius: 50%;
|
|
&.@{btnClassName}-lg {
|
|
min-width: @btn-height-lg;
|
|
border-radius: 50%;
|
|
}
|
|
&.@{btnClassName}-sm {
|
|
min-width: @btn-height-sm;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
// Horizontal button groups style
|
|
// --------------------------------------------------
|
|
.btn-group(@btnClassName: btn) {
|
|
.button-group-base(@btnClassName);
|
|
.@{btnClassName} + .@{btnClassName},
|
|
.@{btnClassName} + &,
|
|
span + .@{btnClassName},
|
|
.@{btnClassName} + span,
|
|
> span + span,
|
|
& + .@{btnClassName},
|
|
& + & {
|
|
margin-left: -1px;
|
|
}
|
|
.@{btnClassName}-primary + .@{btnClassName}:not(.@{btnClassName}-primary):not([disabled]) {
|
|
border-left-color: transparent;
|
|
}
|
|
.@{btnClassName} {
|
|
border-radius: 0;
|
|
}
|
|
> .@{btnClassName}:first-child,
|
|
> span:first-child > .@{btnClassName} {
|
|
margin-left: 0;
|
|
}
|
|
> .@{btnClassName}:only-child {
|
|
border-radius: @btn-border-radius-base;
|
|
}
|
|
> span:only-child > .@{btnClassName} {
|
|
border-radius: @btn-border-radius-base;
|
|
}
|
|
> .@{btnClassName}:first-child:not(:last-child),
|
|
> span:first-child:not(:last-child) > .@{btnClassName} {
|
|
border-top-left-radius: @btn-border-radius-base;
|
|
border-bottom-left-radius: @btn-border-radius-base;
|
|
}
|
|
> .@{btnClassName}:last-child:not(:first-child),
|
|
> span:last-child:not(:first-child) > .@{btnClassName} {
|
|
border-top-right-radius: @btn-border-radius-base;
|
|
border-bottom-right-radius: @btn-border-radius-base;
|
|
}
|
|
&-sm {
|
|
> .@{btnClassName}:only-child {
|
|
border-radius: @btn-border-radius-sm;
|
|
}
|
|
> span:only-child > .@{btnClassName} {
|
|
border-radius: @btn-border-radius-sm;
|
|
}
|
|
> .@{btnClassName}:first-child:not(:last-child),
|
|
> span:first-child:not(:last-child) > .@{btnClassName} {
|
|
border-top-left-radius: @btn-border-radius-sm;
|
|
border-bottom-left-radius: @btn-border-radius-sm;
|
|
}
|
|
> .@{btnClassName}:last-child:not(:first-child),
|
|
> span:last-child:not(:first-child) > .@{btnClassName} {
|
|
border-top-right-radius: @btn-border-radius-sm;
|
|
border-bottom-right-radius: @btn-border-radius-sm;
|
|
}
|
|
}
|
|
& > & {
|
|
float: left;
|
|
}
|
|
& > &:not(:first-child):not(:last-child) > .@{btnClassName} {
|
|
border-radius: 0;
|
|
}
|
|
& > &:first-child:not(:last-child) {
|
|
> .@{btnClassName}:last-child {
|
|
padding-right: 8px;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
& > &:last-child:not(:first-child) > .@{btnClassName}:first-child {
|
|
padding-left: 8px;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
}
|