editorDisabled static method

String editorDisabled({
  1. required ThemeData theme,
})

Build the CSS for the Summernote editor, when it's disabled.

Implementation

static String editorDisabled({required ThemeData theme}) => elementCss(
      selector: '.note-editing-area .note-editable[contenteditable=false]',
      properties: {
        'background-color': "${hexFromColor(color: theme.disabledColor)}61 !important",
      },
    );