First commit
This commit is contained in:
80
application/elements/gridView/gridView.js
Normal file
80
application/elements/gridView/gridView.js
Normal file
@@ -0,0 +1,80 @@
|
||||
|
||||
|
||||
export default class gridView{
|
||||
|
||||
display = "table";
|
||||
|
||||
layers = 1;
|
||||
|
||||
fontSize = 12;
|
||||
|
||||
|
||||
|
||||
borderCollapse = "separate";
|
||||
|
||||
borderSpacing = "0";
|
||||
|
||||
borderRadius = 12;
|
||||
|
||||
overflow = "hidden";
|
||||
|
||||
|
||||
|
||||
#ifdef WINDOWS
|
||||
|
||||
margin = 30;
|
||||
|
||||
borderRadius = 4;
|
||||
|
||||
#ifdef DARK
|
||||
|
||||
background = "#202020"
|
||||
|
||||
color = "white"
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef LIGHT
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef MACOS
|
||||
|
||||
margin = 2;
|
||||
|
||||
borderRadius = 4;
|
||||
|
||||
#ifdef DARK
|
||||
|
||||
color = "white"
|
||||
|
||||
border = "1px solid #4f4f4f"
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef LIGHT
|
||||
|
||||
border = "1px solid rgb(0 0 0 / 5%)"
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef ANDROID
|
||||
|
||||
|
||||
|
||||
#ifdef LIGHT
|
||||
|
||||
background = "white";
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
propegateEvent = false;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user