mirror of
https://github.com/maputnik/editor.git
synced 2025-12-27 16:40:00 +00:00
Make input use less vertical space
This commit is contained in:
43
src/fields/input.js
Normal file
43
src/fields/input.js
Normal file
@@ -0,0 +1,43 @@
|
||||
/** Common input styling */
|
||||
|
||||
import theme from '../theme.js'
|
||||
|
||||
const base = {
|
||||
display: 'inline-block',
|
||||
fontSize: theme.fontSizes[5],
|
||||
lineHeight: 2,
|
||||
paddingLeft: 5,
|
||||
paddingRight: 5,
|
||||
}
|
||||
|
||||
const label = {
|
||||
...base,
|
||||
width: '40%',
|
||||
color: theme.colors.lowgray,
|
||||
}
|
||||
|
||||
const property = {
|
||||
marginTop: theme.scale[2],
|
||||
marginBottom: theme.scale[2],
|
||||
}
|
||||
|
||||
const input = {
|
||||
...base,
|
||||
border: '1px solid rgb(36, 36, 36)',
|
||||
width: '47%',
|
||||
backgroundColor: theme.colors.gray,
|
||||
color: theme.colors.lowgray,
|
||||
}
|
||||
|
||||
const select = {
|
||||
...input,
|
||||
width: '51%',
|
||||
height: '2.3em',
|
||||
}
|
||||
|
||||
export default {
|
||||
label,
|
||||
select,
|
||||
input,
|
||||
property,
|
||||
}
|
||||
Reference in New Issue
Block a user