“Why did you switch to the Kinetic interface, I thought you were a Classic man through and through?”
------ “I’m just here for the memes.”
“Why did you switch to the Kinetic interface, I thought you were a Classic man through and through?”
------ “I’m just here for the memes.”
So… we should change the tiny blue bar at the top to a random (funny) meme that represents waiting? hmmm.
At Epicor we use the Nevan app for Expense Reporting. It amazingly allows you to take a photo of your receipt, and it figures everything out and posts it as an expense… BUT just after you shoot the photo, while it is scanning the document, it posts a series of silly Dad Jokes while you are waiting during the 15-30 seconds it takes to upload.
Like the hair club for men, not only is @Mark_Wonsil an investor, he’s also a client.
I’m sure if it was every time some Grinch would complain, but I personally appreciate a few easter eggs in my software.
Make a user account setting so the person who complains can have theirs turned to something specific for complainers. ![]()

I tried the Stylus extension that is supposedly neutered so it doesn’t harvest your data. With a simple CSS injection, I made real big scroll bars!
The only problem is that you still have to trust that extension and you don’t get granular control over what it gets access to. Yes Stylus was created to avoid the issues with a similar stylish plugin, that was known to harvest data. I would like the ability to inject this kind of simple CSS fix without using an extension. Is it possible?
/* Wider scrollbars for Epicor Kinetic */
::-webkit-scrollbar {
width: 25px;
height: 16px;
}
::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 8px;
}
::-webkit-scrollbar-track {
background-color: #f1f1f1;
}
EDIT: While this works for some scrollbars, this does not affect all of them. It looks like Epicor used different types of scrollbars in various screens. In the main jobs or Parts or BAQ list the default grid that loads has a scrollbar that is not affected by this CSS. However, this does widen the bars for most other locations.
I am using the Stylus without network extension, but I think it needs to be vetted before I can use it in Live: Stylus-without-network - Microsoft Edge Addons
This should catch all those weird kendo scrollbars:
/* --- Epicor Kinetic + Kendo: Wide Scrollbars --- */
/* Target all common scrollable Kendo containers */
.k-grid-content::-webkit-scrollbar,
.k-content::-webkit-scrollbar,
.k-pane::-webkit-scrollbar,
.k-splitbar::-webkit-scrollbar,
.k-tabstrip-content::-webkit-scrollbar,
.k-panelbar-content::-webkit-scrollbar,
.k-list-container::-webkit-scrollbar,
.k-treeview-lines::-webkit-scrollbar,
.k-animation-container::-webkit-scrollbar {
width: 25px !important; /* vertical */
height: 25px !important; /* horizontal */
}
/* Thumbs */
.k-grid-content::-webkit-scrollbar-thumb,
.k-content::-webkit-scrollbar-thumb,
.k-pane::-webkit-scrollbar-thumb,
.k-splitbar::-webkit-scrollbar-thumb,
.k-tabstrip-content::-webkit-scrollbar-thumb,
.k-panelbar-content::-webkit-scrollbar-thumb,
.k-list-container::-webkit-scrollbar-thumb,
.k-treeview-lines::-webkit-scrollbar-thumb,
.k-animation-container::-webkit-scrollbar-thumb {
background-color: #888 !important;
border-radius: 8px !important;
}
/* Tracks */
.k-grid-content::-webkit-scrollbar-track,
.k-content::-webkit-scrollbar-track,
.k-pane::-webkit-scrollbar-track,
.k-splitbar::-webkit-scrollbar-track,
.k-tabstrip-content::-webkit-scrollbar-track,
.k-panelbar-content::-webkit-scrollbar-track,
.k-list-container::-webkit-scrollbar-track,
.k-treeview-lines::-webkit-scrollbar-track,
.k-animation-container::-webkit-scrollbar-track {
background-color: #f1f1f1 !important;
}
So I installed the extension into Edge from the microsoft extensions. Upon reviewing some of the code I found some calls that look like they still go out. So I went to the github version that didnt have this code in it. So I tried to figure out how to implement the github version. I got it working and I don’t see any red flags for data exfil, so I am going to try it out.