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
[data-view="newMatterForm"] .intake-form-template-2 .matter-type-icon, | |
[data-view="newMatterForm"] .intake-form-template-3 .matter-type-icon { | |
width: 100px !important; | |
height: 100px !important; | |
} | |
.matter-type-icon .circle-matter-type { | |
width: 100%; | |
height: 100% |
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
window.onload = function() { | |
console.log('window.onload event fired'); | |
// Find the button by data-pp-command attribute | |
var button = document.querySelector('[data-pp-command="instructForm"]'); | |
// Check if the button is found | |
if (button) { | |
// Modify the button label | |
button.innerText = 'Instruct'; // Replace 'New Button Label' with your desired label |
OlderNewer