Calendar & Picklist & Orderlist button styling issues fixed
parent
1e8e12c758
commit
67f80538b4
|
@ -740,7 +740,7 @@ export default {
|
||||||
button: {
|
button: {
|
||||||
root: ({ props, context }) => ({
|
root: ({ props, context }) => ({
|
||||||
class: [
|
class: [
|
||||||
'items-center cursor-pointer inline-flex overflow-hidden relative select-none text-center align-bottom h-full',
|
'items-center cursor-pointer inline-flex overflow-hidden relative select-none text-center align-bottom',
|
||||||
'transition duration-200 ease-in-out',
|
'transition duration-200 ease-in-out',
|
||||||
'focus:outline-none focus:outline-offset-0',
|
'focus:outline-none focus:outline-offset-0',
|
||||||
{
|
{
|
||||||
|
@ -1376,12 +1376,18 @@ export default {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
input: {
|
input: ({ props }) => ({
|
||||||
class: [
|
class: [
|
||||||
'font-sans text-base text-gray-600 dark:text-white/80 bg-white dark:bg-gray-900 p-3 border border-gray-300 dark:border-blue-900/40 transition-colors duration-200 appearance-none rounded-lg',
|
'font-sans text-base text-gray-600 dark:text-white/80 bg-white dark:bg-gray-900 p-3 border border-gray-300 dark:border-blue-900/40 transition-colors duration-200 appearance-none',
|
||||||
'hover:border-blue-500' //Hover
|
'hover:border-blue-500',
|
||||||
|
{ 'rounded-lg': !props.showIcon, 'border-r-0 rounded-l-lg': props.showIcon }
|
||||||
]
|
]
|
||||||
},
|
}),
|
||||||
|
dropdownbutton: ({ props }) => ({
|
||||||
|
root: {
|
||||||
|
class: [{ 'rounded-l-none': props.showIcon }]
|
||||||
|
}
|
||||||
|
}),
|
||||||
panel: ({ props }) => ({
|
panel: ({ props }) => ({
|
||||||
class: [
|
class: [
|
||||||
'bg-white dark:bg-gray-900',
|
'bg-white dark:bg-gray-900',
|
||||||
|
|
Loading…
Reference in New Issue