First commit
This commit is contained in:
52
application/elements/taskbar/taskbar.js
Normal file
52
application/elements/taskbar/taskbar.js
Normal file
@@ -0,0 +1,52 @@
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user