Last active
June 22, 2017 06:27
-
-
Save squizzi/29188e6902a774abb000c744ee91e1ed to your computer and use it in GitHub Desktop.
halp can't see sfdc 'cause the fonts just are so small
This file contains 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
/* Monospace fonts across case comments and case fields */ | |
.caseTab .tertiaryPalette, | |
.individualPalette .caseBlock .tertiaryPalette, | |
.layoutEdit .individualPalette .caseBlock .tertiaryPalette { | |
background-color: #36a0fe; | |
border-color: #015ba7; | |
} | |
.caseTab .primaryPalette, | |
.individualPalette .caseBlock .primaryPalette { | |
background-color: #1797c0; | |
border-color: #1797c0; | |
} | |
.caseTab .brdPalette { | |
border-top-color: #1797c0; | |
} | |
.caseTab .listViewport .subNav .linkBar, | |
.caseTab .mComponent .cHeader, | |
.caseTab .genericTable, | |
.caseTab .bSubBlock, | |
.caseTab .bPageBlock { | |
border-top: 3px solid #015ba7; | |
} | |
body, | |
td { | |
font-family: monospace; | |
font-size: small; | |
color: #222; | |
} | |
textarea { | |
font-family: monospace; | |
font-size: 100%; | |
} | |
/* Smaller text inside of cases view */ | |
.listViewport .x-grid3-hd-row td, | |
.listViewport .x-grid3-row td, | |
.listViewport .x-grid3-summary-row td { | |
font-family: 'Arial', 'Helvetica', sans-serif; | |
font-size: 90%; | |
line-height: normal; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment