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.

99 lines
2.3 KiB

8 years ago
@import "../../../bibase";
.bi-button {
.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
&.clear {
border-width: 0;
background-color: transparent;
&:hover, &:active {
.opacity(0.75);
}
}
8 years ago
&.button-common {
8 years ago
& {
8 years ago
color: @color-bi-text;
}
8 years ago
&.clear {
color: @color-bi-text-highlight;
8 years ago
}
}
&.button-ignore {
8 years ago
& {
8 years ago
color: @color-bi-text-black;
8 years ago
background-color: @color-bi-background-default;
border-color: @color-bi-border-line;
}
&.clear {
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-success {
8 years ago
& {
8 years ago
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 {
color: @color-bi-text-success;
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-warning {
8 years ago
& {
8 years ago
color: @color-bi-text;
8 years ago
background-color: @color-bi-background-delete;
border-color: @color-bi-border-delete;
8 years ago
}
8 years ago
&.clear {
color: @color-bi-text-warning;
background-color: transparent;
border-width: 0;
8 years ago
}
}
&.button-common.disabled,
&.button-success.disabled,
&.button-warning.disabled {
8 years ago
color: @color-bi-text !important;
8 years ago
background: @color-bi-background-disabled !important;
8 years ago
border-color: @color-bi-border-disabled !important;
8 years ago
}
&.button-ignore.disabled {
8 years ago
color: @color-bi-text-disabled !important;
background: @color-bi-background-default !important;
border-color: @color-bi-border-line !important;
}
&.button-common.disabled,
&.button-success.disabled,
&.button-warning.disabled,
&.button-ignore.disabled {
&.clear {
8 years ago
color: @color-bi-text-disabled !important;
8 years ago
background: transparent !important;
border-width: 0 !important;
&:hover, &:active {
.opacity(1);
}
8 years ago
}
}
}
.bi-basic-button {
&.button-common, &.button-success, &.button-warning {
& .bi-button-mask {
.opacity(0.2);
background-color: @color-bi-background-default;
}
}
& .bi-button-mask {
.opacity(0.2);
background-color: @color-bi-button-mask;
}
}