Changes the title bar to use a custom color based on the environment (DEV/QA/PROD).
Be sure to updated the URL to match your environment.
Authorxairrick
LicenseNo License
Categorycrm.dynamics.com
Created
Updated
Size591 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Changes the title bar to use a custom color based on the environment (DEV/QA/PROD).
Be sure to updated the URL to match your environment.
/* ==UserStyle==
@name Dynamics 365 CE
@version 20230210.17.21
@namespace ?
==/UserStyle== */
@-moz-document domain("YOURENVIRONMENTURLHERE-dev.crm.dynamics.com") {
#topBar{
background: green;
}
}
@-moz-document domain("YOURENVIRONMENTURLHERE-devtest.crm.dynamics.com") {
#topBar{
background: lightgreen;
}
}
@-moz-document domain("YOURENVIRONMENTURLHERE-devint.crm.dynamics.com") {
#topBar{
background: #07afb5;
}
}
@-moz-document domain("YOURENVIRONMENTURLHERE-qa.crm.dynamics.com") {
#topBar{
background: orange;
}
}