Skip to content
Snippets Groups Projects
Commit 63557aed authored by Martin Leblanc's avatar Martin Leblanc
Browse files

ISTWCMS-5725: additional css for the height of the input as well as base form-text form-item styles

parent efe8f6a3
No related branches found
No related tags found
1 merge request!30Feature/istwcms 5725 ebremner search blocks
......@@ -110,7 +110,24 @@ input[type="radio"]) {
// :where(input[type='search']) {}
// :where(input[type='submit']) {}
// :where(input[type='tel']) {}
// :where(input[type='text']) {}
:where(input[type='text']) {
border: var(--size-xs) solid var(--gray-3);
box-shadow: inset 0 var(--size-xs) 3px var(--gray-3);
box-sizing: border-box;
color: inherit;
cursor: pointer;
font-family: var(--font-systemmedium);
font-size: var(--font-size-0);
letter-spacing: inherit;
padding: $uw-input-padding;
max-width: inherit;
touch-action: manipulation;
&:focus {
border: var(--size-xs) solid var(--gray-5) !important;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(104, 104, 104, 0.7);
outline: var(--gray-5);
}
}
// :where(input[type='time']) {}
// :where(input[type='url']) {}
// :where(input[type='week']) {}
@use '../../01-core' as *;
.uw-search-form {
margin:0 0 var(--size-sm) 0;
margin:0 0 var(--size-2) 0;
.catalog-search-form,
.service-search-form,
......@@ -13,13 +13,24 @@
.form-item {
.description {
margin: var(--size-xs) 0;
margin: var(--size-1) 0;
}
}
.form-text {
border: var(--size-xs) solid var(--gray-3);
border-bottom-right-radius: 0;
border-top-right-radius: 0;
box-shadow: inset 0 var(--size-xs) 3px var(--gray-3);
box-sizing: border-box;
color: inherit;
cursor: pointer;
font-family: var(--font-systemmedium);
font-size: var(--font-size-0);
letter-spacing: inherit;
padding: 0.46667rem;
max-width: inherit;
touch-action: manipulation;
width: 100%;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment