From 9be8a3036cc33e3a1f07cf51b14a7a876aa48ad9 Mon Sep 17 00:00:00 2001 From: DispatchCommit Date: Thu, 4 Mar 2021 19:11:15 -0800 Subject: [PATCH] Move videojs sass file Looking at a few other files hoping to understand the convention for components, I moved the videojs.scss file to where all CSS related files appear to be in the project. --- ui/component/viewers/videoViewer/view.jsx | 1 - ui/scss/all.scss | 1 + .../videoViewer/videojs.scss => scss/component/_videojs.scss} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename ui/{component/viewers/videoViewer/videojs.scss => scss/component/_videojs.scss} (100%) diff --git a/ui/component/viewers/videoViewer/view.jsx b/ui/component/viewers/videoViewer/view.jsx index cbbd93891..b446f0c73 100644 --- a/ui/component/viewers/videoViewer/view.jsx +++ b/ui/component/viewers/videoViewer/view.jsx @@ -13,7 +13,6 @@ import FileViewerEmbeddedEnded from 'web/component/fileViewerEmbeddedEnded'; import FileViewerEmbeddedTitle from 'component/fileViewerEmbeddedTitle'; import LoadingScreen from 'component/common/loading-screen'; import { addTheaterModeButton } from './internal/theater-mode'; -import './videojs.scss'; const PLAY_TIMEOUT_ERROR = 'play_timeout_error'; const PLAY_TIMEOUT_LIMIT = 2000; diff --git a/ui/scss/all.scss b/ui/scss/all.scss index cba01e29b..c55fcffc3 100644 --- a/ui/scss/all.scss +++ b/ui/scss/all.scss @@ -55,6 +55,7 @@ @import 'component/tabs'; @import 'component/tooltip'; @import 'component/txo-list'; +@import 'component/videojs'; @import 'component/tags'; @import 'component/wunderbar'; @import 'component/yrbl'; diff --git a/ui/component/viewers/videoViewer/videojs.scss b/ui/scss/component/_videojs.scss similarity index 100% rename from ui/component/viewers/videoViewer/videojs.scss rename to ui/scss/component/_videojs.scss