2012-06-29 00:46:45 -04:00
|
|
|
//
|
2011-11-26 00:34:55 -05:00
|
|
|
// Scaffolding
|
2012-06-29 00:46:45 -04:00
|
|
|
// --------------------------------------------------
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2011-08-17 01:58:01 -04:00
|
|
|
|
2013-03-10 14:24:07 -04:00
|
|
|
// Reset the box-sizing
|
2014-01-23 20:23:57 -05:00
|
|
|
//
|
|
|
|
// Heads up! This reset may cause conflicts with some third-party widgets.
|
|
|
|
// For recommendations on resolving such conflicts, see
|
|
|
|
// http://getbootstrap.com/getting-started/#third-box-sizing
|
2014-01-16 23:00:28 -05:00
|
|
|
* {
|
|
|
|
.box-sizing(border-box);
|
|
|
|
}
|
2013-08-13 00:26:43 -04:00
|
|
|
*:before,
|
|
|
|
*:after {
|
2013-03-17 14:15:04 -04:00
|
|
|
.box-sizing(border-box);
|
2013-03-10 14:24:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-21 11:24:18 -05:00
|
|
|
// Body reset
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2013-01-15 20:55:14 -05:00
|
|
|
html {
|
2014-06-05 07:07:40 -04:00
|
|
|
font-size: 10px;
|
2013-01-15 20:55:14 -05:00
|
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
2011-05-03 21:09:25 -04:00
|
|
|
body {
|
2013-03-26 20:12:17 -04:00
|
|
|
font-family: @font-family-base;
|
2013-04-05 14:42:29 -04:00
|
|
|
font-size: @font-size-base;
|
2013-03-26 20:12:17 -04:00
|
|
|
line-height: @line-height-base;
|
2012-11-30 17:37:24 -05:00
|
|
|
color: @text-color;
|
2013-03-31 20:29:05 -04:00
|
|
|
background-color: @body-bg;
|
2012-11-30 03:24:17 -05:00
|
|
|
}
|
|
|
|
|
2013-06-25 19:07:51 -04:00
|
|
|
// Reset fonts for relevant elements
|
2012-11-30 03:24:17 -05:00
|
|
|
input,
|
|
|
|
button,
|
|
|
|
select,
|
|
|
|
textarea {
|
2013-03-26 20:12:17 -04:00
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-09-03 02:01:38 -04:00
|
|
|
|
2012-02-21 11:24:18 -05:00
|
|
|
// Links
|
2011-05-03 21:09:25 -04:00
|
|
|
|
|
|
|
a {
|
2012-11-30 17:37:24 -05:00
|
|
|
color: @link-color;
|
2011-05-03 21:09:25 -04:00
|
|
|
text-decoration: none;
|
2013-08-18 17:28:55 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: @link-hover-color;
|
2014-10-12 05:40:10 -04:00
|
|
|
text-decoration: @link-hover-decoration;
|
2013-08-18 17:28:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
.tab-focus();
|
|
|
|
}
|
2012-12-20 23:52:20 -05:00
|
|
|
}
|
2012-07-27 03:06:43 -04:00
|
|
|
|
|
|
|
|
2014-01-30 00:23:23 -05:00
|
|
|
// Figures
|
|
|
|
//
|
|
|
|
// We reset this here because previously Normalize had no `figure` margins. This
|
|
|
|
// ensures we don't break anyone's use of the element.
|
|
|
|
|
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-27 03:06:43 -04:00
|
|
|
// Images
|
|
|
|
|
2012-12-20 23:52:20 -05:00
|
|
|
img {
|
2013-06-28 03:09:10 -04:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Responsive images (ensure images don't scale beyond their parents)
|
2013-08-15 03:46:18 -04:00
|
|
|
.img-responsive {
|
|
|
|
.img-responsive();
|
2012-12-20 23:52:20 -05:00
|
|
|
}
|
|
|
|
|
2012-09-04 14:31:48 -04:00
|
|
|
// Rounded corners
|
2012-07-27 03:06:43 -04:00
|
|
|
.img-rounded {
|
2013-07-18 02:41:05 -04:00
|
|
|
border-radius: @border-radius-large;
|
2012-07-27 03:06:43 -04:00
|
|
|
}
|
|
|
|
|
2013-01-17 23:16:04 -05:00
|
|
|
// Image thumbnails
|
2013-08-18 22:24:10 -04:00
|
|
|
//
|
|
|
|
// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
|
|
|
|
.img-thumbnail {
|
|
|
|
padding: @thumbnail-padding;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
background-color: @thumbnail-bg;
|
|
|
|
border: 1px solid @thumbnail-border;
|
|
|
|
border-radius: @thumbnail-border-radius;
|
|
|
|
.transition(all .2s ease-in-out);
|
|
|
|
|
|
|
|
// Keep them at most 100% wide
|
|
|
|
.img-responsive(inline-block);
|
|
|
|
}
|
2012-07-27 03:06:43 -04:00
|
|
|
|
2012-09-04 14:31:48 -04:00
|
|
|
// Perfect circle
|
2012-07-27 03:06:43 -04:00
|
|
|
.img-circle {
|
2013-08-09 07:57:49 -04:00
|
|
|
border-radius: 50%; // set radius in percents
|
2012-08-20 00:12:52 -04:00
|
|
|
}
|
2013-07-05 15:21:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
// Horizontal rules
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin-top: @line-height-computed;
|
|
|
|
margin-bottom: @line-height-computed;
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid @hr-border;
|
|
|
|
}
|
|
|
|
|
2013-08-18 22:24:10 -04:00
|
|
|
|
Improve accessibility (Section 508, WCAG)
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices.
What was done
- Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria)
- Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users.
- Advised users to always use label elements. For inline forms, they can hide them with `.sr-only`
- Added 'Skip navigation' link
- Added "Accessibility" section to getting-started.html.
What *wasn't* done
- Contrast issues (twbs#3572)
- Tooltips (twbs#8469)
- Documentation re: usage of icons, since they now live in a separate repo
Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-07 00:25:36 -04:00
|
|
|
// Only display content to screen readers
|
2013-08-18 22:24:10 -04:00
|
|
|
//
|
Improve accessibility (Section 508, WCAG)
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices.
What was done
- Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria)
- Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users.
- Advised users to always use label elements. For inline forms, they can hide them with `.sr-only`
- Added 'Skip navigation' link
- Added "Accessibility" section to getting-started.html.
What *wasn't* done
- Contrast issues (twbs#3572)
- Tooltips (twbs#8469)
- Documentation re: usage of icons, since they now live in a separate repo
Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-07 00:25:36 -04:00
|
|
|
// See: http://a11yproject.com/posts/how-to-hide-content/
|
|
|
|
|
|
|
|
.sr-only {
|
2013-08-07 03:28:44 -04:00
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
Improve accessibility (Section 508, WCAG)
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices.
What was done
- Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria)
- Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users.
- Advised users to always use label elements. For inline forms, they can hide them with `.sr-only`
- Added 'Skip navigation' link
- Added "Accessibility" section to getting-started.html.
What *wasn't* done
- Contrast issues (twbs#3572)
- Tooltips (twbs#8469)
- Documentation re: usage of icons, since they now live in a separate repo
Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-07 00:25:36 -04:00
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
padding: 0;
|
2013-08-07 03:28:44 -04:00
|
|
|
overflow: hidden;
|
2013-10-05 14:14:19 -04:00
|
|
|
clip: rect(0,0,0,0);
|
2013-08-07 03:28:44 -04:00
|
|
|
border: 0;
|
Improve accessibility (Section 508, WCAG)
This PR significantly improves Bootstrap's accessibility for users of assistive technology, such as screen readers. Some of the these changes add additional markup to the source examples, but we believe that the sacrifice in readability is worth achieving more widespread usage of accessibility best-practices.
What was done
- Added lots of [WAI-ARIA attributes](http://www.w3.org/WAI/intro/aria)
- Added `.sr-only` helper class, that is only readable by screen readers (and invisible for all other users). This lets us - make progress bars and paginations accessible to screen reading users.
- Advised users to always use label elements. For inline forms, they can hide them with `.sr-only`
- Added 'Skip navigation' link
- Added "Accessibility" section to getting-started.html.
What *wasn't* done
- Contrast issues (twbs#3572)
- Tooltips (twbs#8469)
- Documentation re: usage of icons, since they now live in a separate repo
Major props to all that contributed: @bensheldon, @jasonlally, @criscristina, and @louh. Feel free to chime in, guys, if I've left anything out.
2013-08-07 00:25:36 -04:00
|
|
|
}
|
2014-02-10 13:34:38 -05:00
|
|
|
|
|
|
|
// Use in conjunction with .sr-only to only display content when it's focused.
|
|
|
|
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
|
|
|
|
.sr-only-focusable {
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
margin: 0;
|
|
|
|
overflow: visible;
|
|
|
|
clip: auto;
|
|
|
|
}
|
|
|
|
}
|