ui issues for technical goals. #13
alan-stokes
started this conversation in
Ideas
Replies: 1 comment
-
I think we will need a general look at the overall style and layout of the UI as we polish and try to optimise the tool. Certainly the performance parameters could be more squeezed as there are less fields/data to display than for the spectral windows. The colours are there because without them it looks somewhat flat and, at first glance, difficult to tell which unit field belongs to which numeric field. Grey scale might be a better option, or potentially rethink of the layout. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
inside the edit.group in technical goals, there is the following code to control layout of the tables.
'const TOTAL_COLUMNS = 10;
const PERFORMANCE_COLUMNS = 4;
const SPECTRUM_COLUMNS = TOTAL_COLUMNS - PERFORMANCE_COLUMNS'
maybe changing this to:
const TOTAL_COLUMNS = 12; const PERFORMANCE_COLUMNS = 3; const SPECTRUM_COLUMNS = TOTAL_COLUMNS - PERFORMANCE_COLUMNS
makes the ui less squeezed for the windows. views?
also, do we really need these colours in the windows? as it is the only table with this colour scheme and just looks off because of it?
Beta Was this translation helpful? Give feedback.
All reactions