Files
Unify/application/demo/comment/edit/comment.information.js

70 lines
962 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import userLabel from './comment.userLabel.js';
import deleteButton from './comment.deleteButton.js';
import editButton from './comment.editButton.js';
import icon from '/elements/icon.js';
class chatIcon extends icon{
margin = 12;
}
export default class information{
width = "100%";
display = "grid";
display = "flex";
flexFlow = "row";
layers = 2;
borderBottom = "#2b2c2d57";
borderTop = "#2b2c2d57";
gridTemplate = " '_deleteButton _editButton' " +
" 'userLabel userLabel' ";
gridTemplateColumns = "40px 100px";
gridTemplateRows = "40px 60px";
#ifdef WINDOWS
#ifdef LIGHT
background = "#4b94d31f";
#endif
#ifdef DARK
//background = "rgb(48 51 56 / 86%)";
#endif
#endif
_deleteButton = new deleteButton( );
_editButton = new editButton( );
_userLabel = new userLabel();
//_icon = new chatIcon("ios-chatbubbles-outline.svg", true);
}