I want to modify the appearance of the nickel web browser, and in order to do that I have extracted the CSS of the libnickel.so.1.0.0 file with
pipcat's extract-css-libs tool.
After doing that, I have found the relevant bits of code I need to modify:
Quote:
/* found: 129 pos: bd0990 */
#urlBar {
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px solid black;
}
#urlBar[browserStyle="simple"] {
qproperty-visible: false;
}
|
Quote:
/* found: 410 pos: c37a58 */
#browserContainer[qApp_deviceIsTrilogy="true"] {
qproperty-bottomMargin: 10;
}
|
These are found on a file called libnickel.so.1.0.0-all.css that was extracted by this tool.
After editing this file, how would one apply the desired modifications to the original file? Pipcat mentions doing it via a Metazoa patch. Could anyone explain to me how that would be done?