diff options
| author | Mark Otto <[email protected]> | 2011-10-26 23:11:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-26 23:11:56 -0700 |
| commit | 648c4689273647c321dd6e3979d910282e9a9339 (patch) | |
| tree | 4ee67a99923ada3ce0d762fd867b984379e1f029 /lib | |
| parent | e616026d678239104b93cafca9a77ea74a4c0ddf (diff) | |
| download | bootstrap-648c4689273647c321dd6e3979d910282e9a9339.tar.xz bootstrap-648c4689273647c321dd6e3979d910282e9a9339.zip | |
breaking down the main page into subpages for easier, more comprehensive documentation
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mixins.less | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/mixins.less b/lib/mixins.less index 5b05654d5..6d034cbcc 100644 --- a/lib/mixins.less +++ b/lib/mixins.less @@ -162,12 +162,19 @@ } // Background clipping +// Heads up: FF 3.6 and under need padding instead of padding-box .background-clip(@clip) { -webkit-background-clip: @clip; -moz-background-clip: @clip; background-clip: @clip; } +// Resize anything +.resizable(@direction: both) { + resize: @direction; // Options: horizontal, vertical, both + overflow: auto; // Safari fix +} + // CSS3 Content Columns .content-columns(@columnCount, @columnGap: 20px) { -webkit-column-count: @columnCount; |
