Difference between revisions of "S2 Guide: Style System Overview"
From Dreamwidth Notes
Foxfirefey (Talk | contribs) (Created page with '= Basic Terminology = A <em>style</em> is composed of <em>layers</em>. = Layers = <graphviz caption='Order of layers'> graph G { core_layer [shape="doubleoctagon" color="#1168…') |
Foxfirefey (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
<graphviz caption='Order of layers'> | <graphviz caption='Order of layers'> | ||
− | + | digraph layers { | |
− | core_layer [shape="doubleoctagon" color="# | + | core_layer [shape="doubleoctagon" color="#002F74" fontcolor="black"]; |
− | layout_layer [shape="doubleoctagon" color="# | + | layout_layer [shape="doubleoctagon" color="#444F96" fontcolor="black"]; |
− | theme_layer [shape="doubleoctagon" color="# | + | theme_layer [shape="doubleoctagon" color="#886FA8" fontcolor="black"]; |
− | wizard_layer [shape="doubleoctagon" color="# | + | wizard_layer [shape="doubleoctagon" color="#BB8FCA" fontcolor="black"]; |
− | core_layer - | + | core_layer -> layout_layer |
− | layout_layer - | + | layout_layer -> theme_layer |
− | theme_layer - | + | theme_layer -> wizard_layer |
} | } | ||
</graphviz> | </graphviz> | ||
[[Category: S2 Guide]] | [[Category: S2 Guide]] |
Revision as of 07:26, 15 June 2010
<graphviz caption='Order of layers'> digraph layers { core_layer [shape="doubleoctagon" color="#002F74" fontcolor="black"]; layout_layer [shape="doubleoctagon" color="#444F96" fontcolor="black"]; theme_layer [shape="doubleoctagon" color="#886FA8" fontcolor="black"]; wizard_layer [shape="doubleoctagon" color="#BB8FCA" fontcolor="black"];
core_layer -> layout_layer layout_layer -> theme_layer theme_layer -> wizard_layer } </graphviz>