Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-align: left/center/right
# --
text-align: ${1:left/right/center/justify};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-decoration: none/underline/overline/line-through/blink
# --
text-decoration: ${1:none/underline/overline/line-through/blink};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-indent: length
# --
text-indent: ${1:10}px;$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-shadow: color-hex x y blur
# --
text-shadow: #${1:DDD} ${2:10px} ${3:10px} ${4:2px};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-shadow: color-rgb x y blur
# --
text-shadow: rgb(${1:255},${2:255},${3:255}) ${4:10px} ${5:10px} ${6:2px};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-shadow: none
# --
text-shadow: none;$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-transform: capitalize/upper/lower
# --
text-transform: ${1:capitalize/uppercase/lowercase};$0

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: text
# contributor: Translated from TextMate Snippet
# name: text-transform: none
# --
text-transform: none;$0