tazpanel diff styles/default/prism.css @ rev 613

dot command may not search current directory first
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 23 13:53:37 2017 +0200 (2017-07-23)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/styles/default/prism.css	Sun Jul 23 13:53:37 2017 +0200
     1.3 @@ -0,0 +1,130 @@
     1.4 +/* http://prismjs.com/download.html?themes=prism&languages=clike+bash+ini */
     1.5 +/**
     1.6 + * prism.js default theme for JavaScript, CSS and HTML
     1.7 + * Based on dabblet (http://dabblet.com)
     1.8 + * @author Lea Verou
     1.9 + *
    1.10 + * Changed for SliTaz TazPanel
    1.11 + */
    1.12 +
    1.13 +code[class*="language-"],
    1.14 +pre[class*="language-"] {
    1.15 +	color: black;
    1.16 +	text-shadow: 0 1px white;
    1.17 +
    1.18 +	-moz-tab-size: 4;
    1.19 +	-o-tab-size: 4;
    1.20 +	tab-size: 4;
    1.21 +
    1.22 +	-webkit-hyphens: none;
    1.23 +	-moz-hyphens: none;
    1.24 +	-ms-hyphens: none;
    1.25 +	hyphens: none;
    1.26 +}
    1.27 +
    1.28 +pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
    1.29 +code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
    1.30 +	text-shadow: none;
    1.31 +	background: #b3d4fc;
    1.32 +}
    1.33 +
    1.34 +pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
    1.35 +code[class*="language-"]::selection, code[class*="language-"] ::selection {
    1.36 +	text-shadow: none;
    1.37 +	background: #b3d4fc;
    1.38 +}
    1.39 +
    1.40 +@media print {
    1.41 +	code[class*="language-"],
    1.42 +	pre[class*="language-"] {
    1.43 +		text-shadow: none;
    1.44 +	}
    1.45 +}
    1.46 +
    1.47 +/* Code blocks */
    1.48 +pre[class*="language-"] {
    1.49 +	overflow: auto;
    1.50 +}
    1.51 +
    1.52 +:not(pre) > code[class*="language-"],
    1.53 +pre[class*="language-"] {
    1.54 +	background: #f5f2f0;
    1.55 +}
    1.56 +
    1.57 +/* Inline code */
    1.58 +:not(pre) > code[class*="language-"] {
    1.59 +	padding: .1em;
    1.60 +	border-radius: .3em;
    1.61 +}
    1.62 +
    1.63 +.token.comment,
    1.64 +.token.prolog,
    1.65 +.token.doctype,
    1.66 +.token.cdata {
    1.67 +	color: slategray;
    1.68 +}
    1.69 +
    1.70 +.token.punctuation {
    1.71 +	color: #999;
    1.72 +}
    1.73 +
    1.74 +.namespace {
    1.75 +	opacity: .7;
    1.76 +}
    1.77 +
    1.78 +.token.property,
    1.79 +.token.tag,
    1.80 +.token.boolean,
    1.81 +.token.number,
    1.82 +.token.constant,
    1.83 +.token.symbol,
    1.84 +.token.deleted {
    1.85 +	color: #905;
    1.86 +}
    1.87 +
    1.88 +.token.selector,
    1.89 +.token.attr-name,
    1.90 +.token.string,
    1.91 +.token.char,
    1.92 +.token.builtin,
    1.93 +.token.inserted {
    1.94 +	color: #690;
    1.95 +}
    1.96 +
    1.97 +.token.operator,
    1.98 +.token.entity,
    1.99 +.token.url,
   1.100 +.language-css .token.string,
   1.101 +.style .token.string {
   1.102 +	color: #a67f59;
   1.103 +	background: hsla(0, 0%, 100%, .5);
   1.104 +}
   1.105 +
   1.106 +.token.atrule,
   1.107 +.token.attr-value,
   1.108 +.token.keyword {
   1.109 +	color: #07a;
   1.110 +}
   1.111 +
   1.112 +.token.function {
   1.113 +	color: #DD4A68;
   1.114 +}
   1.115 +
   1.116 +.token.regex,
   1.117 +.token.important,
   1.118 +.token.variable {
   1.119 +	color: #e90;
   1.120 +}
   1.121 +
   1.122 +.token.important,
   1.123 +.token.bold {
   1.124 +	font-weight: bold;
   1.125 +}
   1.126 +.token.italic {
   1.127 +	font-style: italic;
   1.128 +}
   1.129 +
   1.130 +.token.entity {
   1.131 +	cursor: help;
   1.132 +}
   1.133 +