()
| 7030 | applyCss7(); |
| 7031 | } |
| 7032 | function ensureThemedLyricsApplied() { |
| 7033 | applyCss7(); |
| 7034 | } |
| 7035 | |
| 7036 | // src/settings/features/transparentControls.ts |
| 7037 | function applyTransparentControls(width, height) { |
| 7038 | const opacity = isUnixLikeOS() ? 0 : 1; |
| 7039 | const css = ` |
| 7040 | .Root__top-container::after { |
| 7041 | content: ""; |
| 7042 | position: fixed; |
| 7043 | top: 0; |
| 7044 | right: 0; |
| 7045 | z-index: 999; |
| 7046 | backdrop-filter: brightness(2.12); |
| 7047 | width: ${width}px !important; |
nothing calls this directly
no test coverage detected