2016-10-13 17:05:11 +08:00
|
|
|
@import 'constants';
|
2016-02-12 23:52:43 +08:00
|
|
|
@import "mixins";
|
|
|
|
|
|
|
|
/* Index page */
|
|
|
|
.report-table {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* New page navbar */
|
|
|
|
.navbar-report {
|
2018-05-12 00:02:17 +08:00
|
|
|
background: $color-white;
|
|
|
|
border-bottom: 1px solid $color-gainsboro;
|
2018-04-18 20:40:53 +08:00
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
2018-05-12 00:02:17 +08:00
|
|
|
border-top: 15px solid $color-concrete;
|
|
|
|
margin-bottom: 15px;
|
2016-02-12 23:52:43 +08:00
|
|
|
min-width: 320px;
|
2018-05-12 00:02:17 +08:00
|
|
|
padding: 25px 20px;
|
|
|
|
position: sticky;
|
|
|
|
top: 50px;
|
2018-04-18 20:40:53 +08:00
|
|
|
z-index: 500;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
div.row {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#report-menu {
|
|
|
|
form {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-04-18 20:40:53 +08:00
|
|
|
|
|
|
|
.form-group {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
& > div.row {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#sort-report {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.get-report-pdf-form {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-05-09 20:22:26 +08:00
|
|
|
// Modal for adding content
|
|
|
|
label {
|
2017-05-11 20:18:51 +08:00
|
|
|
&[for="_experiment_all"],
|
|
|
|
&[for="_module_all"],
|
|
|
|
&[for="_step_all"],
|
2017-05-18 00:18:57 +08:00
|
|
|
&[for="_result_all"] {
|
2017-05-09 20:22:26 +08:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Global fix for handsontable
|
|
|
|
*/
|
|
|
|
.hot-table-container {
|
|
|
|
.ht_master .wtHolder {
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ht_clone_top,.ht_clone_left,.ht_clone_corner {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* New page content */
|
2018-05-12 00:02:17 +08:00
|
|
|
#report-new {
|
|
|
|
margin-top: -15px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.report-body {
|
2018-05-12 00:02:17 +08:00
|
|
|
background: $color-silver;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.report-container {
|
2018-05-12 00:02:17 +08:00
|
|
|
background: $color-silver;
|
|
|
|
box-shadow: 0 0 2px 1px $color-silver;
|
2016-02-12 23:52:43 +08:00
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: auto;
|
2018-05-12 00:02:17 +08:00
|
|
|
padding: 30px;
|
2018-04-18 20:40:53 +08:00
|
|
|
padding-left: 0;
|
|
|
|
width: auto;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#report-content {
|
2018-04-18 20:40:53 +08:00
|
|
|
@include box-shadow(0 0 58px -10px $color-black);
|
2016-02-12 23:52:43 +08:00
|
|
|
background: $color-white;
|
2018-04-18 20:40:53 +08:00
|
|
|
color: $color-black;
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2018-05-12 00:02:17 +08:00
|
|
|
margin-top: -15px;
|
2018-04-18 20:40:53 +08:00
|
|
|
max-width: 800px;
|
|
|
|
min-height: 1200px;
|
|
|
|
min-width: 230px;
|
2016-02-12 23:52:43 +08:00
|
|
|
padding: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 720px) {
|
|
|
|
#report-content {
|
|
|
|
padding: 25px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** "New element" floating element */
|
|
|
|
.new-element {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
opacity: 0.05;
|
|
|
|
|
|
|
|
&.initial {
|
|
|
|
/** Special "visual" display of initial new element block */
|
|
|
|
opacity: 0.7;
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 5px;
|
2018-03-28 19:54:01 +08:00
|
|
|
border: 4px $brand-primary solid;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
.plus-icon {
|
|
|
|
bottom: 16px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.line {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
.filler-wrapper {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.filler {
|
|
|
|
display: block;
|
|
|
|
height: 4px;
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
border-radius: 1px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-line .filler-wrapper {
|
|
|
|
padding: 0 20px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-line .filler-wrapper {
|
|
|
|
padding: 0 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plus-icon {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 40px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 2px;
|
|
|
|
left: 50%;
|
|
|
|
margin: 0 0 0 -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clear {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.new-element:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
|
|
|
|
.filler {
|
2018-03-28 19:54:01 +08:00
|
|
|
background-color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
.plus-icon span {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GLOBAL REPORT ELEMENT STYLE */
|
|
|
|
.report-element {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: 2px solid $color-black;
|
|
|
|
|
|
|
|
.user-time {
|
|
|
|
color: $color-emperor;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.controls {
|
|
|
|
margin-right: 15px;
|
2018-03-30 15:54:57 +08:00
|
|
|
font-size: $font-size-h6;
|
2016-02-12 23:52:43 +08:00
|
|
|
opacity: 0.05;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-children {
|
|
|
|
padding-left: 45px;
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2018-05-15 00:33:57 +08:00
|
|
|
background-color: $color-gainsboro;
|
|
|
|
@include box-shadow(0 0 2px 15px $color-gainsboro);
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
& > .report-element-header {
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Project header element style */
|
|
|
|
.report-project-header-element {
|
|
|
|
margin-bottom: 60px;
|
|
|
|
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.report-element-body {
|
|
|
|
.project-name {
|
|
|
|
border-bottom: 4px solid $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-body .project-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Module element style */
|
|
|
|
.report-module-element {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
.module-name {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.module-tags {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
|
|
.module-no-tag {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.module-tag {
|
|
|
|
margin-left: 5px;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-body .module-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Result element style (generic) */
|
|
|
|
.report-result-element {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
height: 0;
|
|
|
|
|
2016-12-19 22:09:49 +08:00
|
|
|
.result-name-container {
|
|
|
|
max-width: 570px;
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.result-icon {
|
2016-12-19 22:09:49 +08:00
|
|
|
display: inline-block;
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-left: 15px;
|
|
|
|
}
|
2016-12-19 22:09:49 +08:00
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
.result-name {
|
2016-12-19 22:09:49 +08:00
|
|
|
display: inline-block;
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2016-12-19 22:09:49 +08:00
|
|
|
|
|
|
|
.user-time {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
2016-12-19 22:09:49 +08:00
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
clear: left;
|
|
|
|
padding-top: 10px !important;
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Result asset element style */
|
|
|
|
.report-result-asset-element {
|
|
|
|
.report-element-header {
|
|
|
|
.file-name {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-19 23:42:14 +08:00
|
|
|
// Result table element style
|
2016-02-12 23:52:43 +08:00
|
|
|
.report-result-table-element {
|
|
|
|
.report-element-body {
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Result text element style */
|
|
|
|
.report-result-text-element {
|
|
|
|
.report-element-body {
|
|
|
|
.text-container {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: $color-concrete;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Step element style */
|
|
|
|
.report-step-element {
|
|
|
|
&:hover > .report-element-body .step-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Step attachment style (table, asset or checklist) */
|
|
|
|
.report-step-attachment-element {
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
.attachment-icon {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-children {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
|
|
|
.attachment-icon {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Step table element style */
|
|
|
|
.report-step-table-element {
|
|
|
|
.report-element-header {
|
2017-01-17 20:44:24 +08:00
|
|
|
.table-name {
|
2016-02-12 23:52:43 +08:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 20:44:24 +08:00
|
|
|
&:hover > .report-element-header {
|
|
|
|
.table-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2017-01-17 20:44:24 +08:00
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Step asset element style */
|
|
|
|
.report-step-asset-element {
|
|
|
|
.report-element-header {
|
|
|
|
.file-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header .file-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Step checklist element style */
|
|
|
|
.report-step-checklist-element {
|
|
|
|
.report-element-header {
|
|
|
|
.checklist-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
padding-top: 0;
|
|
|
|
|
|
|
|
& > ul > li > span.checked {
|
|
|
|
/* Currently nothing */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header .checklist-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Comments element style (generic) */
|
|
|
|
.report-comments-element {
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
.comments-icon {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
.comments-container {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: $color-alabaster;
|
|
|
|
|
|
|
|
.comment {
|
|
|
|
margin: 3px 2px;
|
|
|
|
|
|
|
|
.comment-prefix {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
|
|
|
.comments-icon,.comments-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Result comments element style */
|
|
|
|
.report-result-comments-element {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Step comments element style */
|
|
|
|
.report-step-comments-element {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Module samples element */
|
|
|
|
.report-module-samples-element {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
.samples-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
|
|
|
.samples-icon,.samples-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-08 00:26:32 +08:00
|
|
|
// Module repository element
|
2017-06-02 19:36:06 +08:00
|
|
|
.report-module-repository-element {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.report-element-header {
|
2017-06-08 00:26:32 +08:00
|
|
|
border-bottom: 0;
|
2017-06-02 19:36:06 +08:00
|
|
|
|
|
|
|
.repository-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
2017-06-08 00:26:32 +08:00
|
|
|
.repository-icon,
|
|
|
|
.repository-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2017-06-02 19:36:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
/** Module activity element */
|
|
|
|
.report-module-activity-element {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.report-element-header {
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
|
|
.activity-name {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report-element-body {
|
|
|
|
.activity-container {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: $color-alabaster;
|
|
|
|
|
|
|
|
.activity {
|
|
|
|
margin: 3px 2px;
|
|
|
|
|
|
|
|
.activity-prefix {
|
|
|
|
color: $color-emperor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover > .report-element-header {
|
|
|
|
.activity-icon,.activity-name {
|
2018-03-28 19:54:01 +08:00
|
|
|
color: $brand-primary;
|
2016-02-12 23:52:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-16 15:31:19 +08:00
|
|
|
|
|
|
|
#save-PDF-to-inventory-warnings {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-PDF-to-inventory-alerts {
|
|
|
|
.danger {
|
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
}
|