├── src ├── docs │ ├── themes │ │ └── creativebulma │ │ │ ├── layouts │ │ │ ├── _default │ │ │ │ ├── list.html │ │ │ │ ├── _markup │ │ │ │ │ └── render-link.html │ │ │ │ ├── baseof.html │ │ │ │ └── single.html │ │ │ ├── partials │ │ │ │ ├── header.html │ │ │ │ ├── footer.html │ │ │ │ ├── navbar.html │ │ │ │ ├── head.html │ │ │ │ └── menu.html │ │ │ ├── shortcodes │ │ │ │ ├── notification.html │ │ │ │ ├── changelog.html │ │ │ │ ├── link.html │ │ │ │ ├── tab.html │ │ │ │ ├── button.html │ │ │ │ ├── variables.html │ │ │ │ ├── table.html │ │ │ │ ├── options.html │ │ │ │ ├── tabs.html │ │ │ │ ├── preview.html │ │ │ │ ├── tag.html │ │ │ │ └── api.html │ │ │ ├── index.html │ │ │ └── 404.html │ │ │ ├── archetypes │ │ │ ├── default.md │ │ │ └── changelog.md │ │ │ ├── static │ │ │ ├── images │ │ │ │ └── clippy.svg │ │ │ ├── js │ │ │ │ ├── docs.js │ │ │ │ └── clipboard.min.js │ │ │ └── css │ │ │ │ └── docs.css │ │ │ ├── theme.toml │ │ │ └── LICENSE │ ├── archetypes │ │ └── default.md │ ├── data │ │ ├── social.json │ │ ├── versions.json │ │ └── variables.json │ ├── content │ │ ├── changelog.md │ │ ├── release │ │ │ ├── 1.0.1.md │ │ │ ├── 1.md │ │ │ ├── 1.2.md │ │ │ ├── 1.0.2.md │ │ │ └── 1.1.0.md │ │ ├── _index.md │ │ ├── how-to │ │ │ └── customize.md │ │ └── get-started.md │ ├── config.toml │ └── layouts │ │ └── partials │ │ └── head.html └── sass │ ├── _animation.sass │ ├── _variables.sass │ ├── _position.sass │ ├── index.sass │ └── _responsiveness.sass ├── .gitignore ├── demo.sass ├── docs ├── images │ └── clippy.svg ├── tags │ └── index.xml ├── categories │ └── index.xml ├── 404.html ├── how-to │ ├── index.xml │ └── customize │ │ └── index.html ├── sitemap.xml ├── release │ ├── 1 │ │ └── index.html │ ├── index.xml │ ├── 1.0.1 │ │ └── index.html │ ├── 1.2 │ │ └── index.html │ ├── 1.1.0 │ │ └── index.html │ └── 1.0.2 │ │ └── index.html ├── js │ ├── docs.js │ └── clipboard.min.js ├── index.xml ├── index.html ├── css │ └── docs.css ├── changelog │ └── index.html └── get-started │ └── index.html ├── .eslintrc ├── LICENSE ├── package.json ├── README.md └── gulpfile.js /src/docs/themes/creativebulma/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | Gemfile.lock 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /demo.sass: -------------------------------------------------------------------------------- 1 | @import 'node_modules/bulma/sass/utilities/_all.sass' 2 | @import 'src/sass/index' -------------------------------------------------------------------------------- /src/docs/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /src/docs/data/social.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "github", 4 | "title" : "Github repository", 5 | "url": "https://github.com/CreativeBulma/bulma-tooltip" 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /src/docs/content/changelog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Changelog" 3 | date: "2020-03-21" 4 | menu: "main" 5 | weight: 100 6 | draft: false 7 | --- 8 | 9 | # Changelog 10 | 11 | {{< changelog >}} 12 | -------------------------------------------------------------------------------- /src/sass/_animation.sass: -------------------------------------------------------------------------------- 1 | =tooltip-fade 2 | &::before, 3 | &::after 4 | transition: opacity $tooltip-animation-duration $tooltip-animation-transition-timing-function, visibility $tooltip-animation-duration $tooltip-animation-transition-timing-function -------------------------------------------------------------------------------- /src/docs/themes/creativebulma/layouts/shortcodes/notification.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |