|
@@ -6,6 +6,7 @@ import {
|
|
|
Space,
|
|
Space,
|
|
|
Title,
|
|
Title,
|
|
|
Center,
|
|
Center,
|
|
|
|
|
+ Box,
|
|
|
} from '@mantine/core';
|
|
} from '@mantine/core';
|
|
|
|
|
|
|
|
import {
|
|
import {
|
|
@@ -68,7 +69,7 @@ export function VideoWallControl(props: VideoWallControlProps) {
|
|
|
<Space h="md"/>
|
|
<Space h="md"/>
|
|
|
<Droppable droppableId="videowall" direction="horizontal">
|
|
<Droppable droppableId="videowall" direction="horizontal">
|
|
|
{(provided, snapshot) => (
|
|
{(provided, snapshot) => (
|
|
|
- <div ref={provided.innerRef} {...provided.droppableProps} style={{height: 160, backgroundColor: '#0096a9', position:"relative"}}>
|
|
|
|
|
|
|
+ <Box sx={theme => ({backgroundColor: theme.colors.flandersmake[theme.colorScheme === 'dark' ? 8 : 4]})} ref={provided.innerRef} {...provided.droppableProps} style={{height: 160, position:"relative"}}>
|
|
|
<Group spacing={0} style={{height: '100%'}}>
|
|
<Group spacing={0} style={{height: '100%'}}>
|
|
|
{props.items.videowall.map((item, index) => (
|
|
{props.items.videowall.map((item, index) => (
|
|
|
<Draggable key={item} draggableId={item} index={index} style={{height: '100%'}}>
|
|
<Draggable key={item} draggableId={item} index={index} style={{height: '100%'}}>
|
|
@@ -82,7 +83,7 @@ export function VideoWallControl(props: VideoWallControlProps) {
|
|
|
<div/>
|
|
<div/>
|
|
|
</Group>
|
|
</Group>
|
|
|
{provided.placeholder}
|
|
{provided.placeholder}
|
|
|
- </div>
|
|
|
|
|
|
|
+ </Box>
|
|
|
)}
|
|
)}
|
|
|
</Droppable>
|
|
</Droppable>
|
|
|
<Space h="xl"/>
|
|
<Space h="xl"/>
|
|
@@ -90,7 +91,7 @@ export function VideoWallControl(props: VideoWallControlProps) {
|
|
|
<Space h="md"/>
|
|
<Space h="md"/>
|
|
|
<Droppable droppableId="hidden" direction="horizontal">
|
|
<Droppable droppableId="hidden" direction="horizontal">
|
|
|
{(provided, snapshot) => (
|
|
{(provided, snapshot) => (
|
|
|
- <div ref={provided.innerRef} {...provided.droppableProps} style={{height: 160, backgroundColor: '#555059', position:"relative"}}>
|
|
|
|
|
|
|
+ <Box sx={theme => ({backgroundColor: theme.colors.grey[theme.colorScheme === 'dark' ? 8 : 3]})} ref={provided.innerRef} {...provided.droppableProps} style={{height: 160, position:"relative"}}>
|
|
|
<Group spacing={0} style={{height: '100%'}}>
|
|
<Group spacing={0} style={{height: '100%'}}>
|
|
|
{props.items.hidden.map((item, index) => (
|
|
{props.items.hidden.map((item, index) => (
|
|
|
<Draggable key={item} draggableId={item} index={index}>
|
|
<Draggable key={item} draggableId={item} index={index}>
|
|
@@ -104,7 +105,7 @@ export function VideoWallControl(props: VideoWallControlProps) {
|
|
|
<div/>
|
|
<div/>
|
|
|
</Group>
|
|
</Group>
|
|
|
{provided.placeholder}
|
|
{provided.placeholder}
|
|
|
- </div>
|
|
|
|
|
|
|
+ </Box>
|
|
|
)}
|
|
)}
|
|
|
</Droppable>
|
|
</Droppable>
|
|
|
</div>
|
|
</div>
|