Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Devrim Gunyel
core
Commits
b2680d9e
Commit
b2680d9e
authored
Oct 17, 2019
by
Piotr Gawron
Browse files
css modified for +/- buttons
parent
07aee22c
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
b2680d9e
...
...
@@ -21,6 +21,7 @@ minerva (14.0.3) stable; urgency=medium
* Bug fix: fields in add project window are reinitialized after each open
(#963)
* Bug fix: filename case in uploaded zip files is preserved (#964)
* Bug fix: +/- buttons were misaligned in genemove browser (#942)
-- Piotr Gawron <piotr.gawron@uni.lu> Wed, 16 Oct 2019 9:00:00 +0200
...
...
frontend-js/src/main/css/global.css
View file @
b2680d9e
...
...
@@ -1099,6 +1099,9 @@ https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip
width
:
180px
;
}
.minerva-genome-viewer-container
{
width
:
650px
;
}
/** OLD CSS */
...
...
frontend-js/src/main/js/map/window/AliasInfoWindow.js
View file @
b2680d9e
...
...
@@ -360,8 +360,7 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) {
var
self
=
this
;
var
result
=
document
.
createElement
(
"
div
"
);
result
.
style
.
width
=
'
640px
'
;
var
result
=
Functions
.
createElement
({
type
:
"
div
"
,
className
:
"
minerva-genome-viewer-container
"
});
var
titleElement
=
document
.
createElement
(
"
h3
"
);
titleElement
.
innerHTML
=
"
Gene variants
"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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