Skip to content

Commit

Permalink
Prettier: CSS and JavaScript
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Dec 29, 2020
1 parent 15193be commit 8c69311
Show file tree
Hide file tree
Showing 11 changed files with 3,454 additions and 2,733 deletions.
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.html
multiqc/templates/*/assets/js/packages
bootstrap.min.css
jquery.toast.css
1 change: 1 addition & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
printWidth: 120
56 changes: 32 additions & 24 deletions multiqc/modules/fastqc/assets/css/multiqc_fastqc.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/* Other stuff */
.showhide_orig {
padding: 15px;
height:100%;
height: 100%;
overflow: hidden;
}
.showhide_orig h4 {
Expand All @@ -49,7 +49,7 @@
text-transform: capitalize;
}
.original-plot {
max-width:100%;
max-width: 100%;
max-height: calc(100% - 60px);
cursor: pointer;
}
Expand All @@ -60,30 +60,29 @@
margin: 0 0 -2px 20px;
}


#fastqc_seq_heatmap {
cursor: pointer;
}
#fastqc_seq_heatmap_div .hc-plot-wrapper {
height: 300px;
}
#fastqc_seq_heatmap_footer {
clear:both;
clear: both;
}
#fastqc_sequence_content_plot h5 {
display: inline-block;
height: 18px;
}
#fastqc_per_base_sequence_content_export_btn {
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
float: right;
color: #ccc;
font-size: 12px;
background: none;
border: none;
padding: 5px;
border-radius: 5px;
opacity: 0.9;
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
float: right;
color: #ccc;
font-size: 12px;
background: none;
border: none;
padding: 5px;
border-radius: 5px;
opacity: 0.9;
}
#fastqc_per_base_sequence_content_export_btn:hover,
#fastqc_per_base_sequence_content_export_btn:focus,
Expand All @@ -94,11 +93,11 @@
#fastqc_per_base_sequence_content_export_btn span {
margin-right: 5px;
font-size: 14px;
-webkit-transform:scale(1.3,1);
-moz-transform:scale(1.3,1);
-ms-transform:scale(1.3,1);
-o-transform:scale(1.3,1);
transform:scale(1.3,1);
-webkit-transform: scale(1.3, 1);
-moz-transform: scale(1.3, 1);
-ms-transform: scale(1.3, 1);
-o-transform: scale(1.3, 1);
transform: scale(1.3, 1);
}

.fastqc_seq_heatmap_key {
Expand All @@ -112,11 +111,20 @@
#fastqc_seq_heatmap_key_pos {
width: 80px;
}
.fastqc_seq_heatmap_key > span, .fastqc_seq_heatmap_key div > span {
display:inline-block;
.fastqc_seq_heatmap_key > span,
.fastqc_seq_heatmap_key div > span {
display: inline-block;
width: 60px;
}
#fastqc_seq_heatmap_key_t { border-bottom: 1px solid red; }
#fastqc_seq_heatmap_key_c { border-bottom: 1px solid blue; }
#fastqc_seq_heatmap_key_a { border-bottom: 1px solid green; }
#fastqc_seq_heatmap_key_g { border-bottom: 1px solid black; }
#fastqc_seq_heatmap_key_t {
border-bottom: 1px solid red;
}
#fastqc_seq_heatmap_key_c {
border-bottom: 1px solid blue;
}
#fastqc_seq_heatmap_key_a {
border-bottom: 1px solid green;
}
#fastqc_seq_heatmap_key_g {
border-bottom: 1px solid black;
}
Loading

0 comments on commit 8c69311

Please sign in to comment.