Bug 1482798 - Use a flex layout for message body; r=bgrins.

It looks like we don't really need a grid layout anymore
for the message body AND it significantly reduces the time
spent on reflow.

Differential Revision: https://phabricator.services.mozilla.com/D3853

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Chevobbe 2018-08-21 16:25:49 +00:00
Родитель e858b8d083
Коммит 153d0e78b0
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -88,7 +88,7 @@ a {
/* The red bubble that shows the number of times a message is repeated */ /* The red bubble that shows the number of times a message is repeated */
.message-repeats { .message-repeats {
-moz-user-select: none; -moz-user-select: none;
flex: none; flex-shrink: 0;
margin: 2px 6px; margin: 2px 6px;
padding: 0 6px; padding: 0 6px;
height: 1.25em; height: 1.25em;
@ -98,6 +98,7 @@ a {
font: message-box; font: message-box;
font-size: 0.9em; font-size: 0.9em;
font-weight: 600; font-weight: 600;
margin-inline-start: 5px;
} }
.message-repeats[value="1"] { .message-repeats[value="1"] {
@ -106,8 +107,9 @@ a {
.message-location { .message-location {
max-width: 40vw; max-width: 40vw;
grid-column: -1 / -2; flex-shrink: 0;
color: var(--frame-link-source); color: var(--frame-link-source);
margin-inline-start: 5px;
} }
.stack-trace { .stack-trace {
@ -140,9 +142,7 @@ a {
} }
.message-flex-body { .message-flex-body {
display: grid; display: flex;
grid-template-columns: 1fr auto max-content;
grid-gap: 5px;
} }
.message-body { .message-body {
@ -152,7 +152,7 @@ a {
.message-flex-body > .message-body { .message-flex-body > .message-body {
display: block; display: block;
flex: auto; flex: 1;
} }
/* Network styles */ /* Network styles */