Company Styling via CSS

It is possible for a company admin to make his own style (CSS) for glasshouse.

This can be done via company admin page and thus requires Company admin rights.

Use standard CSS code in the text field – Code in this field will overwrite all other CCS code.

Example Code:

/* Project Nav bar - Grey horisontal bar at top */

.project-nav {
background: #fff;
padding: 10px 0px 0px 0px;
}

/* Project Nav bar text */

.project-nav a {
display: inline-block;
padding: 5px 5px;
color: #3e6719;
text-decoration: none;
}

/* Margin below project nav - bar */

.mb-4, .my-4 {
margin-bottom: 0.5rem !important;
}

/* Journal header cell */

.webix_hcell{
font: inherit;
font-size: 12px;
line-height: inherit;
text-align: inherit;
color: #000;
}

/* Journal standard cell */

.webix_cell {
font: inherit;
font-size: 12px;
line-height: inherit;
text-align: inherit;
color: #000;
height: 25px !important /* please note the "!important" part, as this overrules the inline table style */
}

/* Menu popovers - Example: Filter, Group by, Sort by etc. */

.popover {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

/* Change colour of Journal table - group header */

#entries-table--webix .level1 {
background-color: #e02443 ;
}

Leave A Comment?