d9bcccc1c5
- Restructure OnlineBoardFilter to use radio tabs (flight/departure/ arrival/route) with dynamic fields matching e2e test expectations - Fix error page e2e tests to use client-side navigation (SSR renders empty outside [lang]/layout) and use specific CSS class locators - Replace deprecated transparentize() with rgba() in _shadows.scss - Handle WebSocket upgrades explicitly in dev-server to prevent HMR reconnection spam - Resolve DEP0190 by spawning modern binary directly without shell - Add tests/e2e-angular to tsconfig excludes
21 lines
474 B
SCSS
21 lines
474 B
SCSS
@use './colors' as colors;
|
|
@use './variables' as variables;
|
|
|
|
@mixin box-shadow-small {
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
@mixin box-shadow-big {
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
@mixin box-shadow--focus-inset {
|
|
box-shadow: inset 0 0 0 0.2em $focus-shadow !important;
|
|
}
|
|
|
|
@mixin control-border-shadow {
|
|
border: 1px solid colors.$border-input;
|
|
border-radius: variables.$border-radius;
|
|
box-shadow: 0 2px 2px rgba(#b1b1b1, 0.16);
|
|
}
|