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
7926b77c
Commit
7926b77c
authored
Oct 06, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make modal window scrollable with overflow hidden and scroll bar on modal content
parent
186bb8d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
users.html
templates/admin/users.html
+2
-2
No files found.
templates/admin/users.html
View file @
7926b77c
...
...
@@ -33,9 +33,9 @@
/* Modal Styles */
.modal
{
display
:
none
;
position
:
fixed
;
z-index
:
1000
;
left
:
0
;
top
:
0
;
width
:
100%
;
height
:
100%
;
background-color
:
rgba
(
0
,
0
,
0
,
0.5
);
}
.modal.show
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
.modal-content
{
background-color
:
white
;
margin
:
0
;
padding
:
0
;
width
:
90%
;
max-width
:
600px
;
border-radius
:
12px
;
box-shadow
:
0
10px
30px
rgba
(
0
,
0
,
0
,
0.3
);
max-height
:
80vh
;
display
:
flex
;
flex-direction
:
column
;
}
.modal-content
{
background-color
:
white
;
margin
:
0
;
padding
:
0
;
width
:
90%
;
max-width
:
600px
;
border-radius
:
12px
;
box-shadow
:
0
10px
30px
rgba
(
0
,
0
,
0
,
0.3
);
height
:
80vh
;
overflow-y
:
auto
;
display
:
flex
;
flex-direction
:
column
;
}
.modal-header
{
padding
:
1rem
2rem
;
border-bottom
:
1px
solid
#e5e7eb
;
display
:
flex
;
justify-content
:
space-between
;
align-items
:
center
;
flex-shrink
:
0
;
}
.modal-body
{
padding
:
1rem
;
overflow-y
:
auto
;
flex
:
1
;
}
.modal-body
{
padding
:
1rem
;
flex
:
1
;
}
.modal-footer
{
padding
:
1rem
2rem
;
border-top
:
1px
solid
#e5e7eb
;
text-align
:
right
;
flex-shrink
:
0
;
}
.form-row
{
display
:
flex
;
gap
:
1rem
;
}
.form-row
.form-group
{
flex
:
1
;
}
...
...
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