diff --git a/README.md b/README.md index c371231..2ec0ffc 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,7 @@ Repeate for each styles you want to enables. * `PRD banner.css`: Change the Production banner and login's footer ![example of Prod banner](public/PRD_banner_ex.png) * `Whiter banner.css`: Look & feel, mainly changing text to pure white and the hover and active elements. A _must have_. Works with the others files. -* `Retailers Sigils.css`: Change the top-right user icon to a Shop one, and make it orange. It actually don't know if you are logged as a Retailer or not. - * ![example of orange shop icon](public/user-orange-shop.png) -* `Suppliers Sigils.css`: change the top-right user icon to a Factory one, and make it turquoise. It actually don't know if you are logged as a Manufacturer or not. - * ![example of orange shop icon](public/user-teal-factory.png) +* `Sigils.css`: Change the top-right user icon to a Shop or Factory depending on if you are logged as ar Retailer or a Supplier. + * ![example of orange shop icon](public/user-orange-shop.png) ![example of violet factory icon](public/user-violet-factory.png) * `Alkessian.less`: Change the black navbar of Jira & Confluence back to the default white one and add slight animations. ![example of Confluence navbar](public/alkessian-banner.png) diff --git a/Retailers Sigils.css b/Retailers Sigils.css deleted file mode 100644 index 346e994..0000000 --- a/Retailers Sigils.css +++ /dev/null @@ -1,9 +0,0 @@ -@-moz-document domain("app.supplierxm.salsify.com"), -domain("ppr-app.supplierxm.salsify.com"), -domain("ltg-stream.alkemics.com"), -domain("int.alkemics.com") { - #navbar-profile .dropdown-toggle .mdi-account::before { - content: "\F4DC"; - color: orange; - } -} \ No newline at end of file diff --git a/Sigils.css b/Sigils.css new file mode 100644 index 0000000..9765e42 --- /dev/null +++ b/Sigils.css @@ -0,0 +1,14 @@ +@-moz-document domain("salsify.com"), +domain("salsify.com"), +domain("alkemics.com"), +domain("alkemics.com") { + li.HelpCenter#academy-access ~ li#navbar-profile > a > i.mdi-account::before { + content: "\F20F"; + color: violet; + } + + li.HelpCenter:not(#academy-access) ~ li#navbar-profile > a > i.mdi-account::before { + content: "\F4DC"; + color: orange; + } +} \ No newline at end of file diff --git a/Suppliers Sigils.css b/Suppliers Sigils.css deleted file mode 100644 index 358db6a..0000000 --- a/Suppliers Sigils.css +++ /dev/null @@ -1,9 +0,0 @@ -@-moz-document domain("app.supplierxm.salsify.com"), -domain("ppr-app.supplierxm.salsify.com"), -domain("ltg-stream.alkemics.com"), -domain("int.alkemics.com") { - #navbar-profile .dropdown-toggle .mdi-account::before { - content: "\F20F"; - color: turquoise; - } -} \ No newline at end of file diff --git a/public/user-violet-factory.png b/public/user-violet-factory.png new file mode 100644 index 0000000..8194a23 Binary files /dev/null and b/public/user-violet-factory.png differ