Browse Source

Merge pull request #320 from twbs/css

Fix a couple of CSS issues.
pull/327/head
XhmikosR 11 years ago
parent
commit
3b54258512
  1. 2
      dist/ratchet-theme-android.css
  2. 5
      docs/assets/css/docs.css
  3. 2
      docs/dist/ratchet-theme-android.css
  4. 3
      sass/docs.scss
  5. 2
      sass/theme-android.scss

2
dist/ratchet-theme-android.css vendored

@ -467,7 +467,7 @@ textarea,
} }
.backdrop { .backdrop {
background-color: none; background-color: transparent;
} }
.popover .bar { .popover .bar {

5
docs/assets/css/docs.css

@ -400,7 +400,6 @@ body {
} }
.docs-example-group .example-wrap .example { .docs-example-group .example-wrap .example {
display: block; display: block;
padding: 4px;
overflow: hidden; overflow: hidden;
padding: 3px; padding: 3px;
width: 100%; width: 100%;
@ -791,7 +790,7 @@ hr {
} }
.docs-footer .social .twitter-follow-button { .docs-footer .social .twitter-follow-button {
margin-top: 0px; margin-top: 0;
} }
.step-title { .step-title {
@ -1966,7 +1965,7 @@ hr {
transform: scale(1); transform: scale(1);
} }
.platform-android .backdrop { .platform-android .backdrop {
background-color: none; background-color: transparent;
} }
.platform-android .popover .bar { .platform-android .popover .bar {
border-radius: 0; border-radius: 0;

2
docs/dist/ratchet-theme-android.css vendored

@ -467,7 +467,7 @@ textarea,
} }
.backdrop { .backdrop {
background-color: none; background-color: transparent;
} }
.popover .bar { .popover .bar {

3
sass/docs.scss

@ -396,7 +396,6 @@ body {
} }
.example { .example {
display: block; display: block;
padding: 4px;
overflow: hidden; overflow: hidden;
padding: 3px; padding: 3px;
width: 100%; width: 100%;
@ -803,7 +802,7 @@ hr {
// Social // Social
.docs-footer { .docs-footer {
.social .twitter-follow-button { .social .twitter-follow-button {
margin-top: 0px; margin-top: 0;
} }
} }

2
sass/theme-android.scss

@ -623,7 +623,7 @@ textarea,
// Remove the popover's backdrop // Remove the popover's backdrop
.backdrop { .backdrop {
background-color: none; background-color: transparent;
} }
// Popovers with bars // Popovers with bars

Loading…
Cancel
Save