better input styles
This commit is contained in:
parent
02ecd8bb6c
commit
ab295c588d
|
@ -1,12 +1,3 @@
|
||||||
const hoverGlow = {
|
|
||||||
x: 0,
|
|
||||||
y: 0,
|
|
||||||
blur: 4,
|
|
||||||
spread: 0,
|
|
||||||
color: '--text',
|
|
||||||
alpha: 1
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Input',
|
name: 'Input',
|
||||||
selector: '.input',
|
selector: '.input',
|
||||||
|
@ -27,7 +18,9 @@ export default {
|
||||||
{
|
{
|
||||||
component: 'Root',
|
component: 'Root',
|
||||||
directives: {
|
directives: {
|
||||||
'--defaultInputBevel': 'shadow | $borderSide(#FFFFFF bottom 0.2), $borderSide(#000000 top 0.2)'
|
'--defaultInputBevel': 'shadow | $borderSide(#FFFFFF bottom 0.2), $borderSide(#000000 top 0.2)',
|
||||||
|
'--defaultInputHoverGlow': 'shadow | 0 0 4 --text / 0.5',
|
||||||
|
'--defaultInputFocusGlow': 'shadow | 0 0 4 4 --link / 0.5'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -54,7 +47,19 @@ export default {
|
||||||
{
|
{
|
||||||
state: ['hover'],
|
state: ['hover'],
|
||||||
directives: {
|
directives: {
|
||||||
shadow: [hoverGlow, '--defaultInputBevel']
|
shadow: ['--defaultInputHoverGlow', '--defaultInputBevel']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
state: ['focused'],
|
||||||
|
directives: {
|
||||||
|
shadow: ['--defaultInputFocusGlow', '--defaultInputBevel']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
state: ['focused', 'hover'],
|
||||||
|
directives: {
|
||||||
|
shadow: ['--defaultInputFocusGlow', '--defaultInputHoverGlow', '--defaultInputBevel']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
"link": "#81a2be",
|
"link": "#81a2be",
|
||||||
"text": "#c5c8c6",
|
"text": "#c5c8c6",
|
||||||
"cRed": "#cc6666",
|
"cRed": "#cc6666",
|
||||||
"cGreen": "#8abeb7",
|
"cBlue": "#8abeb7",
|
||||||
"cBlue": "#b5bd68",
|
"cGreen": "#b5bd68",
|
||||||
"cOrange": "#de935f",
|
"cOrange": "#de935f",
|
||||||
"_cYellow": "#f0c674",
|
"_cYellow": "#f0c674",
|
||||||
"_cPurple": "#b294bb"
|
"_cPurple": "#b294bb"
|
||||||
|
|
Loading…
Reference in a new issue