mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 01:00:14 -04:00
36 lines
680 B
Plaintext
36 lines
680 B
Plaintext
@import (reference, less) "~@/assets/less/ant";
|
|
|
|
@btn-extra-options-bg: fade(@redash-gray, 10%);
|
|
@btn-extra-options-border: fade(@redash-gray, 15%);
|
|
|
|
.dynamic-form {
|
|
.extra-options {
|
|
margin: 25px 0 10px;
|
|
}
|
|
|
|
.extra-options-button {
|
|
&,
|
|
&:focus,
|
|
&:hover {
|
|
height: 40px;
|
|
font-weight: 500;
|
|
background-color: @btn-extra-options-bg;
|
|
border-color: @btn-extra-options-border;
|
|
color: @btn-default-color;
|
|
}
|
|
|
|
&:focus,
|
|
&:hover {
|
|
background-color: fade(@btn-extra-options-bg, 15%);
|
|
}
|
|
}
|
|
|
|
.extra-options-content {
|
|
margin-top: 15px;
|
|
|
|
.ant-form-item:last-of-type {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|
|
}
|