Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SWT/Devel/Gtk/CSS selector

< SWT‎ | Devel‎ | Gtk
Revision as of 15:06, 29 December 2015 by Unnamed Poltroon (Talk) (Created page with "= Avoiding CSS warnings in console = GTK CSS has a specific format in order to be parsed without warnings. The format is as follows: <widget name/selector> {<property>: <val...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Avoiding CSS warnings in console

GTK CSS has a specific format in order to be parsed without warnings. The format is as follows:

 <widget name/selector> {<property>: <value>;}

Forming CSS strings with this format will not cause any warnings. Additional semi-colons will cause problems. Note that only one semi-colon is needed.

Back to the top