mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
style and theming fixes (#428)
* fix generic error text and styles * search input layout and style fixes * settings theme * layout theme support * current user theme * theming support for header component * disable "use-host-property-decorator" tslint rule * sorting picker button theme
This commit is contained in:
@@ -30,13 +30,13 @@ import { UserInfo } from './user-info';
|
||||
export class Header extends Component {
|
||||
private locators = {
|
||||
logoLink: by.css('.app-menu__title'),
|
||||
userInfo: by.css('app-current-user')
|
||||
userInfo: by.css('aca-current-user')
|
||||
};
|
||||
|
||||
logoLink: ElementFinder = this.component.element(this.locators.logoLink);
|
||||
userInfo: UserInfo = new UserInfo(this.component);
|
||||
|
||||
constructor(ancestor?: ElementFinder) {
|
||||
super('app-header', ancestor);
|
||||
super('aca-header', ancestor);
|
||||
}
|
||||
}
|
||||
|
@@ -40,7 +40,7 @@ export class UserInfo extends Component {
|
||||
menu: Menu = new Menu();
|
||||
|
||||
constructor(ancestor?: ElementFinder) {
|
||||
super('app-current-user', ancestor);
|
||||
super('aca-current-user', ancestor);
|
||||
}
|
||||
|
||||
openMenu(): promise.Promise<Menu> {
|
||||
|
Reference in New Issue
Block a user