mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 23:31:21 +02:00
- Removed ambiguous aliases: phpstan, cs-check, syntax - Split lint-biome into lint-css and lint-js with correct paths - Added lint meta-recipe and fix recipe (biome --unsafe + php-cs-fixer) - Fixed FormBootstrap dead null check, CSS shorthand override bug - Updated phpstan baseline, suppressed noDescendingSpecificity/noInnerDeclarations - Applied ~74 biome auto-fixes across CSS/JS
14 lines
380 B
CSS
14 lines
380 B
CSS
/* ============================================================
|
|
MEDIA — Embedded media (video, audio, iframe).
|
|
Root: element selectors
|
|
============================================================ */
|
|
|
|
:where(video, audio, iframe) {
|
|
border: 1px solid var(--bg-primary);
|
|
border-radius: 15px;
|
|
}
|
|
|
|
audio::-webkit-media-controls-enclosure {
|
|
border-radius: var(--radius);
|
|
}
|