diff --git a/.gitignore b/.gitignore index eddbdcc5a..71947782e 100755 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,4 @@ /yarn.lock /npm-debug.log .DS_Store -.prettierignore -bun.lockb \ No newline at end of file +.prettierignore \ No newline at end of file diff --git a/src/App/styles.less b/src/App/styles.less index 889456d51..f4454424c 100644 --- a/src/App/styles.less +++ b/src/App/styles.less @@ -24,7 +24,6 @@ --color-twitter: #1DA1F2; --color-imdb: #f5c518; --color-placeholder: #60606080; - --color-released: #707070; --color-placeholder-text: @color-surface-50; --color-placeholder-background: @color-surface-dark5-20; --primary-background-color: rgba(12, 11, 17, 1); diff --git a/src/common/AddonDetailsModal/styles.less b/src/common/AddonDetailsModal/styles.less index d9189b665..1d4fde635 100644 --- a/src/common/AddonDetailsModal/styles.less +++ b/src/common/AddonDetailsModal/styles.less @@ -30,15 +30,4 @@ color: var(--primary-foreground-color); } } - .uninstall-button { - background-color: rgba(72, 69, 114, 1); - - &:hover { - outline: var(--focus-outline-size) solid rgba(72, 69, 114, 1); - background-color: transparent; - } - &:focus { - outline-color: var(--primary-foreground-color); - } - } } \ No newline at end of file diff --git a/src/common/MetaPreview/MetaPreview.js b/src/common/MetaPreview/MetaPreview.js index db39fb534..c4a96fce5 100644 --- a/src/common/MetaPreview/MetaPreview.js +++ b/src/common/MetaPreview/MetaPreview.js @@ -195,12 +195,6 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
- { - typeof toggleInLibrary === 'function' && compact ? -
{inLibrary ? t('REMOVE_FROM_LIB') : t('ADD_TO_LIB')}
- : - null - } { typeof toggleInLibrary === 'function' ? -
{ - typeof trailerHref === 'string' && compact ? -
{t('WATCH_TRAILER')}
+ typeof toggleInLibrary === 'function' && compact ? +
{inLibrary ? t('REMOVE_FROM_LIB') : t('ADD_TO_LIB')}
: null } +
+
{ typeof trailerHref === 'string' ? {t('WATCH_TRAILER')}
+ : + null + }
{ typeof showHref === 'string' && compact ? 0 ?
{buttons.map(({ className, label, icon, props }, index) => ( -
- {`S${video?.season}E${video?.episode} ${(video?.title)}`} + {`S${video?.season}E${video?.episode} ${(video?.title)?.toLowerCase()?.replace(/\b\w/g, (char) => char.toUpperCase())} +`}
) diff --git a/src/routes/MetaDetails/VideosList/Video/styles.less b/src/routes/MetaDetails/VideosList/Video/styles.less index 8c86ff82b..0a7458508 100644 --- a/src/routes/MetaDetails/VideosList/Video/styles.less +++ b/src/routes/MetaDetails/VideosList/Video/styles.less @@ -84,7 +84,7 @@ font-weight: 500; white-space: nowrap; text-overflow: ellipsis; - color: var(--color-released); + color: #707070; opacity: 0.9; }