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
|
2015-01-05 18:20:46 -05:00
|
|
|
// Credit: Jon Neal & CSS-Tricks
|
|
|
|
// http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
|
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2014-07-08 05:04:48 -04:00
|
|
|
*,
|
2013-08-13 00:26:43 -04:00
|
|
|
*:before,
|
|
|
|
*:after {
|
2015-01-05 18:20:46 -05:00
|
|
|
box-sizing: inherit;
|
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-12-04 03:10:24 -05:00
|
|
|
font-size: $font-size-root;
|
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 {
|
2014-12-02 17:02:35 -05:00
|
|
|
font-family: $font-family-base;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
color: $text-color;
|
|
|
|
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 {
|
2014-12-02 17:02:35 -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 {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $link-hover-color;
|
|
|
|
text-decoration: $link-hover-decoration;
|
2013-08-18 17:28:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include tab-focus();
|
2013-08-18 17:28:55 -04:00
|
|
|
}
|
2012-12-20 23:52:20 -05:00
|
|
|
}
|
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 {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include 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 {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include border-radius($border-radius-lg);
|
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
|
|
|
.img-thumbnail {
|
2014-12-02 17:02:35 -05:00
|
|
|
padding: $thumbnail-padding;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
background-color: $thumbnail-bg;
|
|
|
|
border: 1px solid $thumbnail-border;
|
|
|
|
border-radius: $thumbnail-border-radius;
|
2014-07-08 05:04:48 -04:00
|
|
|
transition: all .2s ease-in-out;
|
2014-12-02 17:02:35 -05:00
|
|
|
@include box-shadow(0 1px 2px rgba(0,0,0,.075));
|
2013-08-18 22:24:10 -04:00
|
|
|
|
|
|
|
// Keep them at most 100% wide
|
2014-12-02 17:02:35 -05:00
|
|
|
@include img-responsive(inline-block);
|
2013-08-18 22:24:10 -04:00
|
|
|
}
|
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 {
|
2014-12-11 15:05:29 -05:00
|
|
|
margin-top: $spacer;
|
2014-12-04 18:18:16 -05:00
|
|
|
margin-bottom: $spacer;
|
2013-07-05 15:21:05 -04:00
|
|
|
border: 0;
|
2014-12-31 13:20:29 -05:00
|
|
|
border-top: .0625rem solid $hr-border;
|
2013-07-05 15:21:05 -04:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
padding: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
margin: -1px;
|
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;
|
|
|
|
}
|
|
|
|
}
|