]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Move .img- classes to new _images.scss; move hr to _type.scss
authorMark Otto <markdotto@gmail.com>
Fri, 17 Apr 2015 00:10:47 +0000 (17:10 -0700)
committerMark Otto <markdotto@gmail.com>
Fri, 17 Apr 2015 00:10:47 +0000 (17:10 -0700)
scss/_images.scss [new file with mode: 0644]
scss/_scaffolding.scss
scss/_type.scss
scss/bootstrap.scss

diff --git a/scss/_images.scss b/scss/_images.scss
new file mode 100644 (file)
index 0000000..283ee87
--- /dev/null
@@ -0,0 +1,28 @@
+// Responsive images (ensure images don't scale beyond their parents)
+.img-responsive {
+  @include img-responsive();
+}
+
+// Rounded corners
+.img-rounded {
+  @include border-radius($border-radius-lg);
+}
+
+// Image thumbnails
+.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;
+  @include box-shadow(0 1px 2px rgba(0,0,0,.075));
+
+  // Keep them at most 100% wide
+  @include img-responsive(inline-block);
+}
+
+// Perfect circle
+.img-circle {
+  border-radius: 50%; // set radius in percents
+}
index 5d4652ead02ded4cc0d142aa865c8a7adbc0b196..5217539a3956d5ad0102cd3051fd346dc213f3b4 100644 (file)
 // http://getbootstrap.com/getting-started/#third-box-sizing
 // Credit: Jon Neal & CSS-Tricks
 // http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
+
 html {
   box-sizing: border-box;
 }
+
 *,
 *:before,
 *:after {
@@ -40,7 +42,7 @@ html {
 @viewport           { width: device-width; }
 
 
-// Body reset
+// Reset HTML, body, and more
 
 html {
   font-size: $font-size-root;
@@ -55,7 +57,6 @@ body {
   background-color: $body-bg;
 }
 
-// Reset fonts for relevant elements
 input,
 button,
 select,
@@ -89,45 +90,6 @@ img {
   vertical-align: middle;
 }
 
-// Responsive images (ensure images don't scale beyond their parents)
-.img-responsive {
-  @include img-responsive();
-}
-
-// Rounded corners
-.img-rounded {
-  @include border-radius($border-radius-lg);
-}
-
-// Image thumbnails
-.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;
-  @include box-shadow(0 1px 2px rgba(0,0,0,.075));
-
-  // Keep them at most 100% wide
-  @include img-responsive(inline-block);
-}
-
-// Perfect circle
-.img-circle {
-  border-radius: 50%; // set radius in percents
-}
-
-
-// Horizontal rules
-
-hr {
-  margin-top: $spacer;
-  margin-bottom: $spacer;
-  border: 0;
-  border-top: .0625rem solid $hr-border;
-}
-
 
 // iOS "clickable elements" fix for role="button"
 //
index 5bbbf5873e2f2f5302558aef1b2b05a03973b60c..dbd30e4f2bda8ca092602dccfc87833b03f641bd 100644 (file)
@@ -65,6 +65,17 @@ p {
 }
 
 
+// Horizontal rules
+// -------------------------
+
+hr {
+  margin-top: $spacer;
+  margin-bottom: $spacer;
+  border: 0;
+  border-top: .0625rem solid $hr-border;
+}
+
+
 // Emphasis & misc
 // -------------------------
 
index b19aa2dda20b94154da2f2326a095f7a2bc4a126..4cd94b97e9702390acca9785539d780fc81913ed 100644 (file)
@@ -9,6 +9,7 @@
 // Core CSS
 @import "scaffolding";
 @import "type";
+@import "images";
 @import "code";
 @import "grid";
 @import "tables";