This is an automated email from the ASF dual-hosted git repository.

tai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 3098e657e5 fix(sqllab): Fix cursor alignment in SQL lab editor by 
avoiding Lucida Console font on Windows (#21380)
3098e657e5 is described below

commit 3098e657e5699b60e5c3e10df1249bc3f4ca1729
Author: MichaelHintz <[email protected]>
AuthorDate: Tue Sep 13 22:03:21 2022 +0200

    fix(sqllab): Fix cursor alignment in SQL lab editor by avoiding Lucida 
Console font on Windows (#21380)
---
 superset-frontend/src/SqlLab/main.less | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset-frontend/src/SqlLab/main.less 
b/superset-frontend/src/SqlLab/main.less
index 549f465195..bec202b7bc 100644
--- a/superset-frontend/src/SqlLab/main.less
+++ b/superset-frontend/src/SqlLab/main.less
@@ -367,8 +367,8 @@ div.tablePopover {
   border: 1px solid @gray-light;
   font-feature-settings: @font-feature-settings;
   // Fira Code causes problem with Ace under Firefox
-  font-family: 'Menlo', 'Lucida Console', 'Courier New', 'Ubuntu Mono',
-    'Consolas', 'source-code-pro', monospace;
+  font-family: 'Menlo', 'Consolas', 'Courier New', 'Ubuntu Mono',
+    'source-code-pro', 'Lucida Console', monospace;
 
   &.ace_autocomplete {
     // Use !important because Ace Editor applies extra CSS at the last second

Reply via email to