diff --git a/src/routes/Settings/Settings.js b/src/routes/Settings/Settings.js index cc42afc6b..2d29c9f33 100644 --- a/src/routes/Settings/Settings.js +++ b/src/routes/Settings/Settings.js @@ -327,6 +327,10 @@ const Settings = () => {
{ t('SETTINGS_NAV_PLAYER') }
+
+ +
{t('SETTINGS_SECTION_SUBTITLES')}
+
{ t('SETTINGS_SUBTITLES_LANGUAGE') }
@@ -386,6 +390,12 @@ const Settings = () => { {...subtitlesOutlineColorInput} />
+
+
+
+ +
{t('SETTINGS_SECTION_AUDIO')}
+
{ t('SETTINGS_DEFAULT_AUDIO_TRACK') }
@@ -395,6 +405,12 @@ const Settings = () => { {...audioLanguageSelect} />
+
+
+
+ +
{t('SETTINGS_SECTION_CONTROLS')}
+
{ t('SETTINGS_SEEK_KEY') }
@@ -413,6 +429,23 @@ const Settings = () => { {...seekShortTimeDurationSelect} />
+
+
+
{ t('SETTINGS_PLAY_IN_BACKGROUND') }
+
+ +
+
+
+
+ +
{t('SETTINGS_SECTION_AUTO_PLAY')}
+
{ t('AUTO_PLAY') }
@@ -432,16 +465,11 @@ const Settings = () => { {...nextVideoPopupDurationSelect} />
-
-
-
{ t('SETTINGS_PLAY_IN_BACKGROUND') }
-
- +
+
+
+ +
{t('SETTINGS_SECTION_ADVANCED')}
diff --git a/src/routes/Settings/styles.less b/src/routes/Settings/styles.less index ab2886ba8..41b7a6af0 100644 --- a/src/routes/Settings/styles.less +++ b/src/routes/Settings/styles.less @@ -95,10 +95,32 @@ align-self: stretch; font-size: 1.8rem; line-height: 3.4rem; - margin-bottom: 1rem; + margin-bottom: 3rem; color: var(--primary-foreground-color); } + .section-subtitle-wrapper { + display: flex; + flex-direction: row; + align-items: center; + gap: 0 1em; + margin-bottom: 1.5rem; + line-height: 2.4rem; + + .section-subtitle { + flex: none; + font-size: 1.1rem; + color: var(--primary-foreground-color); + } + + .icon { + flex: none; + width: 2rem; + height: 2rem; + color: var(--primary-foreground-color); + } + } + .option-container { flex: none; align-self: stretch;