forked from rossedman/derby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bourbon-addons.sublime-completions
29 lines (28 loc) · 1.89 KB
/
bourbon-addons.sublime-completions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"scope": "source.sass",
"completions":
[
{ "trigger": "button", "contents": "@include button( ${1:simple | shiny | pill}, ${2:#ff0000} );" },
{ "trigger": "clearfix", "contents": "@include clearfix;" },
{ "trigger": "helvetica", "contents": "font-family: \\$helvetica;" },
{ "trigger": "georgia", "contents": "font-family: \\$georgia;" },
{ "trigger": "lucida-grande", "contents": "font-family: \\$lucida-grande;" },
{ "trigger": "monospace", "contents": "font-family: \\$monospace;" },
{ "trigger": "verdana", "contents": "font-family: \\$verdana;" },
{ "trigger": "hide-text", "contents": "@include hide-text;" },
{ "trigger": "all-text-inputs", "contents": "#{\\$all-text-inputs} { ${1:border: 1px solid green;} }" },
{ "trigger": "all-text-inputs-hover", "contents": "#{\\$all-text-inputs-hover} { ${1:background: yellow;} }" },
{ "trigger": "all-text-inputs-focus", "contents": "#{\\$all-text-inputs-focus} { ${1:background: white;} }" },
{ "trigger": "inline-block", "contents": "@include inline-block;" },
{ "trigger": "position", "contents": "@include position( ${1:relative}, ${2:0px 0 0 100px} );" },
{ "trigger": "retina", "contents": "@include retina-image( ${1:home-icon}${2:, 32px 20px} );" },
{ "trigger": "size", "contents": "@include size( ${1:30px 70px} );" },
{ "trigger": "triangle", "contents": "@include triangle( ${1:12px}, ${2:gray}, ${3:down} );" },
{ "trigger": "prefix-for-webkit", "contents": "$prefix-for-webkit: ${1:true};" },
{ "trigger": "prefix-for-mozilla", "contents": "$prefix-for-mozilla: ${1:true};" },
{ "trigger": "prefix-for-microsoft", "contents": "$prefix-for-microsoft: ${1:true};" },
{ "trigger": "prefix-for-opera", "contents": "$prefix-for-opera: ${1:true};" },
{ "trigger": "prefix-for-spec", "contents": "$prefix-for-spec: ${1:true};" },
{ "trigger": "prefixer", "contents": "@include prefixer( ${1:box-sizing}, ${2:$box}, ${3:webkit moz spec} );" }
]
}