From 3d366038d739ca1ddf460c3c52372365818b9005 Mon Sep 17 00:00:00 2001 From: jody tate Date: Wed, 21 Aug 2013 08:44:54 -0700 Subject: removed reference to button color and gradient Changed the wording to reflect the default button's new look since it's no longer grey and doesn't have a gradient. I'd say this new wording isn't ideal and needs something a bit more, well, descriptive. --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index f976d229b..5cb06f5f6 100644 --- a/css.html +++ b/css.html @@ -1972,7 +1972,7 @@ For example, <section> should be wrapped as inline. {% highlight html %} - + -- cgit v1.2.3 From 68b7998c05582305a746bf76ab895dd2b9842bc2 Mon Sep 17 00:00:00 2001 From: jody tate Date: Wed, 21 Aug 2013 08:46:13 -0700 Subject: removed extraneous space --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index 5cb06f5f6..5ddddfd85 100644 --- a/css.html +++ b/css.html @@ -1972,7 +1972,7 @@ For example, <section> should be wrapped as inline. {% highlight html %} - + -- cgit v1.2.3 From 0add7700adc3ccdef68b7a88ec3537b5e523bf9a Mon Sep 17 00:00:00 2001 From: Kevin Suttle Date: Sat, 24 Aug 2013 11:16:08 -0400 Subject: Add role="button" to buttons These should really be {% highlight html %} -Link +Link -- cgit v1.2.3 From 7c8d9551cc01536df505266218746655dc6a5a64 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 24 Aug 2013 14:40:24 -0700 Subject: fixes #9887: documents show and hide classes --- css.html | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index c0169d574..2933272cf 100644 --- a/css.html +++ b/css.html @@ -2225,7 +2225,7 @@ For example, <section> should be wrapped as inline.

Quick floats

-

Float an element to the left or right with a class. Classes can also be used as mixins.

+

Float an element to the left or right with a class. !important is included to avoid specificity issues. Classes can also be used as mixins.

{% highlight html %}
...
...
@@ -2280,6 +2280,31 @@ For example, <section> should be wrapped as inline. {% endhighlight %} +

Showing and hiding content

+

Force an element to be shown or hidden via display with the use of .show and .hide classes. These classes use !important to avoid specificity conflicts, just like the quick floats. They are only available for block level toggling. They can also be used as mixins.

+{% highlight html %} +
...
+
...
+{% endhighlight %} +{% highlight css %} +// Classes +.show { + display: block !important; +} +.hide { + display: none !important; +} + +// Usage as mixins +.element { + .show(); +} +.another-element { + .hide(); +} +{% endhighlight %} + +

Screen reader content

Hide an element to all users except screen readers with .sr-only. Necessary for following accessibility best practices. Can also be used as a mixin.

{% highlight html %} -- cgit v1.2.3 From 4ad2ecf9757ba45fe41a05fb28a84e7dab5dc39f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 26 Aug 2013 17:58:15 -0700 Subject: Improve upon #9937: Link and put reset column stuff to action in the grid example --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index 77f1bb1ab..c421f2e5c 100644 --- a/css.html +++ b/css.html @@ -316,7 +316,7 @@ base_url: "../"
.col-xs-6 .col-sm-3
{% endhighlight %} -

In addition to column clearing at responsive breakpoints, you may need to reset offsets, pushes, or pulls. Those resets are available for medium and large grid tiers only, since they start only at the (second) small grid tier.

+

In addition to column clearing at responsive breakpoints, you may need to reset offsets, pushes, or pulls. Those resets are available for medium and large grid tiers only, since they start only at the (second) small grid tier. See this in action in the grid example.

{% highlight html %}
.col-sm-5 .col-md-6
-- cgit v1.2.3 From 83354ab1566b224221aa27973c77d3c9a2cd3c35 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 29 Aug 2013 11:51:39 +0200 Subject: [doc] minor fix in the LESS mixins example --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'css.html') diff --git a/css.html b/css.html index c421f2e5c..0188331fb 100644 --- a/css.html +++ b/css.html @@ -501,7 +501,7 @@ base_url: "../" } } -// Generate the large column offsets +// Generate the medium column offsets .make-md-column-offset(@columns) { @media (min-width: @screen-medium) { margin-left: percentage((@columns / @grid-columns)); -- cgit v1.2.3