calc max-width for Firefox

account for prompt width
pull/37/head
Min RK 11 years ago
parent 597208a50a
commit dd41d9fd5c

@ -107,7 +107,7 @@ div.output_subarea {
padding: @code_padding;
.box-flex1();
// appears to be needed for max-width in children to mean anything on Firefox:
max-width: 100%;
max-width: calc(~"100% - 14ex");
}
/* The rest of the output_* classes are for special styling of the different

@ -890,7 +890,7 @@ div.output_subarea {
box-flex: 1;
/* Modern browsers */
flex: 1;
max-width: 100%;
max-width: calc(100% - 14ex);
}
/* The rest of the output_* classes are for special styling of the different
output types */

@ -9682,7 +9682,7 @@ div.output_subarea {
box-flex: 1;
/* Modern browsers */
flex: 1;
max-width: 100%;
max-width: calc(100% - 14ex);
}
/* The rest of the output_* classes are for special styling of the different
output types */

Loading…
Cancel
Save