mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 05:03:33 +00:00
* Fix CORS issue on in-line theming javascript * Fix date picker icon color * Add comment * Fix table theming in dark mode * Selfhosted navbar fix * Rename selector to avoid clashing with bootstrap * Do not set initial theme if default * Fix .text-danger style in dropdown lists * Fix toast style, restructure toast and card scss * Fix table and dropdown list hover color * Use callout component for Disable Send warning * Remove unneeded theming for hovering over links * Undo changes to register enterprise2 layout * Apply theming to Safari input field icons e.g. Caps lock, password autofill * Selectively apply themed logo CSS * Fix unrelated linting * Fix webpack config to bundle theme.js Co-authored-by: Danny Murphy <6512845+dltmurphy@users.noreply.github.com>
25 lines
794 B
TypeScript
25 lines
794 B
TypeScript
import {
|
|
Component,
|
|
Input,
|
|
} from '@angular/core';
|
|
|
|
import {
|
|
AddEditCustomFieldsComponent as BaseAddEditCustomFieldsComponent
|
|
} from 'jslib-angular/components/add-edit-custom-fields.component';
|
|
|
|
import { EventService } from 'jslib-common/abstractions/event.service';
|
|
import { I18nService } from 'jslib-common/abstractions/i18n.service';
|
|
|
|
@Component({
|
|
selector: 'app-vault-add-edit-custom-fields',
|
|
templateUrl: 'add-edit-custom-fields.component.html',
|
|
})
|
|
export class AddEditCustomFieldsComponent extends BaseAddEditCustomFieldsComponent {
|
|
@Input() viewOnly: boolean;
|
|
@Input() copy: (value: string, typeI18nKey: string, aType: string) => void;
|
|
|
|
constructor(i18nService: I18nService, eventService: EventService) {
|
|
super(i18nService, eventService);
|
|
}
|
|
}
|