Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Chrome Update - Issue with copying code from Inspector CSS

I have no idea why this has started happening but it is very annoying...

Basically, now when I copy CSS from Google Chrome Inspector, it formats it as follows:

border-radius: 50%;     width: 26 px ;     height: 26 px ;     color: transparent;     margin: 0 auto;     padding: 0;     position: relative; 

Instead of how it's always worked like so:

border-radius: 50%; width: 26px; height: 26px; color: transparent; margin: 0 auto; padding: 0; position: relative;  

Any idea on why this is happening and how I can fix it?

EDIT: I think it's to do with the latest Chrome update...

It seems it now has an option to set which metric you want to use, i.e. PX, EM etc...

Can this be disabled somehow?

enter image description here

like image 507
nsilva Avatar asked Oct 27 '21 08:10

nsilva


People also ask

How do I save CSS changes of styles panel of Chrome developer tools?

To save your changes, press CTRL + S when editing the file.

How do I update Chrome CSS?

Press Ctrl + Shift + i for Windows/Linux (or command + option + i for Mac). Right-click on an element on your website page and select Inspect. Now that you are familiar with accessing Google Chrome Developer Tools, you will be able to inspect CSS elements to modify them live.

Why is my CSS crossed out in Inspector?

If you can see your new CSS in the Styles pane, but your new CSS is crossed out, it means that there's some other CSS that is overriding your new CSS. In CSS terminology this concept is called Specificity. Chrome DevTools can help you find the old CSS that is causing your new CSS to not be applied.


2 Answers

It used to copy normally, now it takes those silly breaks.

I found this - https://support.google.com/chrome/a/answer/7125792

If you select CSS and Copy (Ctrl+C) it's broken, but if you use right-click > copy it's clean format.

//Hey, I have a solution. The Chromium developers have fixed it in the latest update .96 (it is not known when it will be stable) - until then, you just need to download Google Chrome Canary - it is fixed there. For now the stable version (with faulty CSS copying) is .95, please wait for the .96 update.

like image 56
Damian Szymański Avatar answered Nov 10 '22 06:11

Damian Szymański


By reading the comments on the following bug report, I guess they're going to rollback this feature and go back to plaintext CSS editing.

https://bugs.chromium.org/p/chromium/issues/detail?id=1259088

Many people are complaining so we may have a setting in the future to enable/disable that.

like image 31
Sebastien Avatar answered Nov 10 '22 05:11

Sebastien