mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #8865 from overleaf/ii-mark-themes-as-legacy
[web] Group themes list GitOrigin-RevId: 420572c678016c292a6dc04f409d0f3a0c824b60
This commit is contained in:
parent
1432cfc226
commit
22473d3615
2 changed files with 13 additions and 6 deletions
|
@ -1170,6 +1170,7 @@ const ProjectController = {
|
|||
languages: Settings.languages,
|
||||
learnedWords,
|
||||
editorThemes: THEME_LIST,
|
||||
legacyEditorThemes: LEGACY_THEME_LIST,
|
||||
maxDocLength: Settings.max_doc_length,
|
||||
useV2History:
|
||||
project.overleaf &&
|
||||
|
@ -1442,17 +1443,23 @@ const defaultSettingsForAnonymousUser = userId => ({
|
|||
})
|
||||
|
||||
const THEME_LIST = [
|
||||
'cobalt',
|
||||
'dracula',
|
||||
'eclipse',
|
||||
'monokai',
|
||||
'overleaf',
|
||||
'textmate',
|
||||
]
|
||||
|
||||
const LEGACY_THEME_LIST = [
|
||||
'ambiance',
|
||||
'chaos',
|
||||
'chrome',
|
||||
'clouds',
|
||||
'clouds_midnight',
|
||||
'cobalt',
|
||||
'crimson_editor',
|
||||
'dawn',
|
||||
'dracula',
|
||||
'dreamweaver',
|
||||
'eclipse',
|
||||
'github',
|
||||
'gob',
|
||||
'gruvbox',
|
||||
|
@ -1464,15 +1471,12 @@ const THEME_LIST = [
|
|||
'merbivore',
|
||||
'merbivore_soft',
|
||||
'mono_industrial',
|
||||
'monokai',
|
||||
'nord_dark',
|
||||
'overleaf',
|
||||
'pastel_on_dark',
|
||||
'solarized_dark',
|
||||
'solarized_light',
|
||||
'sqlserver',
|
||||
'terminal',
|
||||
'textmate',
|
||||
'tomorrow',
|
||||
'tomorrow_night',
|
||||
'tomorrow_night_blue',
|
||||
|
|
|
@ -159,6 +159,9 @@ aside#left-menu.full-size(
|
|||
)
|
||||
each editorTheme in editorThemes
|
||||
option(value=editorTheme) #{editorTheme.replace(/_/g, ' ')}
|
||||
option(value="—" disabled) —————————————————
|
||||
each editorTheme in legacyEditorThemes
|
||||
option(value=editorTheme) #{editorTheme.replace(/_/g, ' ')} (Legacy)
|
||||
|
||||
if (settings.overleaf != null && !isIEEE(brandVariation))
|
||||
.form-controls
|
||||
|
|
Loading…
Reference in a new issue