aboutsummaryrefslogtreecommitdiffstats
path: root/app/bower_components/bootstrap/less/media.less
diff options
context:
space:
mode:
authorEran (ev672n), Vosk <ev672n@att.com>2018-10-29 18:38:10 +0200
committerEran (ev672n), Vosk <ev672n@att.com>2018-10-29 18:38:10 +0200
commitbb60d2fc7c06ec661e4c66ac8778e1f2070103cd (patch)
tree2497848e3667f0ec99b2bea61e129c52dd37db60 /app/bower_components/bootstrap/less/media.less
parentbdc15ad66739869abef7413e5da40191875781d1 (diff)
Sync the code between repositories Change-Id: Ic431c58c68716b6d401954fb854a183e0d222f57 Issue-ID: SDC-1874 Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
Diffstat (limited to 'app/bower_components/bootstrap/less/media.less')
-rw-r--r--app/bower_components/bootstrap/less/media.less61
1 files changed, 61 insertions, 0 deletions
diff --git a/app/bower_components/bootstrap/less/media.less b/app/bower_components/bootstrap/less/media.less
new file mode 100644
index 0000000..a6bf781
--- /dev/null
+++ b/app/bower_components/bootstrap/less/media.less
@@ -0,0 +1,61 @@
+.media {
+ // Proper spacing between instances of .media
+ margin-top: 15px;
+
+ &:first-child {
+ margin-top: 0;
+ }
+}
+
+.media,
+.media-body {
+ zoom: 1;
+ overflow: hidden;
+}
+
+.media-body {
+ width: 10000px;
+}
+
+.media-object {
+ display: block;
+}
+
+.media-right,
+.media > .pull-right {
+ padding-left: 10px;
+}
+
+.media-left,
+.media > .pull-left {
+ padding-right: 10px;
+}
+
+.media-left,
+.media-right,
+.media-body {
+ display: table-cell;
+ vertical-align: top;
+}
+
+.media-middle {
+ vertical-align: middle;
+}
+
+.media-bottom {
+ vertical-align: bottom;
+}
+
+// Reset margins on headings for tighter default spacing
+.media-heading {
+ margin-top: 0;
+ margin-bottom: 5px;
+}
+
+// Media list variation
+//
+// Undo default ul/ol styles
+.media-list {
+ padding-left: 0;
+ list-style: none;
+}