Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
407
Merge Requests
61
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
2047c615
Commit
2047c615
authored
28 minutes ago
by
Mark Harding
Browse files
Options
Download
(fix): improved linear gradient for transcoder status
parent
651d2529
epic/transcoder-improvements
1 merge request
!691
WIP: new video player
Pipeline
#102060591
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/app/modules/media/components/video-player/player.component.scss
View file @
2047c615
...
...
@@ -14,11 +14,18 @@
@include
m-theme
()
{
color
:
themed
(
$m-white
);
background
:
linear-gradient
(
180deg
,
$m-grey-600
,
transparent
);
@include
m-theme
()
{
background
:
linear-gradient
(
rgba
(
themed
(
$m-black-always
)
,
0
.5
)
,
rgba
(
themed
(
$m-black-always
)
,
0
)
);
color
:
themed
(
$m-white-always
);
}
}
}
m-videoPlayer
{
display
:
block
;
position
:
relative
;
width
:
100%
;
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment