fix(theming): more visual bugs (#34987)

(cherry picked from commit 569a7b33a5)
This commit is contained in:
Mehmet Salih Yavuz
2025-09-04 20:44:07 +03:00
committed by Joe Li
parent 8a3dcadf87
commit b51eda51ce
2 changed files with 2 additions and 10 deletions

View File

@@ -393,10 +393,7 @@ export const FullSQLEditor = AsyncAceEditor(
},
);
export const MarkdownEditor = AsyncAceEditor([
'mode/markdown',
'theme/textmate',
]);
export const MarkdownEditor = AsyncAceEditor(['mode/markdown', 'theme/github']);
export const TextAreaEditor = AsyncAceEditor([
'mode/markdown',

View File

@@ -571,12 +571,7 @@ const RightMenu = ({
if (!navbarRight.user_is_anonymous && showActionDropdown) {
items.push({
key: 'new-dropdown',
label: (
<Icons.PlusOutlined
iconColor={theme.colorPrimary}
data-test="new-dropdown-icon"
/>
),
label: <Icons.PlusOutlined data-test="new-dropdown-icon" />,
className: 'submenu-with-caret',
icon: <Icons.CaretDownOutlined iconSize="xs" />,
children: buildNewDropdownItems(),