Use 'max-height' (vs. fixed 'height') to allow partially collapsed quotes
commit745d24649b5977c630f7f150aa37b2ebc6add479
authorStanimir Stamenkov <stanio@yahoo.com>
Sat, 3 Mar 2018 21:46:30 +0000 (3 16:46 -0500)
committerStanimir Stamenkov <stanio@yahoo.com>
Sat, 3 Mar 2018 22:02:28 +0000 (3 17:02 -0500)
tree465a2fb379cd232fdf9be59ec11c30be1c26bfe4
parent18627fe79dcf98cab28ba5f58250b61b4fbb736c
Use 'max-height' (vs. fixed 'height') to allow partially collapsed quotes

Existing customizations using 'height' need to be adjusted appropriately.

Suggested user customization:

/* Partially reveal first level collapsed quotes */
body.mailview blockquote[type="cite"]:not([qctoggled="true"]) {
  max-height: 6.6em !important;
}

/* Always have nested collapsed quotes reveal just one line of text */
body.mailview blockquote[type="cite"]:not([qctoggled="true"])
              blockquote[type="cite"]:not([qctoggled="true"]) {
  max-height: 1.2em !important;
}
src/chrome/content/quotecollapse/quotecollapse.js