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.
31 lines
664 B
31 lines
664 B
@import "../../index.less"; |
|
|
|
.bi-instruction { |
|
.border-radius(2px); |
|
|
|
&.instruction-error{ |
|
background: @color-bi-background-bubble-error; |
|
color: @color-bi-text-failure; |
|
} |
|
|
|
&.instruction-common{ |
|
background: @color-bi-background-bubble-normal; |
|
color: @color-bi-text-highlight; |
|
} |
|
|
|
&.instruction-success{ |
|
background: @color-bi-background-bubble-success; |
|
color: @color-bi-text-success; |
|
} |
|
|
|
&.instruction-warning{ |
|
background: @color-bi-background-bubble-warning; |
|
color: @color-bi-text-redmark; |
|
} |
|
} |
|
|
|
.bi-theme-dark { |
|
.bi-instruction.instruction-error { |
|
background: @color-bi-background-bubble-error-theme-dark; |
|
} |
|
}
|
|
|