waveterm/frontend/app/view/webview/webview.less
Evan Simkowitz 69c99dd13a
Add button to mute audio when media is playing in webview (#1036)
![image](https://github.com/user-attachments/assets/202636dc-aab5-4164-9729-fecd0cc804ae)

Also fixes atom usage for the url bar so it will properly update when
any upstream atom states change
2024-10-15 15:15:33 -07:00

31 lines
584 B
Plaintext

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
.webview {
height: 100%;
width: 100%;
border: none !important;
outline: none !important;
overflow: hidden;
padding: 0;
margin: 0;
// try to force pixel alignment to prevent
// subpixel rendering artifacts
transform: translate3d(0, 0, 0);
will-change: transform;
}
.block-frame-div-url {
background: rgba(255, 255, 255, 0.1);
input {
opacity: 1;
}
.iconbutton {
width: fit-content !important;
margin-right: 5px;
}
}