Improve file search input
Signed-off-by: trivernis <trivernis@protonmail.com>pull/4/head
parent
329962dde2
commit
be2608223c
@ -0,0 +1,32 @@
|
|||||||
|
@use 'sass:map';
|
||||||
|
@use '~@angular/material' as mat;
|
||||||
|
|
||||||
|
@mixin color($theme) {
|
||||||
|
$color-config: mat.get-color-config($theme);
|
||||||
|
$primary-palette: map.get($color-config, 'primary');
|
||||||
|
$warn-palette: map.get($color-config, 'warn');
|
||||||
|
|
||||||
|
.tag-input-item {
|
||||||
|
background-color: dimgrey;
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-form-field:focus {
|
||||||
|
background-color: dimgrey;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin typography($theme) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin theme($theme) {
|
||||||
|
$color-config: mat.get-color-config($theme);
|
||||||
|
@if $color-config != null {
|
||||||
|
@include color($theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
$typography-config: mat.get-typography-config($theme);
|
||||||
|
@if $typography-config != null {
|
||||||
|
@include typography($theme);
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,46 @@
|
|||||||
#tag-search {
|
.full-width {
|
||||||
width: 100%;
|
min-width: 100%;
|
||||||
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.full-width {
|
.tag-input-list {
|
||||||
|
height: 2.7em;
|
||||||
|
padding: 0.5em 0;
|
||||||
|
width: calc(100% - 64px);
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
box-shadow: 0 0 1em 0.1em rgba(0, 0, 0, 0.05) inset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-input-list-and-actions {
|
||||||
|
display: block;
|
||||||
|
height: calc(3em + 10px);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#delete-all-tags-button {
|
||||||
|
font-size: 0.5em;
|
||||||
|
width: 64px;
|
||||||
|
height: 100%;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-input-list-inner {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
width: auto;
|
||||||
|
height: 2.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-input-item {
|
||||||
|
width: auto;
|
||||||
|
padding: 0.5em;
|
||||||
|
margin: 0 0.5em;
|
||||||
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue