1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

LibWebView: Log the result of taking screenshots to Inspector's console

It probably isn't obvious that screenshots are saved to the user's
Downloads folder, so add a console message to inform them.
This commit is contained in:
Timothy Flynn 2023-12-09 16:57:57 -05:00 committed by Andreas Kling
parent e0450301ab
commit 42c0ac9352
5 changed files with 49 additions and 14 deletions

View file

@ -204,6 +204,14 @@ details > :not(:first-child) {
color: cyan;
}
.console-message {
color: lightskyblue;
}
.console-warning {
color: orange;
}
.console-input {
background-color: rgb(57, 57, 57);
}
@ -218,6 +226,14 @@ details > :not(:first-child) {
color: blue;
}
.console-message {
color: blue;
}
.console-warning {
color: darkorange;
}
.console-input {
background-color: rgb(229, 229, 229);
}