Skip to content

Commit

Permalink
Clean up stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette committed Nov 1, 2023
1 parent c9d18df commit 3fcf4c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
1 change: 0 additions & 1 deletion dwds/debug_extension_mv3/web/copier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ Future<void> _showCopiedMessage(String appId) async {
snackbar.setInnerHtml('Copied app ID: <i>$appId</i>');
snackbar.classes.addAll([
'dart-debug-extension-snackbar',
'dart-debug-extension-show',
]);
document.body?.append(snackbar);
await Future.delayed(Duration(seconds: 4));
Expand Down
15 changes: 3 additions & 12 deletions dwds/debug_extension_mv3/web/static_assets/styles_injected.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*/

.dart-debug-extension-snackbar {
-webkit-animation: dart-debug-extension-fadein 0.5s;
animation: dart-debug-extension-fadein 0.5s;
background-color: #303030;
color: #eeeeee;
font-family: Roboto, 'Helvetica Neue', sans-serif;
Expand All @@ -15,22 +17,11 @@
right: 0px;
text-align: center;
top: 0px;
visibility: hidden;
visibility: visible;
width: 100%;
z-index: 2147483647;
}

.dart-debug-extension-snackbar > a {
color: #eeeeee;
font-weight: bold;
}

.dart-debug-extension-show {
-webkit-animation: dart-debug-extension-fadein 0.5s;
animation: dart-debug-extension-fadein 0.5s;
visibility: visible;
}

@-webkit-keyframes dart-debug-extension-fadein {
from {
opacity: 0;
Expand Down

0 comments on commit 3fcf4c7

Please sign in to comment.