mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-03 20:39:07 +08:00
Merge branch 'feature-datapicker-shortcut-improve' into pre-release
This commit is contained in:
commit
22b599e3b2
@ -18,17 +18,31 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&-footer {
|
&-footer {
|
||||||
> div {
|
margin-top: #{px2rem(10px)};
|
||||||
display: block;
|
|
||||||
> button {
|
&-btn {
|
||||||
|
display: inline-block;
|
||||||
|
width: 50%;
|
||||||
|
padding-right: #{px2rem(5px)};
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
padding-left: #{px2rem(5px)};
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
> div {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
color: var(--Button--default-onHover-color);
|
color: var(--Button--default-onHover-color);
|
||||||
background: var(--Button--default-onHover-bg);
|
background: var(--Button--default-onHover-bg);
|
||||||
border-color: var(--Button--default-onHover-border);
|
border-color: var(--Button--default-onHover-border);
|
||||||
margin-top: 10px;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
> ul {
|
ul {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-width: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -40,6 +54,8 @@
|
|||||||
padding: #{px2rem(3px)} 0;
|
padding: #{px2rem(3px)} 0;
|
||||||
border-radius: $Editor-borderRadius;
|
border-radius: $Editor-borderRadius;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
background: #f7f7f9;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -53,8 +69,8 @@
|
|||||||
.ae-DateShortCutControlItem {
|
.ae-DateShortCutControlItem {
|
||||||
@include flexBox();
|
@include flexBox();
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #f7f7f9;
|
|
||||||
padding: #{px2rem(5px)} #{px2rem(10px)};
|
padding: #{px2rem(5px)} #{px2rem(10px)};
|
||||||
|
height: #{px2rem(38px)};
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #e9effd;
|
background: #e9effd;
|
||||||
@ -72,37 +88,26 @@
|
|||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: var(--gap-sm);
|
margin-right: var(--gap-sm);
|
||||||
|
margin-top: -4px;
|
||||||
cursor: move;
|
cursor: move;
|
||||||
color: #8c8c8c;
|
color: #8c8c8c;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-input {
|
&-content {
|
||||||
flex: 1;
|
display: inline-block;
|
||||||
margin: 0;
|
width: 100%;
|
||||||
margin-right: #{px2rem(15px)};
|
text-align: left;
|
||||||
|
padding: 0 #{px2rem(5px)};
|
||||||
}
|
}
|
||||||
|
|
||||||
&-action {
|
&-close {
|
||||||
margin-left: #{px2rem(5px)};
|
cursor: pointer;
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
display: inline-flex;
|
|
||||||
padding: 6px 7px;
|
|
||||||
border: var(--Form-input-borderWidth) solid var(--Form-input-borderColo);
|
|
||||||
background: #fff;
|
|
||||||
font-size: 16px;
|
|
||||||
&:hover {
|
|
||||||
& > svg,
|
|
||||||
& > svg path {
|
|
||||||
fill: var(--primary);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
& > svg,
|
|
||||||
& > svg path {
|
|
||||||
fill: var(--text--muted-color);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-empty {
|
||||||
|
@include flexBox(column, center);
|
||||||
|
height: #{px2rem(38px)};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user