Browse Source

Merge pull request #505 from twbs/borders

Remove borders from components
pull/510/head
Connor Sears 11 years ago
parent
commit
cdb5f6927f
  1. 2
      dist/js/ratchet.js
  2. 2
      docs/_includes/header.html
  3. 5
      docs/assets/css/docs.css
  4. 2
      docs/assets/css/docs.min.css
  5. 2
      docs/components.html
  6. 2
      docs/dist/js/ratchet.js
  7. 7
      sass/docs.scss

2
dist/js/ratchet.js vendored

@ -148,7 +148,7 @@
var noop = function () {};
// Pushstate cacheing
// Pushstate caching
// ==================
var isScrolling;

2
docs/_includes/header.html

@ -9,7 +9,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Google Web Fonts -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,500,700|Open+Sans:300,400">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,500,700|Open+Sans:400,300">
<link rel="stylesheet" href="/dist/css/ratchet.min.css">
<link rel="stylesheet" href="/assets/css/docs.min.css">

5
docs/assets/css/docs.css

@ -597,6 +597,11 @@ code {
border-bottom: 0;
}
@media screen and (min-width: 768px) {
.component {
border-bottom: 0;
}
}
.component-title {
margin-bottom: 10px;
font-size: 24px;

2
docs/assets/css/docs.min.css vendored

File diff suppressed because one or more lines are too long

2
docs/components.html

@ -1262,7 +1262,7 @@ window.addEventListener('push', myFunction);
</article>
<!-- Ratchicons -->
<!-- Ratchicons -->
<article class="component no-border" id="ratchicons">
<h3 class="component-title">Ratchicons</h3>
<p class="component-description">Use Ratchicons in your application to help inform interactions.</p>

2
docs/dist/js/ratchet.js vendored

@ -148,7 +148,7 @@
var noop = function () {};
// Pushstate cacheing
// Pushstate caching
// ==================
var isScrolling;

7
sass/docs.scss

@ -623,10 +623,17 @@ code {
margin-right: -15px;
border-bottom: 1px solid #ddd;
// Added to the last component so the footer
// doesn't create a double border.
&.no-border {
border-bottom: 0;
}
}
@media screen and (min-width: 768px) {
.component {
border-bottom: 0;
}
}
.component-title {
margin-bottom: 10px;
font-size: 24px;

Loading…
Cancel
Save