mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:09:08 +08:00
33686a375e
* 使用自定义 css 属性初步,支持大部分组件的展现 * button 大部分可以看了 * cxd 和 dark 大部分正常 * 修复一些细节样式错误;补充 css 变量的文档 * 修复几个脚本发现的错误 * 完善一下注释 * 修复一些样式不一致问题 * 修复可能存在的 css xss * 恢复 font-variant 功能 * 修复绝大部分 @if 相关的问题 * 恢复之前的注释 * 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色 * 修复 button group 在 cxd 下不一致问题 * 缩小查看配置和复制配置的宽度,留出更多空间 * 修复一些潜在的错误 * 恢复 utilities 中 label 背景色的设置 * 修复错误的 css 变量 * 补充 IE11 Variables Polyfill
106 lines
2.2 KiB
SCSS
106 lines
2.2 KiB
SCSS
.#{$ns}IconPickerControl {
|
|
@include input-text();
|
|
|
|
&-placeholder {
|
|
color: var(--Form-input-placeholderColor);
|
|
user-select: none;
|
|
position: absolute;
|
|
left: var(--Form-input-paddingX);
|
|
top: var(--Form-input-paddingY);
|
|
margin-top: calc(2 * var(--Form-input-borderWidth));
|
|
line-height: var(--Form-input-lineHeight);
|
|
}
|
|
|
|
&-valueWrap {
|
|
flex-grow: 1;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
|
|
> input {
|
|
display: inline-block;
|
|
width: auto;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
&-input--withAC {
|
|
position: relative;
|
|
flex-wrap: wrap;
|
|
|
|
> input {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
&-sugsPanel {
|
|
position: absolute;
|
|
background: var(--Form-select-menu-bg);
|
|
color: var(--Form-select-menu-color);
|
|
border: var(--Form-input-borderWidth) solid
|
|
var(--Form-input-onFocused-borderColor);
|
|
left: px2rem(-1px);
|
|
right: px2rem(-1px);
|
|
top: 100%;
|
|
z-index: 10;
|
|
height: auto;
|
|
}
|
|
|
|
&-tabs {
|
|
background: var(--IconPicker-tabs-bg);
|
|
}
|
|
|
|
&-tab {
|
|
display: inline-block;
|
|
padding: var(--IconPicker-tab-padding);
|
|
height: var(--IconPicker-tab-height);
|
|
line-height: var(--IconPicker-tab-lineHeight);
|
|
cursor: pointer;
|
|
text-align: center;
|
|
font-size: var(--fontSizeSm);
|
|
user-select: none;
|
|
|
|
&.active {
|
|
background: var(--IconPicker-tab-onActive-bg);
|
|
}
|
|
}
|
|
|
|
&-sugs {
|
|
position: relative;
|
|
padding: var(--IconPicker-padding);
|
|
max-height: var(--IconPicker-content-maxHeight);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&-sugItem {
|
|
display: inline-block;
|
|
width: var(--IconPicker-sugItem-width);
|
|
height: var(--IconPicker-sugItem-height);
|
|
text-align: center;
|
|
line-height: var(--IconPicker-sugItem-lineHeight);
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: var(--Form-select-menu-onHover-bg);
|
|
}
|
|
|
|
&.is-active {
|
|
color: var(--white);
|
|
background: var(--Form-select-menu-onActive-color);
|
|
}
|
|
}
|
|
|
|
&-value {
|
|
user-select: none;
|
|
line-height: calc(
|
|
var(--Form-input-lineHeight) * var(--Form-input-fontSize)
|
|
);
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
|
|
> i {
|
|
display: inline-block;
|
|
margin-right: var(--IconPicker-selectedIcon-marginRight);
|
|
}
|
|
}
|
|
}
|