Skip to content
Snippets Groups Projects
Commit 5aaeb4ef authored by juanf's avatar juanf
Browse files

BIS-627 / SP-1141: ELN UI - Improve Workspace Uploader (Fix Button Style, Fix...

BIS-627 / SP-1141: ELN UI - Improve Workspace Uploader (Fix Button Style, Fix Upload File Options on ELN)

SVN: 30602
parent d86da9ab
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,30 @@ a:visited {
a:hover {
color: #000;
}
button {
box-shadow: inset 0 0 1px white;
cursor: pointer;
border-radius: 2px;
border-top: 1px solid #ccc;
border-left: 1px solid #aaa;
border-right: 1px solid #999;
border-bottom: 1px solid #888;
background-color: #e0e0e0;
background-image: linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -o-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -moz-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -webkit-linear-gradient(bottom, rgb(200,200,200) 8%, rgb(250,250,250) 89%);
font-family: Tahoma, Arial, sans-serif;
padding: 0.5ex 0.5em;
font-size: 12px;
margin: 1ex 0;
}
button:hover {
background-image: linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -o-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -moz-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -webkit-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
}
*/
#filedrop {
color: #000;
......@@ -96,35 +120,11 @@ a:hover {
color: #444;
font-size: 110%;
}
button {
box-shadow: inset 0 0 1px white;
cursor: pointer;
border-radius: 2px;
border-top: 1px solid #ccc;
border-left: 1px solid #aaa;
border-right: 1px solid #999;
border-bottom: 1px solid #888;
background-color: #e0e0e0;
background-image: linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -o-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -moz-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -webkit-linear-gradient(bottom, rgb(200,200,200) 8%, rgb(250,250,250) 89%);
font-family: Tahoma, Arial, sans-serif;
padding: 0.5ex 0.5em;
font-size: 12px;
margin: 1ex 0;
}
button.huge {
padding: 2ex 4em;
font-size: 13px;
font-weight: bold;
}
button:hover {
background-image: linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -o-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -moz-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
background-image: -webkit-linear-gradient(bottom, rgb(220,220,220) 8%, rgb(255,255,255) 89%);
}
#filelist-container {
padding: 2ex 1em 3ex 1em;
}
......
......@@ -120,6 +120,7 @@ function DataSetForm(serverFacade, containerId, profile, sample, mode) {
break;
}
}
localInstance._updateFileOptions();
}
this.serverFacade.openbisServer.createSessionWorkspaceUploader($("#APIUploader"), onComplete, {
......
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