Question is how to change how Ubuntu (or other distro) reads CSS (e.g. in Firefox/Chrome) to make it still work but to disable certain features like box-shadow, borders, turn off hovering. Stylish allows to hide them after they are loaded but I would want to disable them completely. I know it is not so important but still a nice way to personalize or optimize, if it isn't something that is very hard..
Asked
Active
Viewed 62 times
1 Answers
3
The operating system does not decide how to render css, this is done by the browsers.
The only option you have is to use a user css extension, and define a rule like this:
* { box-shadow: none !important; border: none !important; }
This will make them not render.

Nick Weinberg
- 4,596

Gustav
- 459
- 2
- 13
text-shadow: none !important;
– DK Bose Jun 20 '16 at 13:10