Page 1 of 1

plugin CSS Inspector

Posted: 21.03.2019 09:12
by Alexey
CSS Inspector Plugin for CudaText.
In HTML documents it shows CSS properties of current tag under caret.
To call plugin, use menu item "Plugins / CSS Inspector", it will show side panel, and later you can switch to this panel (e.g. after calling Code Tree) by sidebar button with icon "css".

Properties given by: class; id; "style" tag.
Properties can be set:
- straight in HTML by using "style" tag
- in the CSS file and connected by the "link" tag

Libraries
---------
- Windows: plugin uses local libraries in its folder.
- Unix: plugin needs additional libs in OS Python, install them like this:
$ pip3 install lxml
$ pip3 install cssselect

Authors:
@Medvosa at GitHub
Alexey Torgashin (CudaText)

Posted: 01.04.2019 11:04
by Alexey
Plugin was updated today and released in AddonManager.

Posted: 30.07.2022 09:43
by main Alexey
Plugin was heavily updated.

2022.07.29
+ add: support several class-names space-separated
+ add: remove CSS comments from output
+ add: change UI control 'label' to 'listbox_ex' which has vert scrollbar
+ add: CudaText sidebar always shows plugin's icon
+ add: plugin is not activated (even in HTML files) until you call it by menu item or sidebar button
- fix: many exceptions

Posted: 31.07.2022 11:58
by main Alexey
Made the big change for Windows - now Windows libs are not preinstalled. added readme.txt info how to install them.