fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
4.6 KiB

7 years ago
@import "../../../index";
8 years ago
8 years ago
body .bi-button, #body .bi-button {
8 years ago
.border-radius(2px);
8 years ago
border: 1px solid @color-bi-border-highlight;
background-color: @color-bi-background-highlight;
8 years ago
text-align: center;
vertical-align: middle;
8 years ago
cursor: pointer;
8 years ago
font-size: 14px;
8 years ago
&.block {
font-size: inherit;
border-width: 0;
.border-radius(0px);
}
8 years ago
&.clear {
8 years ago
font-size: inherit;
8 years ago
border-width: 0;
background-color: transparent;
&:hover {
.opacity(0.9);
}
&:active {
.opacity(0.8);
8 years ago
}
}
&.ghost {
font-size: inherit;
background-color: transparent;
}
8 years ago
&.button-common {
8 years ago
&, & .b-font:before {
8 years ago
color: @color-bi-text;
}
8 years ago
&.clear, &.clear .b-font:before {
8 years ago
color: @color-bi-text-highlight;
8 years ago
}
&.ghost{
&, & .b-font:before{
color: @color-bi-text-highlight;
}
&:hover{
color: @color-bi-text;
background-color: @color-bi-background-highlight;
}
&:active{
background-color: @color-bi-background-highlight;
}
}
8 years ago
}
&.button-ignore {
8 years ago
& {
8 years ago
&, & .b-font:before {
color: @color-bi-text-highlight;
8 years ago
}
8 years ago
background-color: @color-bi-background-default;
border-color: @color-bi-border-highlight;
8 years ago
}
&.clear {
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-success {
8 years ago
& {
8 years ago
&, & .b-font:before {
color: @color-bi-text;
}
8 years ago
background-color: @color-bi-background-success;
border-color: @color-bi-border-success;
8 years ago
}
8 years ago
&.clear {
8 years ago
&, & .b-font:before {
color: @color-bi-text-success;
}
8 years ago
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-warning {
& {
&, & .b-font:before {
color: @color-bi-text;
}
background-color: @color-bi-background-warning;
border-color: @color-bi-border-warning;
}
&.clear {
&, & .b-font:before {
color: @color-bi-text-redmark;
}
background-color: transparent;
border-width: 0;
}
}
&.button-error {
8 years ago
& {
8 years ago
&, & .b-font:before {
color: @color-bi-text;
}
background-color: @color-bi-background-failure;
border-color: @color-bi-border-failure;
8 years ago
}
8 years ago
&.clear {
8 years ago
&, & .b-font:before {
color: @color-bi-text-failure;
8 years ago
}
8 years ago
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-common.disabled,
&.button-success.disabled,
&.button-error.disabled,
8 years ago
&.button-warning.disabled {
8 years ago
&, &.base-disabled {
&, & .b-font:before {
color: @color-bi-text !important;
}
background: @color-bi-background-disabled !important;
border-color: @color-bi-border-disabled !important;
}
8 years ago
}
&.button-ignore.disabled {
8 years ago
&, & .b-font:before {
color: @color-bi-text-disabled !important;
}
8 years ago
background: @color-bi-background-default !important;
border-color: @color-bi-border-line !important;
}
&.button-common.disabled,
&.button-success.disabled,
&.button-warning.disabled,
&.button-error.disabled,
8 years ago
&.button-ignore.disabled {
&.clear {
8 years ago
&, & .b-font:before {
color: @color-bi-text-disabled !important;
}
8 years ago
background: transparent !important;
border-width: 0 !important;
&:hover, &:active {
.opacity(1);
}
8 years ago
}
&.ghost {
&, & .b-font:before {
color: @color-bi-text-highlight !important;
}
background: transparent !important;
border-color: @color-bi-text-highlight !important;
.opacity(0.5);
}
8 years ago
}
}
.bi-basic-button {
&.button-common, &.button-success, &.button-warning, &.button-error, &.button-ignore {
&:hover{
& .bi-button-mask {
.opacity(0.1);
background-color: @color-bi-background-default;
}
}
&:active{
& .bi-button-mask {
.opacity(0.1);
background-color: @color-bi-button-mask;
}
8 years ago
}
}
}
.bi-theme-dark {
body .bi-button, #body .bi-button {
&.button-common {
&.ghost{
&, & .b-font:before{
color: @color-bi-text;
border-color: @color-bi-border-default;
}
&:hover{
color: @color-bi-text-normal;
background-color: @color-bi-background-default;
}
&:active{
.background-color(@color-bi-background-default, 90%);
}
}
}
&.button-common.disabled{
&.ghost {
&, & .b-font:before {
color: @color-bi-text !important;
}
background: transparent !important;
border-color: @color-bi-border-default !important;
.opacity(0.5);
}
}
}
8 years ago
}