All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.vscode-table-body.vscode-table-body.styles.js Maven / Gradle / Ivy

The newest version!
import { css } from 'lit';
import defaultStyles from '../includes/default.styles.js';
const styles = [
    defaultStyles,
    css `
    :host {
      display: table;
      table-layout: fixed;
      width: 100%;
    }


      ::slotted(vscode-table-row:nth-child(even)) {
      background-color: var(--vsc-row-even-background);
    }

    ::slotted(vscode-table-row:nth-child(odd)) {
      background-color: var(--vsc-row-odd-background);
    }
  `,
];
export default styles;
//# sourceMappingURL=vscode-table-body.styles.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy