54 lines
441 B
JavaScript
54 lines
441 B
JavaScript
|
|
|
|
|
|
|
|
export default class gridViewTableHeader{
|
|
|
|
flexFlow = "column";
|
|
|
|
display = "table-row-group"
|
|
|
|
layers = 1;
|
|
|
|
|
|
#ifdef WINDOWS
|
|
|
|
fontSize = 12;
|
|
|
|
#ifdef DARK
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
background = "white";
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MACOS
|
|
|
|
fontSize = 12;
|
|
|
|
#ifdef DARK
|
|
|
|
background = "#2c2c2c";
|
|
|
|
fontWeight = "bold";
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
|
|
background = "rgb(0 0 0 / 1%)";
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
} |