decentraland-ui
Version:
Decentraland's UI components and styles
99 lines (82 loc) • 2.09 kB
CSS
.dcl.tag-field {
min-width: 400px;
}
.dcl.tag-field .ui.dropdown,
.dcl.tag-field .ui.dropdown.active {
background: transparent;
border-radius: 0px;
border: none;
padding: 2px 0px 2px 0px;
width: max-content;
min-width: 100%;
margin-top: 8px;
border-bottom: 2px solid var(--divider);
}
.dcl.tag-field .ui.search.dropdown > input.search {
padding: 0px 0px 10px 0px;
}
.dcl.tag-field .ui.dropdown > .text,
.dcl.tag-field .ui.dropdown > .default.text,
.dcl.tag-field .ui.dropdown > .text:not(.default),
.dcl.tag-field .ui.search.dropdown > input.search {
color: var(--text);
font-size: 16px ;
font-family: var(--font-family);
line-height: 18px;
margin-left: 0px;
margin-bottom: 0px;
}
.dcl.tag-field .ui.dropdown > .text,
.dcl.tag-field .ui.dropdown > .default.text,
.dcl.tag-field .ui.dropdown > .text:not(.default) {
font-size: 16px;
}
.dcl.tag-field .ui.search.dropdown > input.search {
font-size: 13px;
}
.dcl.tag-field .ui.dropdown > .default.text {
opacity: 0.6;
margin-left: 0px;
}
.dcl.tag-field .ui.selection.active.dropdown,
.dcl.tag-field .ui.selection.active.dropdown:hover {
border-bottom: 2px solid var(--text);
}
.dcl.tag-field .ui.dropdown .dropdown.icon {
display: none;
}
.dcl.tag-field .ui.dropdown .text,
.dcl.tag-field .ui.dropdown .default.text {
color: var(--text);
}
.dcl.tag-field .ui.dropdown .menu {
display: none ;
}
.dcl.tag-field .message {
margin-top: 8px;
color: var(--secondary-text);
font-size: 15px;
}
.dcl.tag-field .ui.selection.active.dropdown {
box-shadow: none;
}
.dcl.tag-field .ui.multiple.dropdown > .label {
background: transparent;
color: var(--secondary-text);
border: 2px solid var(--divider);
transition: none;
box-shadow: none;
font-weight: 500;
font-size: 13px;
}
.dcl.tag-field .ui.multiple.dropdown > .label:hover {
background: var(--primary);
color: var(--text-on-primary);
border: 2px solid var(--primary);
}
.dcl.tag-field.error .message {
color: var(--error);
}
.dcl.tag-field.error .ui.header.sub {
color: var(--error);
}