HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/manage/public_html/wwwroot/styles/scss/plugins/_quill.scss
// Quill Adjustments

// Container
// Note: Using html for specificity here
html {
  .ql-container,
  .ql-toolbar {
    &.ql-snow {
      border-color: $border-color;
    }
  }

  .ql-container {
    border-bottom-left-radius: $btn-border-radius;
    border-bottom-right-radius: $btn-border-radius;
  }

 .ql-editor strong,
 .ql-editor b {
    font-weight: 600;
  }

  .ql-toolbar {
    border-top-left-radius: $btn-border-radius;
    border-top-right-radius: $btn-border-radius;
    color: $headings-color !important;

    .ql-fill,
    .ql-stroke.ql-fill {
      fill: $reagent-gray;
    }

    .ql-stroke {
      stroke: $reagent-gray;
    }

    button:hover,
    button:active,
    button:focus {
      .ql-fill,
      .ql-stroke.ql-fill {
        fill: $accent-color !important;
      }

      .ql-stroke {
        stroke: $accent-color !important;
      }
    }

    .ql-picker {
      .ql-picker-item:hover {
        color: $accent-color !important;
      }

      .ql-picker-options {
        padding: 6px 20px;
        border: 0 !important;
        box-shadow: $card-box-shadow;
        border-radius: $border-radius;
      }
    }
  }
}