Fix fading of screensharing.
parent
ff549a230d
commit
6e5300c937
|
|
@ -31,15 +31,7 @@ const styles = (theme) =>
|
||||||
backgroundPosition : 'bottom',
|
backgroundPosition : 'bottom',
|
||||||
backgroundSize : 'auto 85%',
|
backgroundSize : 'auto 85%',
|
||||||
backgroundRepeat : 'no-repeat',
|
backgroundRepeat : 'no-repeat',
|
||||||
'&.webcam' :
|
'&.hover' :
|
||||||
{
|
|
||||||
order : 1
|
|
||||||
},
|
|
||||||
'&.screen' :
|
|
||||||
{
|
|
||||||
order : 2
|
|
||||||
},
|
|
||||||
'&.hover' :
|
|
||||||
{
|
{
|
||||||
boxShadow : '0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0px 8px rgba(82, 168, 236, 0.9)'
|
boxShadow : '0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0px 8px rgba(82, 168, 236, 0.9)'
|
||||||
},
|
},
|
||||||
|
|
@ -53,6 +45,15 @@ const styles = (theme) =>
|
||||||
{
|
{
|
||||||
transition : 'filter 10s',
|
transition : 'filter 10s',
|
||||||
filter : 'grayscale(0.75)'
|
filter : 'grayscale(0.75)'
|
||||||
|
},
|
||||||
|
'&.webcam' :
|
||||||
|
{
|
||||||
|
order : 1
|
||||||
|
},
|
||||||
|
'&.screen' :
|
||||||
|
{
|
||||||
|
order : 2,
|
||||||
|
filter : 'grayscale(0)'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fab :
|
fab :
|
||||||
|
|
|
||||||
|
|
@ -31,15 +31,7 @@ const styles = (theme) =>
|
||||||
backgroundPosition : 'bottom',
|
backgroundPosition : 'bottom',
|
||||||
backgroundSize : 'auto 85%',
|
backgroundSize : 'auto 85%',
|
||||||
backgroundRepeat : 'no-repeat',
|
backgroundRepeat : 'no-repeat',
|
||||||
'&.webcam' :
|
'&.hover' :
|
||||||
{
|
|
||||||
order : 4
|
|
||||||
},
|
|
||||||
'&.screen' :
|
|
||||||
{
|
|
||||||
order : 3
|
|
||||||
},
|
|
||||||
'&.hover' :
|
|
||||||
{
|
{
|
||||||
boxShadow : '0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0px 8px rgba(82, 168, 236, 0.9)'
|
boxShadow : '0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0px 0px 8px rgba(82, 168, 236, 0.9)'
|
||||||
},
|
},
|
||||||
|
|
@ -53,6 +45,15 @@ const styles = (theme) =>
|
||||||
{
|
{
|
||||||
transition : 'filter 10s',
|
transition : 'filter 10s',
|
||||||
filter : 'grayscale(0.75)'
|
filter : 'grayscale(0.75)'
|
||||||
|
},
|
||||||
|
'&.webcam' :
|
||||||
|
{
|
||||||
|
order : 4
|
||||||
|
},
|
||||||
|
'&.screen' :
|
||||||
|
{
|
||||||
|
order : 3,
|
||||||
|
filter : 'grayscale(0)'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fab :
|
fab :
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue