only two style files
This commit is contained in:
@ -2,6 +2,9 @@ import React from "react";
|
||||
import style from "./Preview.module.css";
|
||||
import Player from "../../pages/Player/Player";
|
||||
import {Spinner} from "react-bootstrap";
|
||||
import StaticInfos from "../../GlobalInfos";
|
||||
import darktheme from "../../AppDarkTheme.module.css";
|
||||
import lighttheme from "../../AppLightTheme.module.css";
|
||||
|
||||
class Preview extends React.Component {
|
||||
constructor(props, context) {
|
||||
@ -33,8 +36,9 @@ class Preview extends React.Component {
|
||||
}
|
||||
|
||||
render() {
|
||||
const themeStyle = StaticInfos.isDarkTheme() ? darktheme : lighttheme;
|
||||
return (
|
||||
<div className={style.videopreview} onClick={() => this.itemClick()}>
|
||||
<div className={style.videopreview + ' ' + themeStyle.previewhover} onClick={() => this.itemClick()}>
|
||||
<div className={style.previewtitle}>{this.state.name}</div>
|
||||
<div className={style.previewpic}>
|
||||
{this.state.previewpicture != null ?
|
||||
|
@ -45,7 +45,7 @@
|
||||
|
||||
.videopreview:hover {
|
||||
opacity: 1;
|
||||
box-shadow: rgba(2, 12, 27, 0.7) 0px 0px 0px 5px;
|
||||
/*box-shadow: rgba(2, 12, 27, 0.7) 0 0 0 5px;*/
|
||||
transition: all 300ms;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user