From c0fb0d2cc8c930dc38906bebf15ab17e7f8ccebe Mon Sep 17 00:00:00 2001 From: Nova Cat Date: Sat, 30 Nov 2024 21:50:07 -0800 Subject: [PATCH] misspelled some stuff --- script.user.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/script.user.js b/script.user.js index 81db880..e0a4737 100644 --- a/script.user.js +++ b/script.user.js @@ -15,10 +15,10 @@ body, .primary-navbar .active a, .navbar, .ui-dialog { background: #0f161c !important; color: white !important; } -.ui-widget-content, ui-dialog-title, .dashboard-panel__headline a, text-muted, h1 small { +.ui-widget-content, .ui-dialog-title, .dashboard-panel__headline a, .text-muted, h1 small { color: white; } -input, .form-control, splitter-bar splitter-pane { +input, .form-control, .splitter-bar, .splitter-pane { background: black; color: white; } @@ -50,10 +50,6 @@ background: #013e6d !important; .pale, i.pale, .directory_listing_table { color: white !important; opacity: 1; -} -/* Ace editor */ -.ace-tm .ace_gutter { - } `; document.body.appendChild(style); @@ -80,5 +76,6 @@ function waitForElm(selector) { }); } waitForElm('.ace_gutter').then((elm) => { + // Set the theme of Ace Editor Anywhere.Editor.editor.setOption("theme", "ace/theme/tomorrow_night") });