From 06417b60695b652c6a706c3d455dc7274d80f8ca Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 10 Sep 2015 07:02:44 -0700 Subject: [PATCH 1/2] Fix table widths --- .../protected/compare/results/template.hbs | 46 +++++++++---------- app/styles/app.css | 8 ++-- 2 files changed, 26 insertions(+), 28 deletions(-) diff --git a/app/pods/protected/compare/results/template.hbs b/app/pods/protected/compare/results/template.hbs index e7384f8..f40869c 100644 --- a/app/pods/protected/compare/results/template.hbs +++ b/app/pods/protected/compare/results/template.hbs @@ -1,27 +1,25 @@ -
- - +
+ + + + {{#each strains as |strain|}} + + {{/each}} + + + + {{#each model as |row|}} - - {{#each strains as |strain|}} - + {{#each row key="@index" as |col|}} + {{/each}} - - - {{#each model as |row|}} - - {{#each row key="@index" as |col|}} - - {{/each}} - - {{/each}} - -
Characteristic + {{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}} + {{strain.fullNameMU}} + {{/link-to}} +
Characteristic - {{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}} - {{strain.fullNameMU}} - {{/link-to}} - {{col}}
{{col}}
-
- Download as CSV -
+ {{/each}} + + +
+Download as CSV diff --git a/app/styles/app.css b/app/styles/app.css index b6f0827..1722f5e 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -7,10 +7,6 @@ overflow: auto; } -.measurements-container { - padding: 2em 0em 0em 0em; -} - .select2-container { width: 100%; } @@ -27,6 +23,10 @@ color: #5CA934; } +table.flakes-table td { + white-space: normal; +} + /* BEGIN https://github.com/tobiasahlin/SpinKit */ .spinner { width: 40px; From 065ab972e2ef48904aa748cc46aa5e70be413346 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 10 Sep 2015 07:03:40 -0700 Subject: [PATCH 2/2] Drop isEditing --- app/pods/protected/characteristics/show/template.hbs | 2 +- app/pods/protected/species/show/template.hbs | 2 +- app/pods/protected/strains/show/template.hbs | 2 +- app/pods/protected/users/show/template.hbs | 2 +- app/styles/app.css | 4 ---- 5 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app/pods/protected/characteristics/show/template.hbs b/app/pods/protected/characteristics/show/template.hbs index ccdb9f4..de81623 100644 --- a/app/pods/protected/characteristics/show/template.hbs +++ b/app/pods/protected/characteristics/show/template.hbs @@ -1,6 +1,6 @@
-
+
{{model.characteristicName}} diff --git a/app/pods/protected/species/show/template.hbs b/app/pods/protected/species/show/template.hbs index 6d7252f..059ab04 100644 --- a/app/pods/protected/species/show/template.hbs +++ b/app/pods/protected/species/show/template.hbs @@ -1,6 +1,6 @@
-
+
Species {{model.speciesName}} diff --git a/app/pods/protected/strains/show/template.hbs b/app/pods/protected/strains/show/template.hbs index 7504458..cf07781 100644 --- a/app/pods/protected/strains/show/template.hbs +++ b/app/pods/protected/strains/show/template.hbs @@ -1,5 +1,5 @@
-
+
Strain {{model.strainNameMU}} diff --git a/app/pods/protected/users/show/template.hbs b/app/pods/protected/users/show/template.hbs index de032f9..32117c9 100644 --- a/app/pods/protected/users/show/template.hbs +++ b/app/pods/protected/users/show/template.hbs @@ -1,5 +1,5 @@
-
+
{{model.name}} diff --git a/app/styles/app.css b/app/styles/app.css index 1722f5e..332f3c8 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -15,10 +15,6 @@ cursor: pointer; } -.is-editing { - background-color: #FFFCE2; -} - .type-strain { color: #5CA934; }