style: generic naming scheme for support classes
[sheet.git] / base.css
index 139c94cce350e6cebc01e4ff58c15b54449a87e3..d4e3758b3c9fd985d6dd451259e165c43fa84299 100644 (file)
--- a/base.css
+++ b/base.css
@@ -48,6 +48,9 @@ hr {
        position: relative; /* prevents buggy hovering in table if caption present in gecko */
        margin: 1ex 1ex 2ex;
 }
+.section .section {
+       float: left;
+}
 #charset .section table {
        margin: -0.5ex 0 1ex; /* headers provide sufficient spacing already */
 }
@@ -214,25 +217,28 @@ th {
 
 /* digraphs map */
 
-table.glyphs.dimap {
+table.dimap {
        table-layout: fixed; /* prevent resizing, notably in msie6 */
 }
-.glyphs.dimap thead th, .glyphs.dimap td {
+.dimap thead th, .dimap td {
        /* below-maximum size (but still average enough to be regular) so we can fit more */
        width: 1.2em; /* msie only looks at the first row */
        min-width: 1em; /* prevents gecko from restricting to page width */
 }
-.glyphs.dimap th {
+.dimap th {
        text-align: center; /* row headers are also glyph-sized */
 }
 
-.glyphs.dimap tbody, .glyphs.dimap colgroup {
+.mapped tbody, .mapped colgroup,
+.dimap tbody, .dimap colgroup {
        border: 2px double #888; /* major character group grid */
 }
-.glyphs.dimap tbody {
+.mapped tbody,
+.dimap tbody {
        border-width: 2px 0; /* horizontal group dividers */
 }
-.glyphs.dimap colgroup {
+.mapped colgroup,
+.dimap colgroup {
        border-width: 0 2px; /* vertical divides */
 }
 
@@ -316,22 +322,17 @@ td.Xr                      {color: #888} /* reserved (digraph reverse or proposa
 .dimap td.Xr               {background: #EEE} /* reversed digraph */
 .ccmap td.Xr {opacity:.4}
 
-/* implementation-based alternatives */
-td.di-b       {background: #FDD} /* bmp */
-td.di-d       {background: #FFD} /* rfc-1345 digraph */
-td.di-prop    {background: #FED} /* proposed digraph */
-td.di-a       {background: #EFD} /* ascii */
-td.di-rare    {background: #EEE} /* disfavoured */
-td.di-invalid {background: #BBB} /* impossible */
-
-/* continents */
-td.c-af       {background: #FFC}
-td.c-eu       {background: #FDC}
-td.c-as       {background: #FDD}
-td.c-oc       {background: #EEDDF4}
-td.c-aa       {background: #E3E8FF}
-td.c-sa       {background: #DFF}
-td.c-na       {background: #DFD}
+/* support levels */
+td.l0 {background: #FDD} /* no, unsupported, other */
+td.l2 {background: #FED} /* partial, restricted, unofficial */
+       /* default u-prop, u-bmp */
+td.l4 {background: #FFD} /* almost, imperfect, common */
+       /* default u-di, u-lat1 */
+td.l5 {background: #EFD} /* yes, supported, ubiquitous, native */
+       /* default u-ascii */
+td.l6 {background: #DFD} /* complete, perfect */
+td.ex {background: #EEE} /* experimental, disfavoured */
+td.u-invalid {background: #BBB} /* invalid, impossible */
 
 /* code syntax */
 .sy-comment    { color: #888 }
@@ -345,7 +346,7 @@ td.c-na       {background: #DFD}
 .sy-todo       { background-color: #FF0 }
 
 /* hover effects */
-td.di-d,
+td.u-di,
 td.X:hover {cursor: help}
 td.Greek:hover, td.Armenian:hover                  {background: #FA8}
 td.Cyrillic:hover                                  {background: #FB7}
@@ -376,31 +377,47 @@ td.Xr:hover                                        {background: #FFF} /* reserve
 td.Xa:hover {outline: 1px solid #0F0} /* ascii */
 td.Xl:hover {outline: 1px solid #0C0} /* latin1 */
 td.Xz:hover {outline: 1px solid #F00} /* proposed */
-td.di-rare:hover                                   {background: #BBB}
-td.di-b:hover                                      {background: #F88}
-td.di-d:hover                                      {background: #FF8}
-td.di-prop:hover                                   {background: #FC8}
-td.di-a:hover                                      {background: #CF8}
+td.l0:hover                                        {background: #F88}
+td.l2:hover                                        {background: #FC8}
+td.l4:hover                                        {background: #FF8}
+td.l5:hover                                        {background: #CF8}
+td.l6:hover                                        {background: #8F8}
+td.ex:hover                                        {background: #BBB}
 
 /* key type colorization */
 
+td.c-na,
 .pm {background: #BFB}   /* motion */
 .po {background: #DFA}   /* window */
+td.c-af,
 .co {background: #FFA}   /* command */
+td.c-sa,
 .ci {background: #BFE}   /* info */
+td.c-eu,
 .cp {background: #FDA}   /* TODO */
 .mi {background: #FCA}   /* insert mode */
+td.c-as,
 .mo {background: #FCC}   /* mode */
+td.c-aa,
 .mv {background: #ECE}   /* visual mode */
+td.c-oc,
 .me {background: #CCF}   /* key mode */
 
+td.c-na:hover,
 .pm a:hover, .pm[onclick]:hover {background: #7E7}
 .po a:hover, .po[onclick]:hover {background: #CE6}
+td.c-sa:hover,
 .ci a:hover, .ci[onclick]:hover {background: #5ED}
+td.c-eu:hover,
+.cp a:hover, .cp[onclick]:hover {background: #FA6}
 .mi a:hover, .mi[onclick]:hover {background: #F97}
+td.c-as:hover,
 .mo a:hover, .mo[onclick]:hover {background: #F88}
+td.c-oc:hover,
 .me a:hover, .me[onclick]:hover {background: #99F}
+td.c-aa:hover,
 .mv a:hover, .mv[onclick]:hover {background: #D9D}
+td.c-af:hover,
 .co a:hover, .co[onclick]:hover {background: #EE4}
 
 .no {
@@ -411,6 +428,14 @@ ul.keys li.ni {
        padding: 1px; /* same size as borderlessless keys */
 }
 
+dl.legend dt.more,
+ul.keys li.more b {
+       text-shadow: #F20 0 0 0.1em;
+}
+dl.legend dt.more:hover,
+ul.keys li.more:hover b {
+       text-shadow: #F20 0 0 0.5em, #FC0 0 0 0.2em;
+}
 dl.legend dt.ext,
 ul.keys li.ext {
        border-style: dashed;