/home/techb158/ileadtechnology.com/public/admin/bower_components/bootstrap/less/mixins
NameSizeModeActions
alerts.less2570644editdlrm
background-variant.less1510644editdlrm
border-radius.less4680644editdlrm
buttons.less14410644editdlrm
center-block.less1200644editdlrm
clearfix.less6050644editdlrm
forms.less26410644editdlrm
gradients.less43880644editdlrm
grid-framework.less27970644editdlrm
grid.less31200644editdlrm
hide-text.less5750644editdlrm
image.less10620644editdlrm
index.php530644editdlrm
labels.less1610644editdlrm
list-group.less5460644editdlrm
nav-divider.less2320644editdlrm
nav-vertical-align.less3640644editdlrm
opacity.less1480644editdlrm
pagination.less4850644editdlrm
panels.less5370644editdlrm
progress-bar.less1910644editdlrm
reset-filter.less2480644editdlrm
reset-text.less4700644editdlrm
resize.less1960644editdlrm
responsive-visibility.less3540644editdlrm
size.less1270644editdlrm
tab-focus.less3320644editdlrm
table-row.less7000644editdlrm
text-emphasis.less1280644editdlrm
text-overflow.less1620644editdlrm
vendor-prefixes.less66530644editdlrm
Edit: /home/techb158/ileadtechnology.com/public/admin/bower_components/bootstrap/less/mixins/image.less (1062B)
// Image Mixins // - Responsive image // - Retina image // Responsive image // // Keep images from scaling beyond the width of their parents. .img-responsive(@display: block) { display: @display; max-width: 100%; // Part 1: Set a maximum relative to the parent height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching } // Retina image // // Short retina mixin for setting background-image and -size. Note that the // spelling of `min--moz-device-pixel-ratio` is intentional. .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { background-image: url("@{file-1x}"); @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { background-image: url("@{file-2x}"); background-size: @width-1x @height-1x; } }