diff options
| author | Mark Otto <[email protected]> | 2012-09-04 11:31:48 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-04 11:31:48 -0700 |
| commit | 73ef263d5fe39f1b22158e5945707f5183c78099 (patch) | |
| tree | d6d42dc2c3fe5c97c53aa8de093579e87627b86f | |
| parent | bf590d8c810b1edde93ed3f14cafc6f4a3b70e74 (diff) | |
| download | bootstrap-73ef263d5fe39f1b22158e5945707f5183c78099.tar.xz bootstrap-73ef263d5fe39f1b22158e5945707f5183c78099.zip | |
improve comments in image styles
| -rw-r--r-- | less/scaffolding.less | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/less/scaffolding.less b/less/scaffolding.less index 4c735ba88..7a7496a64 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -32,10 +32,12 @@ a:hover { // Images // ------------------------- +// Rounded corners .img-rounded { .border-radius(6px); } +// Add polaroid-esque trim .img-polaroid { padding: 4px; background-color: #fff; @@ -44,6 +46,7 @@ a:hover { .box-shadow(0 1px 3px rgba(0,0,0,.1)); } +// Perfect circle .img-circle { - .border-radius(500px); + .border-radius(500px); // crank the border-radius so it works with most reasonably sized images } |
