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

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

The newest version!
import { css } from 'lit';
import defaultStyles from '../includes/default.styles.js';
const styles = [
    defaultStyles,
    css `
    :host {
      border-bottom-color: var(--vscode-editorGroup-border);
      border-bottom-style: solid;
      border-bottom-width: var(--vsc-row-border-bottom-width);
      box-sizing: border-box;
      color: var(--vscode-foreground);
      display: table-cell;
      font-family: var(--vscode-font-family);
      font-size: var(--vscode-font-size);
      height: 24px;
      overflow: hidden;
      padding-left: 10px;
      text-overflow: ellipsis;
      vertical-align: middle;
      white-space: nowrap;
    }

    :host([compact]) {
      display: block;
      height: auto;
      padding-bottom: 5px;
      width: 100% !important;
    }

    :host([compact]:first-child) {
      padding-top: 10px;
    }

    :host([compact]:last-child) {
      padding-bottom: 10px;
    }

    .wrapper {
      overflow: inherit;
      text-overflow: inherit;
      white-space: inherit;
      width: 100%;
    }

    .column-label {
      font-weight: bold;
    }
  `,
];
export default styles;
//# sourceMappingURL=vscode-table-cell.styles.js.map




© 2015 - 2025 Weber Informatics LLC | Privacy Policy