Skip to content
Snippets Groups Projects
Commit 3bb47ed7 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

refactor: ensure better border color consistency

parent 25c4d7cc
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ useEventListener(contentEl, 'click', (event: PointerEvent) => { ...@@ -130,7 +130,7 @@ useEventListener(contentEl, 'click', (event: PointerEvent) => {
border-bottom-color: var(--_aura-quill-bg) !important; border-bottom-color: var(--_aura-quill-bg) !important;
} }
.ql-editor { .ql-editor {
@apply tw-rounded tw-border tw-border-solid tw-border-gray-300 tw-bg-white; @apply tw-rounded tw-border tw-border-solid tw-border-gray-200 tw-bg-white;
padding: theme('spacing[1.5]') theme('spacing.3'); padding: theme('spacing[1.5]') theme('spacing.3');
transition: transition:
border-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
...@@ -145,7 +145,7 @@ useEventListener(contentEl, 'click', (event: PointerEvent) => { ...@@ -145,7 +145,7 @@ useEventListener(contentEl, 'click', (event: PointerEvent) => {
} }
&[contenteditable='false'] { &[contenteditable='false'] {
@apply tw-bg-gray-200; @apply tw-bg-gray-100;
} }
} }
} }
......
...@@ -197,7 +197,7 @@ thead .fc-day-selected:hover { ...@@ -197,7 +197,7 @@ thead .fc-day-selected:hover {
color: theme('colors.gray.600'); color: theme('colors.gray.600');
background-color: #fff; background-color: #fff;
background-clip: padding-box; background-clip: padding-box;
border: 1px solid theme('colors.gray.300'); border: 1px solid theme('colors.gray.200');
transition: transition:
border-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
box-shadow 0.15s ease-in-out; box-shadow 0.15s ease-in-out;
...@@ -213,7 +213,7 @@ thead .fc-day-selected:hover { ...@@ -213,7 +213,7 @@ thead .fc-day-selected:hover {
&:disabled, &:disabled,
&[readonly] { &[readonly] {
background-color: theme('colors.gray.200'); background-color: theme('colors.gray.100');
opacity: 1; opacity: 1;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment