-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
127 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"Fomantic-UI Default Statistic": { | ||
"prefix": "ui-statistic", | ||
"description": "A statistic can display a value with a label above or below it.", | ||
"body": [ | ||
"<div class=\"ui statistic\">", | ||
" <div class=\"value\">", | ||
" ${1:5,550}", | ||
" </div>", | ||
" <div class=\"label\">", | ||
" ${2:Downloads}", | ||
" </div>", | ||
"</div>" | ||
] | ||
}, | ||
"Fomantic-UI Horizontal Statistic": { | ||
"prefix": "ui-statistic-horizontal", | ||
"description": "A statistic can present its measurement horizontally", | ||
"body": [ | ||
"<div class=\"ui horizontal statistic\">", | ||
" <div class=\"value\">", | ||
" ${1:5,550}", | ||
" </div>", | ||
" <div class=\"label\">", | ||
" ${2:Downloads}", | ||
" </div>", | ||
"</div>" | ||
] | ||
}, | ||
"Fomantic-UI Stackable Statistic": { | ||
"prefix": "ui-statistic-stackable", | ||
"description": "A statistic can automatically stack rows to a single columns on mobile devices", | ||
"body": [ | ||
"<div class=\"ui stackable statistic\">", | ||
" <div class=\"value\">", | ||
" ${1:5,550}", | ||
" </div>", | ||
" <div class=\"label\">", | ||
" ${2:Downloads}", | ||
" </div>", | ||
"</div>" | ||
] | ||
}, | ||
"Fomantic-UI Default Statistics": { | ||
"prefix": "ui-statistics", | ||
"description": "A group of statistics", | ||
"body": [ | ||
"<div class=\"ui statistics\">", | ||
" <div class=\"ui statistic\">", | ||
" <div class=\"value\">", | ||
" ${1:5,550}", | ||
" </div>", | ||
" <div class=\"label\">", | ||
" ${2:Downloads}", | ||
" </div>", | ||
" </div>", | ||
" $0", | ||
"</div>" | ||
] | ||
} | ||
} |