File diff 81062ec426ce → ecd9ba4a37ca
bootstrap-3.0.0/less/utilities.less
Show inline comments
 
new file 100644
 
//
 
// Utility classes
 
// --------------------------------------------------
 

	
 

	
 
// Floats
 
// -------------------------
 

	
 
.clearfix {
 
  .clearfix();
 
}
 
.pull-right {
 
  float: right !important;
 
}
 
.pull-left {
 
  float: left !important;
 
}
 

	
 

	
 
// Toggling content
 
// -------------------------
 

	
 
.hide {
 
  display: none !important;
 
}
 
.show {
 
  display: block !important;
 
}
 
.invisible {
 
  visibility: hidden;
 
}
 
.text-hide {
 
  .hide-text();
 
}
 

	
 

	
 
// For Affix plugin
 
// -------------------------
 

	
 
.affix {
 
  position: fixed;
 
}