Quick n dirty verificatio request viewer in devtools

This commit is contained in:
Zoe 2020-02-21 17:15:53 +00:00
parent 744826db48
commit 72789897a0
3 changed files with 116 additions and 1 deletions

View file

@ -189,3 +189,37 @@ limitations under the License.
}
}
}
.mx_DevTools_VerificationRequest {
border: 1px solid #cccccc;
border-radius: 3px;
padding: 1px 5px;
margin-bottom: 6px;
font-family: "Inconsolata", courier;
dl {
display: grid;
grid-template-columns: max-content auto;
margin: 0;
}
dd {
grid-column-start: 2;
}
dd:empty {
color: #666666;
&::after {
content: "(empty)";
}
}
dt {
font-weight: bold;
grid-column-start: 1;
}
dt::after {
content: ":";
}
}