From 30c3cb30ebf0c2693190009708bf61978ca02551 Mon Sep 17 00:00:00 2001 From: hensm Date: Thu, 23 Jul 2020 12:27:26 +0100 Subject: [PATCH] Fix options page tab order --- ext/src/ui/options/index.tsx | 11 +++++------ ext/src/ui/options/styles/index.css | 4 ++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/ext/src/ui/options/index.tsx b/ext/src/ui/options/index.tsx index 143a60f..bef4ab6 100644 --- a/ext/src/ui/options/index.tsx +++ b/ext/src/ui/options/index.tsx @@ -174,6 +174,11 @@ class OptionsApp extends Component<{}, OptionsAppState> { onSubmit={ this.handleFormSubmit } onChange={ this.handleFormChange }> + +

{ _("optionsMediaCategoryName") }

@@ -432,12 +437,6 @@ class OptionsApp extends Component<{}, OptionsAppState> { { _("optionsSave") } - - { // Workaround for form default button } - }
diff --git a/ext/src/ui/options/styles/index.css b/ext/src/ui/options/styles/index.css index 44f2862..8477cf1 100644 --- a/ext/src/ui/options/styles/index.css +++ b/ext/src/ui/options/styles/index.css @@ -242,8 +242,8 @@ button.ghost:not(:hover) { color: var(--secondary-color); } -#form > .category:not(:first-child) { - border-top: 1px solid var(--border-color); +#form > .category { + border-bottom: 1px solid var(--border-color); }