Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
V
vidai
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SexHackMe
vidai
Commits
2a6d39b2
You need to sign in or sign up before continuing.
Commit
2a6d39b2
authored
Oct 09, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix job-progress field text overflow by allowing text wrapping and increasing column width
parent
a0b38a1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
jobs.html
templates/jobs.html
+6
-2
No files found.
templates/jobs.html
View file @
2a6d39b2
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
.jobs-table
{
background
:
white
;
border-radius
:
12px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.05
);
overflow
:
hidden
;
}
.jobs-table
{
background
:
white
;
border-radius
:
12px
;
box-shadow
:
0
2px
10px
rgba
(
0
,
0
,
0
,
0.05
);
overflow
:
hidden
;
}
.table-header
{
padding
:
2rem
;
border-bottom
:
1px
solid
#e5e7eb
;
}
.table-header
{
padding
:
2rem
;
border-bottom
:
1px
solid
#e5e7eb
;
}
.table-header
h2
{
margin
:
0
;
color
:
#1e293b
;
}
.table-header
h2
{
margin
:
0
;
color
:
#1e293b
;
}
.job-row
{
display
:
grid
;
grid-template-columns
:
0.3
fr
1.6
fr
1
fr
2
fr
1
fr
1
fr
1
fr
1
fr
1
fr
1
fr
;
gap
:
0.2rem
;
padding
:
0.5rem
0.75rem
;
border-bottom
:
1px
solid
#e5e7eb
;
align-items
:
center
;
}
.job-row
{
display
:
grid
;
grid-template-columns
:
0.3
fr
1.6
fr
1
fr
2
fr
1
fr
1
fr
1
fr
1
fr
1
.5
fr
1
fr
;
gap
:
0.2rem
;
padding
:
0.5rem
0.75rem
;
border-bottom
:
1px
solid
#e5e7eb
;
align-items
:
center
;
}
.job-row
:last-child
{
border-bottom
:
none
;
}
.job-row
:last-child
{
border-bottom
:
none
;
}
.job-type
{
color
:
#374151
;
}
.job-type
{
color
:
#374151
;
}
.job-row
>
div
{
padding
:
0.25rem
0
;
}
.job-row
>
div
{
padding
:
0.25rem
0
;
}
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
.status-cancelled
{
background
:
#f3f4f6
;
color
:
#6b7280
;
}
.status-cancelled
{
background
:
#f3f4f6
;
color
:
#6b7280
;
}
.job-tokens
{
font-weight
:
600
;
color
:
#667eea
;
text-align
:
center
;
}
.job-tokens
{
font-weight
:
600
;
color
:
#667eea
;
text-align
:
center
;
}
.no-jobs
{
text-align
:
center
;
padding
:
3rem
;
color
:
#6b7280
;
}
.no-jobs
{
text-align
:
center
;
padding
:
3rem
;
color
:
#6b7280
;
}
.job-progress
{
color
:
#64748b
;
font-size
:
0.8rem
;
}
.job-progress
{
color
:
#64748b
;
font-size
:
0.8rem
;
min-width
:
200px
;
max-width
:
300px
;
word-wrap
:
break-word
;
overflow-wrap
:
break-word
;
white-space
:
normal
;
}
.spinner
{
display
:
inline-block
;
width
:
12px
;
height
:
12px
;
border
:
2px
solid
#f3f3f3
;
border-top
:
2px
solid
#667eea
;
border-radius
:
50%
;
animation
:
spin
1s
linear
infinite
;
margin-right
:
0.5rem
;
}
.spinner
{
display
:
inline-block
;
width
:
12px
;
height
:
12px
;
border
:
2px
solid
#f3f3f3
;
border-top
:
2px
solid
#667eea
;
border-radius
:
50%
;
animation
:
spin
1s
linear
infinite
;
margin-right
:
0.5rem
;
}
.view-result-link
{
color
:
#667eea
;
text-decoration
:
none
;
font-size
:
0.9rem
;
font-weight
:
500
;
}
.view-result-link
{
color
:
#667eea
;
text-decoration
:
none
;
font-size
:
0.9rem
;
font-weight
:
500
;
}
.view-result-link
:hover
{
text-decoration
:
underline
;
}
.view-result-link
:hover
{
text-decoration
:
underline
;
}
...
@@ -130,6 +130,10 @@
...
@@ -130,6 +130,10 @@
const
progressText
=
document
.
createElement
(
'div'
);
const
progressText
=
document
.
createElement
(
'div'
);
progressText
.
style
.
fontSize
=
'0.75rem'
;
progressText
.
style
.
fontSize
=
'0.75rem'
;
progressText
.
style
.
color
=
'#6b7280'
;
progressText
.
style
.
color
=
'#6b7280'
;
progressText
.
style
.
wordWrap
=
'break-word'
;
progressText
.
style
.
overflowWrap
=
'break-word'
;
progressText
.
style
.
whiteSpace
=
'normal'
;
progressText
.
style
.
lineHeight
=
'1.2'
;
progressText
.
textContent
=
`
${
progressPercent
}
% -
${
stage
}
:
${
message
}
`
;
progressText
.
textContent
=
`
${
progressPercent
}
% -
${
stage
}
:
${
message
}
`
;
progressElement
.
innerHTML
=
''
;
progressElement
.
innerHTML
=
''
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment