I have included a stylesheet on the page, and then tweak it with "styles" panel in Chrome. Is it possible (with an extension) to get notified about such in-place edits of styles in that stylesheet when working with dev-tools? I know how to do it for styles of individual elements, but I’m not editing the style, but the class rule in the stylesheet itself.
2
Answers
Yes!
Add a CSS class to an element
Use the Styles pane to see how an element looks when a CSS class is applied to or removed from an element.
Right-click the Add a class to me! element below and select Inspect.
Add a class to me!
Click .cls. DevTools reveals a text box where you can add classes to the selected element.
Type color_me in the Add new class text box and then press Enter. A checkbox appears below the Add new class text box, where you can toggle the class on and off. If the Add a class to me! element had any other classes applied to it, you’d also be able to toggle them from here.
Refer this:
https://developer.chrome.com/docs/devtools/css/
There is a tab in the Chrome dev tools called "Changes" that can show the updates you made.
How to enable Changes tab
Click on the element, In the Changes tab, you can see updates you’ve made
How to see changes in class in CSS file
For further please read:
How to get a summary of your CSS changes in Chrome dev tools?
https://developer.chrome.com/blog/new-in-devtools-65/#changes