Last active
May 8, 2018 19:55
-
-
Save MervinHernandez/2e4ca6028d2325ffc2bf856878ff7ae3 to your computer and use it in GitHub Desktop.
Stylebot Chrome Extension - CATS
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
/* | |
// --------------------- | |
GLOBAL CATS Edits | |
// --------------------- | |
*/ | |
/* Header FIXED */ | |
#header {position: fixed;} | |
/* Hide CATS Commons Link */ | |
#nav-commons {display:none;} | |
/* Hide STATUSES */ | |
#activity-modal-statuses label.full:nth-child(1), | |
#activity-modal-statuses label.full:nth-child(4), | |
#activity-modal-statuses label.full:nth-child(6) | |
{display:none;} | |
#activity-modal-statuses label.full:nth-child(12), | |
#activity-modal-statuses label.full:nth-child(13), | |
#activity-modal-statuses label.full:nth-child(14), | |
#activity-modal-statuses label.full:nth-child(15), | |
#activity-modal-statuses label.full:nth-child(16) | |
{display:none;} | |
#activity-modal-statuses label.full:nth-child(17), | |
#activity-modal-statuses label.full:nth-child(19), | |
#activity-modal-statuses label.full:nth-child(20), | |
#activity-modal-statuses label.full:nth-child(21), | |
#activity-modal-statuses label.full:nth-child(22) | |
{display:none;} | |
#activity-modal-statuses label.full:nth-child(23), | |
#activity-modal-statuses label.full:nth-child(37), | |
#activity-modal-statuses label.full:nth-child(41), | |
#activity-modal-statuses label.full:nth-child(42), | |
#activity-modal-statuses label.full:nth-child(43) | |
{display:none;} | |
#activity-modal-statuses label.full:nth-child(44) | |
{display:none;} | |
/* | |
// --------------------- | |
JOB ORDERS | |
// --------------------- | |
*/ | |
/* Job ID = Bigger */ | |
li#field_companyJobID > .field-text { | |
font-size: 200%; | |
background: #ffff00; | |
} | |
li#field_title > .field-text { | |
background: #ffff00; | |
font-size: 175%; | |
color: black; | |
width: 75%; | |
} | |
li#field_activity > .field-text { | |
font-size:175%; | |
} | |
/* Shrink Description */ | |
#field_description > div.field-text > iframe { | |
height: 250px; | |
} | |
/* Action Button Colored */ | |
#content > div.form-page > div.top-panel > div > div > div > a.btn.workflow-status-button, | |
#content > div.form-page > div.top-panel > div > div > div > a.btn.log-an-activity { | |
color: white; | |
background: #4887c7; | |
border-color: #346ea8; | |
} | |
/* Hide */ | |
li#field_isHot, | |
li#field_daysOld, | |
li#field_dateModified, | |
li#field_dateCreated, | |
li#field_openingsAvailable, | |
li#field_openings, | |
li#field_startDate, | |
li#field_lists, | |
li#field_tags, | |
li#field_sourcer, | |
li#field_extraField100008, | |
li#field_publish, | |
li#field_postingCategory {display:none;} | |
a.datagrid-clear-all-filters { | |
background-color: #ff000099; | |
color: white; | |
} | |
/* | |
// --------------------- | |
CANDIDATE RECORD | |
// --------------------- | |
*/ | |
/* Candidate Name Bigger */ | |
#field_fullName > div.field-text { | |
font-size: 175%; | |
background: #ffff00; | |
} | |
/* Address Line Bigger */ | |
.address-line { | |
font-size: 175%; | |
line-height:1.5em; | |
} | |
/* Salary */ | |
#field_salary { | |
display:none} | |
#field_extraField222152 > div.field-text { | |
font-size: 175%; | |
} | |
#field_extraField222152 > div.field-text { | |
font-size: 175%; | |
line-height:1.25em; | |
} | |
/* Make Phone Numbers Bigger */ | |
#field_phoneNumbers > .field-text p { | |
font-size: 200%; | |
} | |
#field_phoneNumbers > .fa-mobile { | |
max-width:24px; | |
} | |
/* Candidate - hide source row */ | |
#field_sourceID { | |
display: none; | |
} | |
/* Candidate Hide Key Skills */ | |
#field_keySkills { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment