54 lines
475 B
JavaScript
54 lines
475 B
JavaScript
|
|
|
|
import tableCell from "/elements/tableCell.js";
|
|
|
|
export default class gridViewBodyColumn extends tableCell{
|
|
|
|
useCustomElement = false;
|
|
|
|
layers = 1;
|
|
|
|
|
|
#ifdef WINDOWS
|
|
|
|
padding = 20;
|
|
|
|
#ifdef DARK
|
|
|
|
paddingLeft = 30;
|
|
|
|
//borderLeft = "1px solid #24364e7a";
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef MACOS
|
|
|
|
padding = 12;
|
|
|
|
#ifdef DARK
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
#ifdef ANDROID
|
|
|
|
padding = 20;
|
|
|
|
#endif
|
|
|
|
|
|
} |