mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
30 lines
523 B
SCSS
30 lines
523 B
SCSS
input[type="text"] {
|
|
margin-top: calc(-0.5 * var(--bs-font-size-base));
|
|
background-color: #fff !important;
|
|
border-color: var(--ds-header-icon-color);
|
|
|
|
&.collapsed {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.submit-icon {
|
|
cursor: pointer;
|
|
position: sticky;
|
|
top: 0;
|
|
|
|
color: var(--ds-header-icon-color);
|
|
&:hover, &:focus {
|
|
color: var(--ds-header-icon-color-hover);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: map-get($grid-breakpoints, md)) {
|
|
.query:focus {
|
|
max-width: 250px !important;
|
|
width: 40vw !important;
|
|
}
|
|
|
|
}
|
|
|