52 lines
609 B
JavaScript
52 lines
609 B
JavaScript
|
|
|
|
import flexbox from '/elements/flexbox.js';
|
|
|
|
import frostedGlass from '/elements/window/frostedGlass.js';
|
|
|
|
import draggable from '/elements/window/draggable.js';
|
|
|
|
|
|
|
|
|
|
export default class taskbar extends flexbox{
|
|
|
|
selector = "#application";
|
|
|
|
position = "absolute";
|
|
|
|
left = "0";
|
|
|
|
bottom = "0"
|
|
|
|
width = "100%";
|
|
|
|
height = 50;
|
|
#ifdef MACOS
|
|
|
|
fontFamily = "sf-ui";
|
|
|
|
width = 600;
|
|
|
|
#ifdef DARK
|
|
|
|
background = "#161110bf";
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
//background = "white";
|
|
|
|
background = "#fdfdfdbf"
|
|
|
|
#endif
|
|
|
|
backdropFilter = "blur(22px)";
|
|
|
|
#endif
|
|
|
|
|
|
} |