From: Jeremy Thomas Date: Mon, 24 Jul 2017 18:36:40 +0000 (+0200) Subject: Add contribution text X-Git-Tag: 0.5.0~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=298832fdcfd905f732c5e587fbef6c5cf48a6448;p=thirdparty%2Fbulma.git Add contribution text --- diff --git a/docs/_layouts/documentation.html b/docs/_layouts/documentation.html index 6e1694d42..d5b422222 100644 --- a/docs/_layouts/documentation.html +++ b/docs/_layouts/documentation.html @@ -62,3 +62,17 @@ route: documentation {{ content }} + +
+
+

+ This page is open source. + Noticed a typo? + Or something unclear? + + Improve this page on GitHub + +

+
+
+ diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css index 81f0a0549..cb488f509 100644 --- a/docs/css/bulma-docs.css +++ b/docs/css/bulma-docs.css @@ -961,6 +961,10 @@ a.has-text-danger:hover, a.has-text-danger:focus { padding: 0 !important; } +.is-radiusless { + border-radius: 0 !important; +} + .is-unselectable { -webkit-touch-callout: none; -webkit-user-select: none; @@ -7649,7 +7653,6 @@ label.panel-block:hover { } .section { - background-color: white; padding: 3rem 1.5rem; } diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html index e323e4418..89838cd70 100644 --- a/docs/documentation/modifiers/helpers.html +++ b/docs/documentation/modifiers/helpers.html @@ -36,19 +36,6 @@ doc-subtab: helpers is-fullwidth Takes up the whole width (100%) - - Text - has-text-centered - Centers the text - - - has-text-left - Text is left-aligned - - - has-text-right - Text is right-aligned - Other is-marginless @@ -59,12 +46,12 @@ doc-subtab: helpers Removes any padding - is-unselectable - Prevents the text from being selectable + is-radiusless + Removes any radius - is-hidden - Hides element + is-unselectable + Prevents the text from being selectable diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass index f30aa0640..bd2645a43 100644 --- a/sass/base/helpers.sass +++ b/sass/base/helpers.sass @@ -148,5 +148,8 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' .is-paddingless padding: 0 !important +.is-radiusless + border-radius: 0 !important + .is-unselectable +unselectable diff --git a/sass/layout/section.sass b/sass/layout/section.sass index 7139cfb5f..c6cde56dd 100644 --- a/sass/layout/section.sass +++ b/sass/layout/section.sass @@ -1,5 +1,4 @@ .section - background-color: $white padding: 3rem 1.5rem // Responsiveness +desktop