diff -r 000000000000 -r 03b0d1493584 web/wp-includes/js/codepress/languages/css.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-includes/js/codepress/languages/css.js Wed Dec 23 17:55:33 2009 +0000
@@ -0,0 +1,23 @@
+/*
+ * CodePress regular expressions for CSS syntax highlighting
+ */
+
+// CSS
+Language.syntax = [
+ { input : /(.*?){(.*?)}/g,output : '$1{$2}' }, // tags, ids, classes, values
+ { input : /([\w-]*?):([^\/])/g,output : '$1:$2' }, // keys
+ { input : /\((.*?)\)/g,output : '($1)' }, // parameters
+ { input : /\/\*(.*?)\*\//g,output : '/*$1*/'} // comments
+]
+
+Language.snippets = []
+
+Language.complete = [
+ { input : '\'',output : '\'$0\'' },
+ { input : '"', output : '"$0"' },
+ { input : '(', output : '\($0\)' },
+ { input : '[', output : '\[$0\]' },
+ { input : '{', output : '{\n\t$0\n}' }
+]
+
+Language.shortcuts = []