Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
4bf557b4
Commit
4bf557b4
authored
Mar 18, 2016
by
HERBERT Ryan
Browse files
css disable browser menu on server page fix
Whole top container is no longer disabled, only browser menus
parent
8dc9cd77
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
browser/css/dark.css
View file @
4bf557b4
...
...
@@ -56,6 +56,9 @@ ul {
position
:
fixed
;
z-index
:
1
;
}
#menu-container
{
background
:
inherit
;
}
.scatterplot
,
.graph
{
-khtml-user-select
:
none
;
...
...
browser/css/light.css
View file @
4bf557b4
...
...
@@ -56,6 +56,9 @@ ul {
position
:
fixed
;
z-index
:
1
;
}
#menu-container
{
background
:
inherit
;
}
.scatterplot
,
.graph
{
-khtml-user-select
:
none
;
...
...
browser/css/vidjil.less
View file @
4bf557b4
...
...
@@ -85,6 +85,10 @@ ul{
z-index:1;
}
#menu-container {
background: inherit;
}
.scatterplot, .graph{
-khtml-user-select: none;
-webkit-user-select: none;
...
...
browser/index.html
View file @
4bf557b4
This diff is collapsed.
Click to expand it.
browser/js/database.js
View file @
4bf557b4
...
...
@@ -283,7 +283,7 @@ Database.prototype = {
// New page displayed, attempt to display header and login notifications
this
.
loadNotifications
();
$
(
"
#
top
-container
"
).
addClass
(
'
disabledClass
'
);
$
(
"
#
menu
-container
"
).
addClass
(
'
disabledClass
'
);
return
0
;
}
...
...
@@ -809,7 +809,7 @@ Database.prototype = {
close
:
function
()
{
this
.
div
.
style
.
display
=
"
none
"
;
this
.
msg
.
innerHTML
=
""
;
$
(
'
#
top
-container
'
).
removeClass
(
'
disabledClass
'
);
$
(
'
#
menu
-container
'
).
removeClass
(
'
disabledClass
'
);
},
fixed_header
:
function
()
{
...
...
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