Skip to content

Commit

Permalink
Merge pull request jgthms#1787 from jgthms/new-docs
Browse files Browse the repository at this point in the history
New docs
  • Loading branch information
jgthms authored Apr 13, 2018
2 parents 858a20b + c342fcf commit 35452d1
Show file tree
Hide file tree
Showing 261 changed files with 21,092 additions and 17,214 deletions.
473 changes: 473 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2,494 changes: 823 additions & 1,671 deletions css/bulma.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/bulma.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/bulma.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ css/bulma-test.css
css/bulma-docs.css.map
PUBLISHING.md
npm-debug.log
test.html
test.sass
test.scss

Expand Down
179 changes: 179 additions & 0 deletions docs/_data/blog/migratingv070.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
{
"removed": [
{
"file": "sass/components/message.sass",
"before": "$message-body-border",
"after": ["$message-body-border-color", "$message-body-border-width"]
}
],
"updated": [
{
"file": "sass/utilities/initial-variables.sass",
"changes": [
{
"variable": "$gap",
"from": "32px",
"to": "64px"
},
{
"variable": "$radius",
"from": "3px",
"to": "4px"
},
{
"variable": "$radius-large",
"from": "5px",
"to": "6px"
}
]
},
{
"file": "sass/base/generic.sass",
"changes": [
{
"variable": "$hr-background-color",
"from": "$border",
"to": "$background"
},
{
"variable": "$hr-height",
"from": "1px",
"to": "2px"
}
]
},
{
"file": "sass/elements/content.sass",
"changes": [
{
"variable": "$content-heading-weight",
"from": "$weight-normal",
"to": "$weight-semibold"
}
]
},
{
"file": "sass/components/message.sass",
"changes": [
{
"variable": "$message-header-padding",
"from": "0.5em 0.75em",
"to": "0.75em 1em"
},
{
"variable": "$message-body-padding",
"from": "1em 1.25em",
"to": "1.25em 1.5em"
}
]
},
{
"file": "sass/components/navbar.sass",
"changes": [
{
"variable": "$navbar-item-hover-background-color",
"from": "$background",
"to": "$white-bis"
},
{
"variable": "$navbar-dropdown-border-top",
"from": "1px solid $border",
"to": "2px solid $border"
},
{
"variable": "$navbar-divider-background-color",
"from": "$border",
"to": "$background"
}
]
},
{
"file": "sass/layout/footer.sass",
"changes": [
{
"variable": "$footer-background-color",
"from": "$background",
"to": "$white-bis"
}
]
}
],
"new": [
{
"file":"sass/components/breadcrumb.sass",
"newcomers":[
{
"name": "$breadcrumb-item-padding-vertical",
"value": "0"
},
{
"name": "$breadcrumb-item-padding-horizontal",
"value": "0.75em"
}
]
},
{
"file":"sass/components/message.sass",
"newcomers":[
{
"name": "$message-body-border-color",
"value": "$border"
},
{
"name": "$message-body-border-width",
"value": "0 0 0 4px"
},
{
"name": "$message-header-weight",
"value": "$weight-bold"
},
{
"name": "$message-header-body-border-width",
"value": "0"
}
]
},
{
"file":"sass/components/navbar.sass",
"newcomers":[
{
"name": "$navbar-box-shadow-size",
"value": "0 2px 0 0"
},
{
"name": "$navbar-box-shadow-color",
"value": "$background"
},
{
"name": "$navbar-padding-vertical",
"value": "1rem"
},
{
"name": "$navbar-padding-horizontal",
"value": "2rem"
},
{
"name": "$navbar-z",
"value": "30"
}
]
},
{
"file":"sass/elements/title.sass",
"newcomers":[
{
"name": "$title-line-height",
"value": "1.125"
},
{
"name": "$subtitle-line-height",
"value": "1.25"
},
{
"name": "$subtitle-negative-margin",
"value": "-1.25rem"
}
]
}
]
}
67 changes: 67 additions & 0 deletions docs/_data/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"navbar_items": [
{
"id": "blog",
"color": "bd-has-text-rss",
"fa_type": "fas",
"fa_icon": "fa-rss",
"title": "Blog"
},
{
"id": "expo",
"color": "has-text-star",
"fa_type": "fas",
"fa_icon": "fa-star",
"title": "Expo"
},
{
"id": "love",
"color": "has-text-danger",
"fa_type": "fas",
"fa_icon": "fa-heart",
"title": "Love"
}
],
"more_items": [
{
"id": "bulma-start",
"color": "success",
"fa_type": "fas",
"fa_icon": "fa-rocket",
"title": "Bulma start",
"description": "A tiny npm package to get started"
},
{
"id": "made-with-bulma",
"color": "primary",
"fa_type": "fas",
"fa_icon": "fa-certificate",
"title": "Made with Bulma",
"description": "The official community badge"
},
{
"id": "alternative-to-bootstrap",
"color": "bootstrap",
"fa_type": "fas",
"fa_icon": "fa-exchange-alt",
"title": "Coming from Bootstrap",
"description": "See how Bulma is an alternative to Bootstrap"
},
{
"id": "backers",
"color": "patreon",
"fa_type": "fab",
"fa_icon": "fa-patreon",
"title": "Patreon backers",
"description": "Everyone who is supporting Bulma"
},
{
"id": "extensions",
"color": "danger",
"fa_type": "fas",
"fa_icon": "fa-plug",
"title": "Extensions",
"description": "Side projects to enhance Bulma",
}
]
}
2 changes: 1 addition & 1 deletion docs/_data/icons.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"fontawesome4": "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css",
"fontawesome5": "https://use.fontawesome.com/releases/v5.0.6/js/all.js",
"fontawesome5": "https://use.fontawesome.com/releases/v5.0.7/js/all.js",
"iconic": "https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic.min.css",
"ionicons": "https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css",
"mdi": "https://cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css"
Expand Down
Loading

0 comments on commit 35452d1

Please sign in to comment.