Last active
November 6, 2015 15:10
-
-
Save f1code/e2e64f7d1ce8f3b168d9 to your computer and use it in GitHub Desktop.
Customize color scheme for InforCRM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Custom style scheme for InforCRM */ | |
| /* Using #EB6800 as primary color */ | |
| /* Using #E37221 as link color */ | |
| .dijitTab, | |
| .dijitTab .dijitTabInnerDiv, | |
| .dijitTabListWrapper, | |
| #MainHeader, | |
| #titlePane, | |
| .tws .tws-main-tab-buttons, | |
| .tws-tab-button, | |
| .dijitTabController, | |
| #GroupLookupButton > .dijitButtonNode, | |
| .dijitTabPaneWrapper, | |
| .dijitDialogTitleBar | |
| { | |
| background-color: #EB6800 !important; | |
| } | |
| .dijitTab .dijitTabContent, | |
| #MainHeader, | |
| .dijitTab, | |
| .tws-tab-button, | |
| .tws .tws-main-tab-buttons li.tws-active-tab-button .tws-tab-button-middle, | |
| .tws .tws-main-tab-buttons li.tws-active-tab-button .tws-tab-button-middle:hover, | |
| .dijitTabListWrapper, | |
| .alarm-tab-selected | |
| { | |
| border-color: #EB6800 !important; | |
| } | |
| a, | |
| .comboAsHyperlink input, | |
| .lookup .hyperLinked input, | |
| .alarm-tab-selected { | |
| color: #E37221 !important; | |
| } | |
| li.tws-tab-button > a span | |
| { | |
| color: white !important; | |
| } | |
| a:hover { | |
| text-decoration: underline !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Custom branding for Mobile */ | |
| /* Primary color: #EB6800 */ | |
| /* Link color: #E37221 */ | |
| /* toolbar bg */ | |
| .toolbar, | |
| .viewContainer > .toolbar, | |
| body > .viewContainer > .toolbar, | |
| .viewContainer > .footer-toolbar { | |
| background-color: #EB6800; | |
| } | |
| /* toolbar button */ | |
| .viewContainer > .toolbar > .button, | |
| .toolbar > .button { | |
| background-color: #EB6800; | |
| } | |
| /* theme overrides */ | |
| div.table-layout , | |
| .related-item-count { | |
| background-color: #EB6800; | |
| } | |
| .related-item-label, | |
| .action-list > li > a > label, | |
| a, | |
| .href { | |
| color: #E37221; | |
| } | |
| .toggleStateOn { | |
| background-color: #EB6800; | |
| border-color: #EB6800; | |
| } | |
| /* login button */ | |
| #login.login-active > .button { | |
| background-color: #EB6800; | |
| } | |
| /* misc saleslogix UI stuff */ | |
| .metric-widget > button , | |
| .metric-list, | |
| .groups-notice, | |
| .card-layout .list-content > li.actions-row | |
| .card-layout .actions-row > button, | |
| .card-layout-search-expression, | |
| .chart-hash | |
| { | |
| background-color: #EB6800; | |
| } | |
| /* Calendar (from Saleslogix theme) */ | |
| .activities-for-day > .split-buttons > .button[data-tool="day"], | |
| .activities-for-month > .split-buttons > .button[data-tool="month"], | |
| .activities-for-year > .split-buttons > .button[data-tool="year"], | |
| .activities-for-week > .split-buttons > .button[data-tool="week"] , | |
| #calendar_weeklist > div > h2.currentDate { | |
| background-color: #EB6800; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment