Go to file
2018-12-04 09:18:12 -05:00
dist add tslint config 2018-12-04 09:18:12 -05:00
src add tslint config 2018-12-04 09:18:12 -05:00
.gitignore init 2018-08-05 20:19:01 -04:00
.npmignore init 2018-08-05 20:19:01 -04:00
.npmrc init 2018-08-05 20:19:01 -04:00
LICENSE Initial commit 2018-08-05 20:02:17 -04:00
package.json update README 2018-08-05 20:24:39 -04:00
README.md update README 2018-08-05 20:24:39 -04:00
rollup.config.js init 2018-08-05 20:19:01 -04:00
tsconfig.json init 2018-08-05 20:19:01 -04:00
tslint.json add tslint config 2018-12-04 09:18:12 -05:00

Shadow-DOM-inject-styles

A helper function to easily modify Shadow DOM CSS.

import {injectStyles} from 'shadow-dom-inject-styles';

const toolbar = (this.el.querySelector('ion-header > ion-toolbar') as HTMLElement);
    
// language=CSS
const styles = `
  .toolbar-background {
    background: red !important;;
  }
`;

injectStyles(toolbar, '.toolbar-background', styles);