refinement to readonly mode: banner now gray and removed disabled for controls as they were too faded to read properly and some controls with action buttons didn't work (email, phone etc)

This commit is contained in:
2020-12-02 17:41:49 +00:00
parent db0b1ffcba
commit c0dd56b90a
20 changed files with 109 additions and 221 deletions

View File

@@ -1328,7 +1328,8 @@ export default new Vuetify({
secondary: "#00843D", //canucks green
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
disabled: "#c7c7c7"
disabled: "#c7c7c7",
readonlybanner: "#808080"
},
dark: {
//here you will define primary secondary stuff for dark theme
@@ -1337,7 +1338,8 @@ export default new Vuetify({
secondary: "#006B24", //canucks green DARKENED 10%
accent: "#db7022", //lighter orangey red, more friendly looking though not as much clarity it seems
error: "#ff5252", //lighter red, have to see if it's good for all screens and sizes as it's a bit light but it stands out as an error condition better
disabled: "#c7c7c7"
disabled: "#c7c7c7",
readonlybanner: "#808080"
}
},
options: { variations: false }