/*
// filename:  admin-manager-style.css
//
// Copyright 2022 Tehama Inc. and its affiliates or licensors
//
// description:  This stylesheet provides styling for elements in the admin-manager page-header:
//
//               Essentially, this fixes accessibility errors found in the admin-manager header (seen when logged in as
//               an admin or manager user.)
//
//               Include the stylesheet in the header.hbs template as follows:
//
//                   <link href="{{asset 'admin-manager-style.css'}}" rel="stylesheet" type="text/css" />
//
*/

/* Insert a rule to override the colour of the "Add" dropdown menu.                                          */
/* This overrides the style added through <style> (not found in any particular stylesheet) for this element. */
/*    The html for this is:                                                                                  */
/*          <zd-hc-dropdown class="zd-hc-3k1piY9KKXOLambmHTPOI9 " ...>                                       */
/*            <zd-hc-trigger class="zd-hc-2NW4hG6qC_UIG3S3_0JjE-" role="button" ...>                         */
/*              Add                                                                                          */
/*              <svg ...>                                                                                    */
/*                <path ...></path>                                                                          */
/*              </svg>                                                                                       */
/*            </zd-hc-trigger>                                                                               */
/*          </zd-hc-dropdown>                                                                                */
/*                                                                                                           */
/* The existing styling sets the colour with important, so need to do the same here.                         */
/*                                                                                                           */
/* I cannot figure out how to increase specificity so hope this gets read in last.                           */
/*                                                                                                           */
.zd-hc-3k1piY9KKXOLambmHTPOI9 .zd-hc-2NW4hG6qC_UIG3S3_0JjE- {
    color: #515961 !important;
}

/* Insert a rule to override the colour of the "Guide Admin" link.                                           */
/* This overrides the style added through <style> (not found in any particular stylesheet) for this element. */
/*    The html for this is:                                                                                  */
/*          <a href="https://tehama.zendesk.com/knowledge/lists/default/1?brand_id=360002994112"             */
/*             target="_parent"                                                                              */
/*             class="zd-hc-button  zd-hc-KnRicIBW-QUJTFybsshuI zd-hc-1IGRkA6JsoZ4mT85ZUvdsX"                */
/*             ...>                                                                                          */
/*            Guide admin                                                                                    */
/*          </a>                                                                                             */
/*                                                                                                           */
#navbar-container a {
    color: #515961;
}
