mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 23:57:13 +00:00
Nc fix/expanded form bug fixes (#8501)
* fix(nc-gui): reduce gap between username and comment * fix(nc-gui): remove expanded form audit tab right padding * fix(nc-gui): save record should be on left side * fix(nc-gui): increase expanded form field gap * expanded form box shadow * fix(nc-gui): expanded form field alignment issue * fix(nc-gui): update expanded form hover state style * fix(nc-gui): update expanded form field hover and selected state style * chore(nc-gui): lint --------- Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -179,7 +179,7 @@ const onClick = (e: Event) => {
|
||||
<div
|
||||
class="flex items-center w-full h-full text-small text-gray-500 font-weight-medium group"
|
||||
:class="{
|
||||
'flex-col !items-start justify-center': isExpandedForm,
|
||||
'flex-col !items-start justify-center pt-0.5': isExpandedForm && !isMobileMode,
|
||||
'bg-gray-100': isExpandedForm ? editColumnDropdown || isDropDownOpen : false,
|
||||
'cursor-pointer hover:bg-gray-100': isExpandedForm && !isMobileMode && isUIAllowed('fieldEdit'),
|
||||
}"
|
||||
@@ -220,7 +220,7 @@ const onClick = (e: Event) => {
|
||||
<GeneralIcon
|
||||
v-if="isExpandedForm && !isMobileMode && isUIAllowed('fieldEdit')"
|
||||
icon="arrowDown"
|
||||
class="flex-none h-full cursor-pointer ml-1 group-hover:visible"
|
||||
class="flex-none cursor-pointer ml-1 group-hover:visible w-4 h-4"
|
||||
:class="{
|
||||
visible: editColumnDropdown || isDropDownOpen,
|
||||
invisible: !(editColumnDropdown || isDropDownOpen),
|
||||
|
||||
Reference in New Issue
Block a user