Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
6550b051
Commit
6550b051
authored
Mar 08, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix sidebar on scoll down when page is really long
parent
73b7eea5
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
24 deletions
+35
-24
debomatic-webui/public/javascripts/main.js
debomatic-webui/public/javascripts/main.js
+10
-0
debomatic-webui/public/stylesheets/style.css
debomatic-webui/public/stylesheets/style.css
+4
-6
debomatic-webui/public/stylesheets/style.styl
debomatic-webui/public/stylesheets/style.styl
+5
-5
debomatic-webui/views/index.ejs
debomatic-webui/views/index.ejs
+15
-13
debomatic-webui/views/layout.ejs
debomatic-webui/views/layout.ejs
+1
-0
No files found.
debomatic-webui/public/javascripts/main.js
View file @
6550b051
...
@@ -62,4 +62,14 @@ $(window).on('hashchange', function() {
...
@@ -62,4 +62,14 @@ $(window).on('hashchange', function() {
$
(
window
).
on
(
'
load
'
,
function
(){
$
(
window
).
on
(
'
load
'
,
function
(){
Page
.
update
(
old_data
)
Page
.
update
(
old_data
)
$
(
window
).
scroll
(
function
()
{
var
offset
=
$
(
"
#file
"
).
offset
();
if
(
$
(
window
).
scrollTop
()
>
offset
.
top
+
220
)
{
$
(
"
#sticky
"
).
stop
().
addClass
(
'
fixed
'
);
}
else
{
$
(
"
#sticky
"
).
stop
().
removeClass
(
'
fixed
'
);
}
});
});
});
debomatic-webui/public/stylesheets/style.css
View file @
6550b051
body
{
.fixed
{
padding
:
50px
;
position
:
fixed
;
font
:
14px
"Lucida Grande"
,
Helvetica
,
Arial
,
sans-serif
;
width
:
220px
!important
;
}
top
:
10px
;
a
{
color
:
#00b7ff
;
}
}
debomatic-webui/public/stylesheets/style.styl
View file @
6550b051
body
.fixed
padding: 50px
position fixed
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
width 220px !important;
a
top 10px;
color: #00B7FF
\ No newline at end of file
debomatic-webui/views/index.ejs
View file @
6550b051
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
<ul class="nav nav-pills nav-stacked"></ul>
<ul class="nav nav-pills nav-stacked"></ul>
</nav>
</nav>
<div id="sticky" >
<section id="files">
<section id="files">
<h3 class="title">Files</h3>
<h3 class="title">Files</h3>
<nav id="logs">
<nav id="logs">
...
@@ -37,6 +38,7 @@
...
@@ -37,6 +38,7 @@
<ul></ul>
<ul></ul>
</nav>
</nav>
</section>
</section>
</div>
</aside>
</aside>
...
...
debomatic-webui/views/layout.ejs
View file @
6550b051
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<link
rel=
"stylesheet"
href=
"/libs/bootstrap/3.1.1/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/libs/bootstrap/3.1.1/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/libs/bootstrap/3.1.1/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/libs/bootstrap/3.1.1/css/bootstrap-theme.min.css"
>
<link
rel=
"stylesheet"
href=
"/stylesheets/style.css"
>
<script
src=
'//code.jquery.com/jquery-1.7.2.min.js'
></script>
<script
src=
'//code.jquery.com/jquery-1.7.2.min.js'
></script>
<script
src=
'//localhost:3000/socket.io/socket.io.js'
></script>
<script
src=
'//localhost:3000/socket.io/socket.io.js'
></script>
...
...
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