]> git.plutz.net Git - shellwiki/blobdiff - themes/default.css
checkmark symbols for checklists
[shellwiki] / themes / default.css
index 1823d7781758e6db6227afb7e606c284faccb5fc..0bd8c2a410486578b172aed0818958200c86bff9 100644 (file)
@@ -109,23 +109,45 @@ main pre {
   overflow-x: auto;
 }
 
+li.task > input[type=checkbox][disabled],
+li.task > p > input[type=checkbox][disabled] {
+  display: none;
+}
+li.task > p:first-child { display: inline-block;}
+
+-li.task:before { font-size: 1.125em; }
+li.task.pending:before  { content: '\274f  '; color: #222; }
+li.task.partial:before  { content: '\25d4  '; color: #880; }
+li.task.negative:before { content: '\2718  '; color: #800; }
+li.task.done:before     { content: '\2714  '; color: #080; }
+
+/* Alternative Check Symbols, all from "geometric shapes" block */ /*
+-li.task.pending:before  { content: '\25a1  '; color: #222; }
+-li.task.partial:before  { content: '\25d4  '; color: #880; }
+-li.task.negative:before { content: '\25a8  '; color: #800; }
+-li.task.done:before     { content: '\25a3  '; color: #080; }
+*/
+
+
 /* === Editor === */
 
 [id$="/[edit]"] main .pagemenu {
   margin-bottom: 1em;
 }
 
+.tab[name=edithelp] ~ .tab.editor textarea,
+.tab[name=edithelp] ~ .tab.syntax,
+.tab[name=edithelp] ~ .tab.attach,
+.tab[name=edithelp] ~ .tab.transl {
+  background-color: #FFF;
+  min-height: 20em; min-height: 50vh;
+}
+
 .tab[name=edithelp] ~ .tab.editor textarea {
   width: 100%;
-  min-height: 20em; min-height: 50vh;
   font-family: monospace;
   font-size: inherit;
 }
-.tab[name=edithelp] ~ .tab.syntax,
-.tab[name=edithelp] ~ .tab.attach {
-  background-color: #FFF;
-  min-height: 20em; min-height: 50vh;
-}
 
 .tab[name=edithelp] ~ .tab.attach {
   padding-top: 1em;
@@ -137,9 +159,15 @@ main pre {
   margin-left: -6em;
 }
 
+.tab[name=edithelp] ~ .tab.transl {
+  font-family: monospace;
+  white-space: pre;
+}
+
 .tab[name=edithelp]#editor:checked ~ .tab.editor,
 .tab[name=edithelp]#syntax:checked ~ .tab.syntax,
-.tab[name=edithelp]#attach:checked ~ .tab.attach {
+.tab[name=edithelp]#attach:checked ~ .tab.attach,
+.tab[name=edithelp]#transl:checked ~ .tab.transl {
   display: block;
 }
 
@@ -241,13 +269,31 @@ main pre {
 .macro.toc li.h5 { margin-left: 5em; }
 .macro.toc li.h6 { margin-left: 6.25em; }
 
+
 .macro.gallery {
   text-align: center;
   margin: 2em 0;
   padding: .5em .125em;
   background-color: #444;
+  clear: both;
 }
 .macro.gallery img {
   max-height: 9em;
   margin: 0 .25em;
 }
+
+
+.macro.changes td .date {
+  display: block;
+  font-size: .75em;
+}
+.macro.changes td.outdated,
+.macro.changes td.current,
+.macro.changes td.missing {
+  text-align: center;
+}
+.macro.changes th { background-color: #EEF; }
+.macro.changes td { background-color: #DFF; }
+.macro.changes td.outdated { background-color: #FFD; }
+.macro.changes td.current  { background-color: #DFD; }
+.macro.changes td.missing  { background-color: #FDD; }