Skip to content
Snippets Groups Projects
agGridOverrides.scss 635 B
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
    @import '../../styles/config/colors';
    // Overrides Ag-grid styles
    .ag-root-wrapper {
      border: none !important;
      background: transparent !important;
    }
    .ag-header {
      background: transparent !important;
    }
    .ag-header-cell-text {
      color: $gold;
    }
    .ag-row-odd,
    .ag-row-even {
      background: transparent !important;
      transition: all 300ms ease !important;
    }
    .ag-cell-focus {
      outline: none !important;
      border: none !important;
    }
    .ag-theme-alpine-dark [class^='ag-']:focus,
    .ag-theme-alpine-dark [class^='ag-']:focus-within {
      box-shadow: none !important;
    }
    
    .ag-checkbox-input-wrapper.ag-checked::after {
      color: $gold !important;
    }