Skip to content
Snippets Groups Projects
Commit b2680d9e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

css modified for +/- buttons

parent 07aee22c
No related branches found
No related tags found
1 merge request!970Resolve "In SAFARI genome browser buttons need adjustment"
Pipeline #15175 passed
...@@ -21,6 +21,7 @@ minerva (14.0.3) stable; urgency=medium ...@@ -21,6 +21,7 @@ minerva (14.0.3) stable; urgency=medium
* Bug fix: fields in add project window are reinitialized after each open * Bug fix: fields in add project window are reinitialized after each open
(#963) (#963)
* Bug fix: filename case in uploaded zip files is preserved (#964) * 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 -- Piotr Gawron <piotr.gawron@uni.lu> Wed, 16 Oct 2019 9:00:00 +0200
......
...@@ -1099,6 +1099,9 @@ https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip ...@@ -1099,6 +1099,9 @@ https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip
width: 180px; width: 180px;
} }
.minerva-genome-viewer-container {
width: 650px;
}
/** OLD CSS */ /** OLD CSS */
......
...@@ -360,8 +360,7 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) { ...@@ -360,8 +360,7 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) {
var self = this; var self = this;
var result = document.createElement("div"); var result = Functions.createElement({type: "div", className: "minerva-genome-viewer-container"});
result.style.width = '640px';
var titleElement = document.createElement("h3"); var titleElement = document.createElement("h3");
titleElement.innerHTML = "Gene variants"; titleElement.innerHTML = "Gene variants";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment