Hide the top Toolbar in News column » History » Version 2
    « Previous - 
    Version 2/3
    (diff) - 
    Next » - 
    Current version
    
    Anonymous, 27/04/2015 16:07 
    
    
Hide the top Toolbar in News column¶
If only one flux of News is associated with a project, the top Toolbar in the News column might look useless (no different Feeds to select).
To hide this component, it could be associated with a specific CSS class which just creates an empty, gray bar.
The ExtJs file to edit is:
this.tbar = {
    xtype : 'toolbar',
    cls : 'services-toolbar-feeds',
    defaults : {
        scope : this,
        cls : 'services-toolbar-btn'
    },
    items : [ this.cb, '-' , this.buttonDate]
};
In this case, the toolbar has been associated with the new CSS class services-toolbar-feeds. This class should then be defined in:
.services-toolbar-feeds {
        visibility: hidden;
        border-bottom-color: #d0d0d0;
        height: 21px !important;
}
The height: 21px has been imposed in order to make the toolbar as hight as the header bar of the project modules pages.
The Feed toolbar will look like:
