<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Whitelabel Cheat Sheet in HPE Morpheus Enterprise</title>
    <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248055#M1229</link>
    <description>&lt;P&gt;Thats perfect, thanks , I used this for a while&lt;/P&gt;
&lt;P&gt;header li.item.cart .header-notification img {&lt;BR /&gt;
margin: 0;&lt;BR /&gt;
background-color: &lt;SPAN class="hashtag"&gt;#98a4a9&lt;/SPAN&gt;;&lt;BR /&gt;
}&lt;/P&gt;
&lt;P&gt;but the shadow is right on the money&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jan 2023 11:33:16 GMT</pubDate>
    <dc:creator>kevkerr1</dc:creator>
    <dc:date>2023-01-11T11:33:16Z</dc:date>
    <item>
      <title>Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248034#M1208</link>
      <description>&lt;P&gt;I wanted to gather any helpful CSS that folks have developed over time in a centralized post.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; This is a wiki post and others can contribute directly to it.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;UL&gt;
&lt;LI&gt;Add the code to code blocks&lt;/LI&gt;
&lt;LI&gt;Add code to most appropriate section (add as needed)&lt;/LI&gt;
&lt;LI&gt;Any information is helpful!&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;A name="buttons-1" class="anchor" href="#buttons-1"&gt;&lt;/A&gt;Buttons&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Close ‘X’ Icon Override&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;svg.close-icon{
   filter: invert(48%) sepia(79%) saturate(100%) hue-rotate(86deg) brightness(0%) contrast(100%);
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Hide Local Username &amp;amp; Password login block&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;#login-form h3.text-center {display:none!Important;}
#loginBtn button.btn-default {display:none!Important;}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="catalog-2" class="anchor" href="#catalog-2"&gt;&lt;/A&gt;Catalog&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Resize Catalog Wiki / Order Form&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.catalog-item-details .catalog-item-body .catalog-item-content {
	max-width: 40%;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Replace &lt;CODE style="background : #f0f1f2;"&gt;Complete&lt;/CODE&gt; with &lt;CODE style="background : #f0f1f2;"&gt;Submitted&lt;/CODE&gt; text&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;dl.order-details dd.complete {
	text-indent: -9999px;
  	line-height: 0; 
}

dl.order-details dd.complete::after {
	content: "Submitted"; 
	display: block;
	line-height: initial;
	text-indent:0px;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="color-3" class="anchor" href="#color-3"&gt;&lt;/A&gt;Color&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Change Color of Required Bar&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.required-bar { 
height: 24px;  
width: 2px;    
position: absolute;  
margin: 
4px;    
z-index: 3;   
background-color: #e31430;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="images-4" class="anchor" href="#images-4"&gt;&lt;/A&gt;Images&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Change Login Background Image&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.login-body {
  background-image: url('path/to/your/image.jpg');
  background-size: cover; /* Adjust this as needed */
  background-repeat: no-repeat; /* Optional: prevents image tiling */
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Resize Markdown Images via label
&lt;UL&gt;
&lt;LI&gt;Example Markdown&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;![rabbit](https://demo.morpheusdata.com/assets/branding/140x40/rabbitmq-d64573aaf029cb5797a02ff6d0fc58d1.svg)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Resize CSS&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;img[alt=rabbit] { width: 200px; }
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;A name="inputs-5" class="anchor" href="#inputs-5"&gt;&lt;/A&gt;Inputs&lt;/H2&gt;
&lt;P&gt;hides name field on instance provisioning modal&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;div.instance-step-name label[for=name] {
    display: none!important;
}
div.instance-step-name label[for=name] + div {
    display: none!important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Hides “Auto - Cluster” and “Auto - Datastore” Options from Provisioning&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;div.disk-datastore option[value="auto"] {
     display: none;
}
 
div.disk-datastore option[value="autoCluster"] {
     display: none;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="policies-6" class="anchor" href="#policies-6"&gt;&lt;/A&gt;Policies&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Change color identifier for enabled/disabled policies&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;div.policies-list tr div span.policy-option, div.policies-list tr div span.policy-description{
    color: #00c04b!important;
}

div.policies-list tr.inactive div span.policy-option, div.policies-list tr.inactive div span.policy-description{
    color: #ff7f7f!important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="round-borders-7" class="anchor" href="#round-borders-7"&gt;&lt;/A&gt;Round Borders&lt;/H2&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.dashboard .status section {
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.1);
}

button, .button {
    border-radius: 4px;
}

.tabs-alt li input[type=radio]:checked + label {
    color: #78c5e1;
    border: 1px solid #78c5e1;
    border-radius: 4px;
    height: 32px;
    padding: 0 18px;
    line-height: 32px;
    display: inline-block;
    margin-right: 1px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 300;
}

.form-control {
    border-radius: 4px;
}

input.form-control, select.form-control {
    border-radius: 4px;
}

textarea.form-control {
    border-radius: 4px;
}

.CodeMirror {
    border-radius: 4px;
}

.form-control {
    border-radius: 4px;
    /* -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="shadows-8" class="anchor" href="#shadows-8"&gt;&lt;/A&gt;Shadows&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Add Shadow to Shopping Cart Icon&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;header li.item.cart img {
 filter: drop-shadow(2px 4px 6px black);
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="tables-9" class="anchor" href="#tables-9"&gt;&lt;/A&gt;Tables&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Alternate Row Colors on Role Edit Tables&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.siteAccess-list tr:nth-child(even), .site-permissions-list tr:nth-child(even), .instance-types-permissions-list tr:nth-child(even), .app-templates-permissions-list tr:nth-child(even), .report-types-permissions-list tr:nth-child(even), .persona-permissions-list tr:nth-child(even), .catalog-item-type-permissions-list tr:nth-child(even), .vdi-pool-permissions-list tr:nth-child(even)
{
  background-color: #A2D9EF;
  color:white;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="tags-10" class="anchor" href="#tags-10"&gt;&lt;/A&gt;Tags&lt;/H2&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.tags:before {
    content: "TAGS";
}
  
.page-resource-header .tags {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
  
.page-resource-header .tags ul {
    column-count: 3;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}
  
.page-resource-header .tags ul li {
    padding: 6px 6px;
    margin: 0px 6px 0px 0px;
    background-color: inherit;
    color: inherit;
    border-radius: 4px;
    flex: 1 0 25%;
}
  
  
.page-resource-header .tags ul li span.key {
    font-weight: bolder;
}
  
  
.page-resource-header .tags ul li span.value {
    margin-left: 6px;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="text-11" class="anchor" href="#text-11"&gt;&lt;/A&gt;Text&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Globally change font&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;body {
    font-family: wingdings;
    font-weight: 300;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="urls-12" class="anchor" href="#urls-12"&gt;&lt;/A&gt;URLS&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Hide Policy and Terms of Service Links&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.disclaimer {
  display: none;
}

.policies {
  display: none;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;UL&gt;
&lt;LI&gt;Security Banner Link Colors&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.security-banner a:link {color:#008000};
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="user-avatars-13" class="anchor" href="#user-avatars-13"&gt;&lt;/A&gt;User Avatars&lt;/H2&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.user-avatar-container {
    width: 35px;
    height: 35px;
    border: 0px solid #4d4d4d;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H2&gt;&lt;A name="tags-and-labels-14" class="anchor" href="#tags-and-labels-14"&gt;&lt;/A&gt;TAGS and LABELS&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;With v6.0 enhancing the Label capability , it may be useful to separate Tags and Labels when looking at Instances details&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.page-resource-header .tags-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.tags:before {
    content: "TAGS";
}
.labels:before {
    content: "LABELS";
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 May 2022 17:40:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248034#M1208</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2022-05-17T17:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248035#M1209</link>
      <description>&lt;P&gt;You could do something like this to override globally:&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;body {
    font-family: wingdings;
    font-weight: 300;
}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Dec 2022 13:27:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248035#M1209</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2022-12-02T13:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248036#M1210</link>
      <description>&lt;P&gt;Where the user needs input validation, and it is necessary to use a custom input in place of a standard ui input, then it is often desirable to hide the standard ui control.&lt;/P&gt;
&lt;P&gt;This example CSS hides the standard instance &lt;CODE style="background : #f0f1f2;"&gt;name&lt;/CODE&gt; control in the provisioning modal UI, to avoid confusion between this and the custom control.&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;// hides name field on instance provisioning modal
div.instance-step-name label[for=name] {
    display: none!important;
}
div.instance-step-name label[for=name] + div {
    display: none!important;
}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 26 Jun 2023 09:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248036#M1210</guid>
      <dc:creator>Ollie-Phillips</dc:creator>
      <dc:date>2023-06-26T09:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248037#M1211</link>
      <description />
      <pubDate>Tue, 17 May 2022 18:32:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248037#M1211</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2022-05-17T18:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248038#M1212</link>
      <description>&lt;P&gt;Yes, target the &lt;CODE style="background : #f0f1f2;"&gt;disclaimer&lt;/CODE&gt; class&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.disclaimer{
    color: #hexCodeOfChoice; 
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Nov 2024 15:56:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248038#M1212</guid>
      <dc:creator>Ollie-Phillips</dc:creator>
      <dc:date>2024-11-22T15:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248039#M1213</link>
      <description>&lt;P&gt;Hey,&lt;BR /&gt;
I would like to add a link to a document with helpful information on the login page. Would this be possible via the CSS? Unfortunately, I can only insert text in my own tests, but not a clickable link.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 13:34:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248039#M1213</guid>
      <dc:creator />
      <dc:date>2024-07-26T13:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248040#M1214</link>
      <description>&lt;P&gt;Sorry , I’ve just seen it in your original post. Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:21:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248040#M1214</guid>
      <dc:creator>kevkerr1</dc:creator>
      <dc:date>2022-12-02T14:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248041#M1215</link>
      <description>&lt;P&gt;You may be able to add a shadow to the cart with:&lt;BR /&gt;
header li.item.cart img {&lt;BR /&gt;
filter: drop-shadow(2px 4px 6px black);&lt;BR /&gt;
}&lt;/P&gt;
&lt;P&gt;I’ll have to poke around to find a different override.&lt;/P&gt;
&lt;P&gt;Thanks &lt;A class="mention" href="https://community.hpe.com/u/jwheeler"&gt;@jwheeler&lt;/A&gt;  on the shadow script&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2023 17:50:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248041#M1215</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2023-01-10T17:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248042#M1216</link>
      <description>&lt;P&gt;Following CSS hides the &lt;CODE style="background : #f0f1f2;"&gt;Auto - Cluster&lt;/CODE&gt; and &lt;CODE style="background : #f0f1f2;"&gt;Auto - Datastore&lt;/CODE&gt; options from the &lt;CODE style="background : #f0f1f2;"&gt;Storage&lt;/CODE&gt; selection dropdown on Instance creation form.  Also, for this to work effectively, a datastore/cluster needs to be marked as default.&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE style="background : #f0f1f2;"&gt;// hides "Auto - Cluster" and "Auto - Datastore" options from the storage selection dropdown on instance creation form
 
div.disk-datastore option[value="auto"] {
     display: none;
}
 
div.disk-datastore option[value="autoCluster"] {
     display: none;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:27:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248042#M1216</guid>
      <dc:creator>dgaharwar</dc:creator>
      <dc:date>2023-08-08T10:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248043#M1217</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hpe.com/u/ollie_phillips"&gt;@Ollie_Phillips&lt;/A&gt; : Is it possible to change the font color at login page ? I have highlighted in the screenshot.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/149732i52C3623A91B609C1/image-size/large?v=v2&amp;amp;px=2000" role="button" title="9208465723f740e8e1217ac9c608b794b2c91a92.png" alt="9208465723f740e8e1217ac9c608b794b2c91a92.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 03:28:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248043#M1217</guid>
      <dc:creator>RJ12</dc:creator>
      <dc:date>2024-11-22T03:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248044#M1218</link>
      <description>&lt;P&gt;Hide ‘&lt;STRONG&gt;Primary Cloud&lt;/STRONG&gt;’ from the &lt;STRONG&gt;INFO&lt;/STRONG&gt; section on a virtual image:&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.resource-detail .info-columns &amp;gt; .info-columns-item:nth-child(8) {
	display: none;        // or 'visibility: hidden;' also works here
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screenshot 2024-01-19 at 12.31.49"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/150512i6ED6691226592E6E/image-size/large?v=v2&amp;amp;px=2000" role="button" title="8a66d95d189a8c74274eb6ea3675c657275eb601.png" alt="8a66d95d189a8c74274eb6ea3675c657275eb601.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screenshot 2024-01-19 at 12.32.43"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/150622iD4B7775B02074C44/image-size/large?v=v2&amp;amp;px=2000" role="button" title="e1651989452732552992c86ea11ced0b635b5f32.png" alt="e1651989452732552992c86ea11ced0b635b5f32.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 12:34:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248044#M1218</guid>
      <dc:creator />
      <dc:date>2024-01-19T12:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248045#M1219</link>
      <description>&lt;P&gt;Oh I only added it in there after I posted a reply &lt;IMG src="https://emoji.discourse-cdn.com/twitter/slight_smile.png?v=12" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 14:24:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248045#M1219</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2022-12-02T14:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248046#M1220</link>
      <description>&lt;P&gt;Self Service Catalog - Order History&lt;/P&gt;
&lt;P&gt;Change the word “Complete” to “Submitted”&lt;/P&gt;
&lt;P&gt;May assist in managing user expectations. Complete effectively means the order has been processed not that the VM is provisioned and ready to use. It may even fail to provision and still show “Complete” here.&lt;/P&gt;
&lt;P&gt;This CSS alters the semantics ever so slightly&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;/* 
	Catalog Order History 
	replace "Complete" with "Submitted"
*/

dl.order-details dd.complete {
	text-indent: -9999px;
  	line-height: 0; 
}

dl.order-details dd.complete::after {
	content: "Submitted"; 
	display: block;
	line-height: initial;
	text-indent:0px;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 May 2024 08:26:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248046#M1220</guid>
      <dc:creator>Ollie-Phillips</dc:creator>
      <dc:date>2024-05-09T08:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248047#M1221</link>
      <description />
      <pubDate>Tue, 17 May 2022 18:32:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248047#M1221</guid>
      <dc:creator>cbunge</dc:creator>
      <dc:date>2022-05-17T18:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248048#M1222</link>
      <description>&lt;P&gt;Is it possible to remove certain icons or text from the instance view using CSS override?&lt;/P&gt;
&lt;P&gt;I would like to remove the “Type” from the instance as the backup ICON&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/150289iECBFB05EFC7BE87E/image-size/large?v=v2&amp;amp;px=2000" role="button" title="e0915d28d20bdb9d93d2fb39f81b21e5d95342db.png" alt="e0915d28d20bdb9d93d2fb39f81b21e5d95342db.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/149713iE66627311180E79A/image-size/large?v=v2&amp;amp;px=2000" role="button" title="c68a7d2bdabfbb96644c269d3a6fe677d7714246.png" alt="c68a7d2bdabfbb96644c269d3a6fe677d7714246.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 15:03:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248048#M1222</guid>
      <dc:creator>kevkerr1</dc:creator>
      <dc:date>2023-03-17T15:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248049#M1223</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Policies.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;It turns out there &lt;EM&gt;is&lt;/EM&gt; already color differentiation between enabled and disabled polices, but it’s not very obvious.&lt;/P&gt;
&lt;P&gt;This CSS will make it stark: showing enabled policies as green, and disabled polices as an exceptionally pleasant pastel red. The hex codes can be amended of course to suit your needs.&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;/* 
   Policies 
   Provides more obvious color differentiation
   Green - enabled, Red - disabled
*/

div.policies-list tr div span.policy-option, div.policies-list tr div span.policy-description{
    color: #00c04b!important;
}

div.policies-list tr.inactive div span.policy-option, div.policies-list tr.inactive div span.policy-description{
    color: #ff7f7f!important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/150110iE4FA22CA4E804745/image-size/large?v=v2&amp;amp;px=2000" role="button" title="ecb4445d3745ea180345373e0b5ea11c9046e5d5.png" alt="ecb4445d3745ea180345373e0b5ea11c9046e5d5.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 13:05:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248049#M1223</guid>
      <dc:creator>Ollie-Phillips</dc:creator>
      <dc:date>2024-05-01T13:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248050#M1224</link>
      <description>&lt;P&gt;&lt;A class="mention" href="https://community.hpe.com/u/cbunge"&gt;@cbunge&lt;/A&gt; &lt;A class="mention" href="https://community.hpe.com/u/ollie_phillips"&gt;@Ollie_Phillips&lt;/A&gt;&lt;BR /&gt;
Is there any way to change the color of cart icon which is white by default because the header is white. Instead of dropping a shadow, can we use a different icon itself.&lt;/P&gt;
&lt;P&gt;Also on the cart item count, there is default color which show the cart count however if we want to change the color of item count.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.hpe.com/t5/image/serverpage/image-id/149410i72CFA40EE386948E/image-size/large?v=v2&amp;amp;px=2000" role="button" title="e3f0723dc197a1ebe798829f582b736be0596156.png" alt="e3f0723dc197a1ebe798829f582b736be0596156.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 11:11:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248050#M1224</guid>
      <dc:creator>RJ12</dc:creator>
      <dc:date>2024-06-19T11:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248051#M1225</link>
      <description>&lt;P&gt;Hi &lt;A class="mention" href="https://community.hpe.com/u/ranujain"&gt;@ranujain&lt;/A&gt; I’ve used this before. It doesn’t so much let you change color, but inverts the contrast so is useful when cart is set against very light header background.&lt;/P&gt;
&lt;PRE style="background : #f0f1f2;"&gt;&lt;CODE class="lang-auto"&gt;.cart-img{
    filter: invert(50%)!Important;
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Don’t know re icon change or cart count.  Have never investigated.  Probably possible,  so please consider opening a technical request and we can look at what is required.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 17:11:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248051#M1225</guid>
      <dc:creator>Ollie-Phillips</dc:creator>
      <dc:date>2024-06-19T17:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248052#M1226</link>
      <description>&lt;P&gt;when setting the header to white it seems to loose the shopping cart icon when an item is added. When empty it seems ok. Any idea how to change the colour of the shopping cart when full?&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 11:55:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248052#M1226</guid>
      <dc:creator>kevkerr1</dc:creator>
      <dc:date>2023-01-05T11:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Whitelabel Cheat Sheet</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248053#M1227</link>
      <description>&lt;P&gt;Whats the best way to change the font , either globally or in each section?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2022 09:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-enterprise/whitelabel-cheat-sheet/m-p/7248053#M1227</guid>
      <dc:creator>kevkerr1</dc:creator>
      <dc:date>2022-12-02T09:58:20Z</dc:date>
    </item>
  </channel>
</rss>

