Only show a transparent background on input box if there is no typeahead

This commit is contained in:
Tom Southall
2022-03-15 12:36:24 +00:00
parent fb4b49b8c2
commit cf28dacd35
6 changed files with 14 additions and 14 deletions

View File

@@ -1,9 +1,9 @@
# Changelog
### 1.1.2 (13 Mar 2022)
### 1.1.2 (Unreleased)
- Add screengrab GIF to README
- Add Turnstone logo to README
- Add Turnstone screengrab gif to README
### 1.1.1 (12 Mar 2022)

View File

@@ -31,8 +31,7 @@
}
}
.query,
.typeahead {
.input {
box-sizing: border-box;
width: 100%;
height: 2.5em;
@@ -42,10 +41,10 @@
margin: 0;
outline: none;
border: 1px solid #ccc;
background: #fff;
}
.containerFocus .query,
.containerFocus .typeahead {
.containerFocus .input {
border-top: none;
border-left: none;
border-right: none;
@@ -54,14 +53,12 @@
}
@media (min-width: 640px) {
.query,
.typeahead {
.input {
width: 500px;
font-size: 1.4em;
}
.containerFocus .query,
.containerFocus .typeahead {
.containerFocus .input {
border: 1px solid #ccc;
padding: 0 1.5em 0 .5em;
}

View File

@@ -8,6 +8,7 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f0f0f0;
}
a {

View File

@@ -24,9 +24,7 @@ exports[`Container > Component renders correctly 1`] = `
spellCheck="false"
style={
{
"backgroundColor": "transparent",
"position": "relative",
"zIndex": 1,
}
}
type="text"

View File

@@ -6,7 +6,7 @@ import { useDebounce } from 'use-debounce'
import useData from './hooks/useData'
import undef from '../utils/undef'
import isUndefined from '../utils/isUndefined'
import defaultStyles from './styles/input.styles.js'
import defaultStyles from './styles/container.styles.js'
import {
useItemsState,
useItemsError,
@@ -90,6 +90,7 @@ export default function Container(props) {
: defaultStyles[containerClassname]
const inputClassName = hasFocus ? 'inputFocus' : 'input'
const inputStyles = customStyles[inputClassName] || customStyles.input
const queryDefaultStyle = hasTypeahead ? defaultStyles.query : defaultStyles.queryNoTypeahead
// Checks whether or not SWR data is to be treated as immutable
const isImmutable = (() => {
@@ -225,7 +226,7 @@ export default function Container(props) {
id={id}
name={name}
className={`${inputStyles || ''} ${customStyles.query || ''}`.trim()}
style={defaultStyles.query}
style={queryDefaultStyle}
disabled={disabled}
placeholder={placeholder}
type='text'

View File

@@ -10,6 +10,9 @@ const styles = {
zIndex: 1,
backgroundColor: 'transparent'
},
queryNoTypeahead: {
position: 'relative'
},
typeahead: {
position: 'absolute',
zIndex: 0,