@paperless/angular 3.0.2 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3193,8 +3193,8 @@ class TableCellComponent {
3193
3193
  get hostClass() {
3194
3194
  return cn(getTableCellColumnClasses(this.definition, this.variant, this.checkboxOffset), {
3195
3195
  'sticky left-4 z-[2]': !!this.definition?.sticky,
3196
- 'bg-gradient-to-r from-white to-transparent dark:from-hurricane-700 from-80%': this.definition?.sticky && this.definition?.sticky !== 'secondary',
3197
- 'bg-gradient-to-r from-off-white-300 to-transparent dark:from-hurricane-400 from-80%': this.definition?.sticky && this.definition?.sticky === 'secondary',
3196
+ 'bg-gradient-to-r from-white from-80% to-transparent dark:from-hurricane-700': this.definition?.sticky && this.definition?.sticky !== 'secondary',
3197
+ 'bg-gradient-to-r from-off-white-300 from-80% to-transparent dark:from-hurricane-400': this.definition?.sticky && this.definition?.sticky === 'secondary',
3198
3198
  'flex-shrink': !this.scrollable,
3199
3199
  'flex-shrink-0': this.scrollable,
3200
3200
  });