Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
865
Issues
865
List
Boards
Labels
Service Desk
Milestones
Merge Requests
43
Merge Requests
43
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
dc7d1f705cd326d684dae67c253ace116535d4f4...487a9ad340433a5df55c7b0cf6e9ff88ebaedf4f
Source
487a9ad340433a5df55c7b0cf6e9ff88ebaedf4f
Select Git revision
...
Target
dc7d1f705cd326d684dae67c253ace116535d4f4
Select Git revision
Compare
Commits (3)
(fix): Media modal prototype loader and title
· fdc50f77
Emiliano Balbuena
authored
2 hours ago
fdc50f77
(chore): See more styling
· 6af26f2c
Emiliano Balbuena
authored
54 minutes ago
6af26f2c
(chore): Narrow footer
· 487a9ad3
Emiliano Balbuena
authored
35 minutes ago
487a9ad3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
7 deletions
+19
-7
channel.component.scss
src/app/modules/pro/channel/channel.component.scss
+6
-3
modal.component.html
...pp/modules/pro/channel/content-modal/modal.component.html
+1
-1
modal.component.ts
src/app/modules/pro/channel/content-modal/modal.component.ts
+1
-1
list-modal.component.scss
.../modules/pro/channel/list-modal/list-modal.component.scss
+4
-0
list.component.html
src/app/modules/pro/channel/list/list.component.html
+1
-1
list.component.scss
src/app/modules/pro/channel/list/list.component.scss
+6
-1
No files found.
src/app/modules/pro/channel/channel.component.scss
View file @
487a9ad3
...
...
@@ -3,9 +3,10 @@ m-pro--channel {
background
:
none
no-repeat
center
fixed
;
background-size
:
cover
;
--primary-color
:
#4690D6
;
--plain-background-color
:
rgba
(
0
,
0
,
0
,
0
.7
);
--text-color
:
#fff
;
--primary-color
:
#4690df
;
--plain-background-color
:
#ffffff
;
--transparent-background-color
:
#ffffff
a0
;
--text-color
:
#000000
;
}
.m-pro--channel
{
...
...
@@ -107,6 +108,8 @@ m-pro--channel {
.m-proChannel__footer
{
grid-row
:
4
/
span
1
;
grid-column
:
2
/
span
10
;
width
:
80%
;
margin
:
0
auto
;
}
m-pro--channel
h1
{
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/content-modal/modal.component.html
View file @
487a9ad3
...
...
@@ -3,7 +3,7 @@
<!-- <div class="m-mediaModal__theater"> -->
<!-- Media: image -->
<div
class=
"m-mediaModal__theater m-mediaModal__theater--image"
*
ngIf=
"entity.subtype === 'image'"
>
<img
[
src
]="
entity
.
thumbnail_src
"
(
load
)="
inProgress =
!inProgress
"/
>
<img
[
src
]="
entity
.
thumbnail_src
"
(
load
)="
inProgress =
false
"/
>
<div
class=
"mdl-spinner mdl-js-spinner is-active"
[
mdl
]
*
ngIf=
"inProgress"
></div>
<div
class=
"m-mediaModal__theaterOverlay"
>
<a
class=
"m-mediaModal__theaterOverlayTitle"
[
routerLink
]="['/
media
',
entity
.
entity_guid
]"
>
{{title}}
</a>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/content-modal/modal.component.ts
View file @
487a9ad3
...
...
@@ -16,7 +16,7 @@ export class ProContentModalComponent implements OnInit {
@
Input
(
'
entity
'
)
set
data
(
data
)
{
this
.
entity
=
data
;
this
.
title
=
this
.
entity
.
message
?
this
.
entity
.
message
:
`
${
this
.
entity
.
ownerObj
.
name
}
's post
`
;
this
.
title
=
this
.
entity
.
title
||
this
.
entity
.
message
||
`
${
this
.
entity
.
ownerObj
.
name
}
's media
`
;
}
constructor
(
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list-modal/list-modal.component.scss
View file @
487a9ad3
.m-pro--channel-list-modal
{
margin-top
:
48px
;
}
.m-pro--channel-list-modal--grid
{
display
:
grid
;
grid-gap
:
16px
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list/list.component.html
View file @
487a9ad3
...
...
@@ -51,7 +51,7 @@
(
click
)="
seeMore
()"
i18n
>
See more
<span>
See more
…
</span>
</li>
</ul>
<ng-container
*
ngIf=
"entities.length == 0"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list/list.component.scss
View file @
487a9ad3
...
...
@@ -69,7 +69,7 @@ m-pro--channel-list {
.m-proChannelListContentList__seeMore
{
color
:
var
(
--
text-color
);
background-color
:
var
(
--
plain
-background-color
);
background-color
:
var
(
--
transparent
-background-color
);
border
:
1px
solid
#777
;
font-size
:
30px
;
...
...
@@ -77,6 +77,11 @@ m-pro--channel-list {
vertical-align
:
middle
;
cursor
:
pointer
;
>
span
{
display
:
block
;
width
:
100%
;
}
}
ul
.m-proChannelListContent__list
{
...
...
This diff is collapsed.
Click to expand it.