Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
website-symfony
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
website-symfony
Merge requests
!2
Add comment function
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add comment function
comments
into
master
Overview
0
Commits
13
Pipelines
5
Changes
16
Merged
Jonas Leder
requested to merge
comments
into
master
2 years ago
Overview
0
Commits
13
Pipelines
5
Changes
16
Expand
TODOS:
Add Table for comments
Display Comments
Add Form for creating comments
Secure form with captcha
Add CSRF Token
Edited
2 years ago
by
Jonas Leder
0
0
Merge request reports
Compare
master
version 4
09bc855f
2 years ago
version 3
8efde46e
2 years ago
version 2
eacc3071
2 years ago
version 1
1124bf5e
2 years ago
master (base)
and
latest version
latest version
b917b995
13 commits,
2 years ago
version 4
09bc855f
12 commits,
2 years ago
version 3
8efde46e
11 commits,
2 years ago
version 2
eacc3071
10 commits,
2 years ago
version 1
1124bf5e
9 commits,
2 years ago
16 files
+
734
−
46
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
assets/styles/lib/_comments.scss
+
35
−
41
Options
.comment
{
display
:
flex
;
justify-content
:
left
;
.comment-image
{
width
:
fit-content
;
img
{
width
:
60px
;
height
:
60px
;
max-width
:
unset
!
important
;
}
}
.comment-content
{
margin-left
:
10px
;
}
}
#newC
omment
{
.c
omment
-new
{
form
{
input
,
textarea
{
width
:
100%
;
box-sizing
:
border-box
;
background-color
:
$back-color
;
color
:
$text-color
;
border
:
solid
$back-color-2
;
@@ -28,54 +44,32 @@
outline
:
0
;
border
:
0
;
transition
:
background-color
$link-hover-animation-time
linear
;
margin-top
:
10px
;
&
:HOVER
{
background-color
:
$accent-color-2
;
}
}
}
margin-bottom
:
20px
;
}
.comment
{
display
:
flex
;
img
{
margin-right
:
10px
;
width
:
100px
;
height
:
100px
;
}
}
.commentTitle
{
margin-bottom
:
5px
;
}
.commentArticle
{
display
:
flex
;
justify-content
:
center
;
flex-direction
:
column
;
align-items
:
center
;
min-height
:
100px
;
}
.commentText
{
margin
:
0
;
.comment-alert
{
width
:
100%
;
}
padding
:
20px
;
box-sizing
:
border-box
;
border
:
solid
2px
;
border-radius
:
5px
;
.emailBox
{
display
:
inline
;
}
&
.green
{
color
:
#4dd0af
;
background-color
:
#005e46
;
border-color
:
#007154
;
}
.bigButton
{
background-color
:
$accent-color
;
color
:
#000
;
text-transform
:
uppercase
;
padding
:
15px
;
font-size
:
14px
;
cursor
:
pointer
;
outline
:
0
;
border
:
0
;
transition
:
background-color
$link-hover-animation-time
linear
;
width
:
100%
;
margin-top
:
10px
;
}
&
.red
{
color
:
#ee8277
;
background-color
:
#74261e
;
border-color
:
#8b2e24
;
}
}
\ No newline at end of file
Loading