mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
49 lines
No EOL
819 B
SCSS
49 lines
No EOL
819 B
SCSS
.bookmarks-form {
|
|
|
|
.btn.form-icon {
|
|
padding: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
visibility: hidden;
|
|
color: $gray-color;
|
|
|
|
&:focus,
|
|
&:hover,
|
|
&:active,
|
|
&.active {
|
|
color: $gray-color-dark;
|
|
}
|
|
|
|
> svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.has-icon-right > input, .has-icon-right > textarea {
|
|
padding-right: 30px;
|
|
}
|
|
|
|
.has-icon-right > input:placeholder-shown ~ .btn.form-icon,
|
|
.has-icon-right > textarea:placeholder-shown ~ .btn.form-icon {
|
|
visibility: visible;
|
|
}
|
|
|
|
.form-icon.loading {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.form-input-hint.bookmark-exists {
|
|
display: none;
|
|
color: $warning-color;
|
|
}
|
|
|
|
.form-input-hint.auto-tags {
|
|
display: none;
|
|
color: $success-color;
|
|
}
|
|
|
|
details.notes textarea {
|
|
box-sizing: border-box;
|
|
}
|
|
} |