react-super
Version:
54 lines (52 loc) • 1.75 kB
text/less
@dark-color: #272727;
@dark-color-hover: #4e4e4e;
@dark-color-active: #000000;
.ant-btn-primary.super-button-theme-dark {
background-color: @dark-color ;
border-color: @dark-color ;
}
.ant-btn-primary.super-button-theme-dark:hover {
background-color: @dark-color-hover ;
border-color: @dark-color-hover ;
}
.ant-btn-primary.super-button-theme-dark:active {
background-color: @dark-color-active ;
border-color: @dark-color-active ;
}
.ant-btn-background-ghost.super-button-theme-dark {
color: @dark-color ;
background: transparent ;
}
.ant-btn-link.super-button-theme-dark {
color: @dark-color ;
background: transparent ;
border-color: transparent ;
}
.ant-btn-background-ghost.super-button-theme-dark:hover,
.ant-btn-link.super-button-theme-dark:hover {
color: @dark-color-hover ;
background: transparent ;
}
.ant-btn-background-ghost.super-button-theme-dark:active,
.ant-btn-link.super-button-theme-dark:active {
color: @dark-color-active ;
}
.ant-btn-background-ghost.super-button-theme-dark:focus,
.ant-btn-link.super-button-theme-dark:focus {
color: @dark-color;
}
.ant-btn-dashed.super-button-theme-dark:hover,
.ant-btn-default.super-button-theme-dark:hover {
color: @dark-color ;
border-color: @dark-color ;
}
.ant-btn-dashed.super-button-theme-dark:active,
.ant-btn-default.super-button-theme-dark:active {
color: @dark-color-active ;
border-color: @dark-color-active ;
}
.ant-btn-dashed.super-button-theme-dark:focus,
.ant-btn-default.super-button-theme-dark:focus {
color: @dark-color;
border-color: @dark-color;
}