Skip to content
Next
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
808
Merge Requests
55
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
265b0fa4
Commit
265b0fa4
authored
5 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): css class should be modifier
parent
ebb8820e
fix/no-pro-bg-fallback
1 merge request
!646
(fix): Use plain bg color when no background image on Pro
Pipeline
#94340483
running with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/app/modules/pro/channel/channel.component.scss
View file @
265b0fa4
...
...
@@ -14,7 +14,7 @@ m-pro--channel {
background-blend-mode
:
overlay
;
background-color
:
var
(
--
m-pro--more-transparent-background-color
)
!
important
;
&
.m-pro-channel
__
plainBackground
{
&
.m-pro-channel
--
plainBackground
{
background-blend-mode
:
initial
;
background-color
:
var
(
--
m-pro--plain-background-color
)
!
important
;
}
...
...
This diff is collapsed.
src/app/modules/pro/channel/channel.component.ts
View file @
265b0fa4
...
...
@@ -148,7 +148,7 @@ export class ProChannelComponent implements OnInit, AfterViewInit, OnDestroy {
];
if
(
!
this
.
channel
||
!
this
.
channel
.
pro_settings
.
background_image
)
{
classes
.
push
(
'
m-pro-channel
__
plainBackground
'
);
classes
.
push
(
'
m-pro-channel
--
plainBackground
'
);
}
return
classes
.
join
(
'
'
);
...
...
This diff is collapsed.
Please
register
or
sign in
to comment