mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
28 lines
502 B
Plaintext
28 lines
502 B
Plaintext
@import "~antd/lib/input-number/style/index"; // for ant @vars
|
|
|
|
@input-dirty: #fffce1;
|
|
|
|
.parameter-input {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
.@{ant-prefix}-input,
|
|
.@{ant-prefix}-input-number {
|
|
min-width: 100% !important;
|
|
}
|
|
|
|
.@{ant-prefix}-select {
|
|
width: 100%;
|
|
}
|
|
|
|
&[data-dirty] {
|
|
.@{ant-prefix}-input,
|
|
.@{ant-prefix}-input-number,
|
|
.@{ant-prefix}-select-selector,
|
|
.@{ant-prefix}-picker {
|
|
background-color: @input-dirty;
|
|
}
|
|
}
|
|
}
|