Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
el3ab-Player
Project
Project
Details
Activity
Releases
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
Administrator
el3ab-Player
Commits
1ac45fdf
Commit
1ac45fdf
authored
Jun 25, 2026
by
Mahmoud Aglan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add sheet max-height and background color controls
Co-Authored-By:
Claude Opus 4.6
<
noreply@anthropic.com
>
parent
2b842330
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
branding.php
admin/branding.php
+13
-0
No files found.
admin/branding.php
View file @
1ac45fdf
...
...
@@ -391,6 +391,19 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_FILES['asset'])) {
<div
class=
"hint"
>
<?=
$s
[
'hint'
]
?>
</div>
</div>
<?php
endforeach
;
?>
<div
class=
"field"
>
<label>
Max Height
</label>
<div
class=
"range-row"
>
<input
type=
"range"
name=
"theme[sheet_max_height]"
value=
"
<?=
$theme
[
'sheet_max_height'
]
??
'75'
?>
"
min=
"40"
max=
"95"
oninput=
"this.nextElementSibling.textContent=this.value+'vh'"
>
<span
class=
"range-val"
>
<?=
$theme
[
'sheet_max_height'
]
??
'75'
?>
vh
</span>
</div>
<div
class=
"hint"
>
Sheet max viewport height
</div>
</div>
<div
class=
"field"
>
<label>
Sheet Background
</label>
<input
type=
"color"
name=
"theme[sheet_bg]"
value=
"
<?=
$theme
[
'sheet_bg'
]
??
'#0f0f1e'
?>
"
class=
"color-input"
>
<div
class=
"hint"
>
Bottom sheet bg color
</div>
</div>
</div>
</div>
...
...
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