diff options
| author | Mark Otto <[email protected]> | 2013-12-11 10:48:51 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-11 10:48:51 -0800 |
| commit | bdd0890c0f076f6f3c008de2884e53d581f142d1 (patch) | |
| tree | 66de38844d187dd2e14e2c59c9e95ece42915d10 | |
| parent | 5ec2b4b25558b39092a74aac4f7fdff8b75095ac (diff) | |
| parent | 2547f1e20f94c592b4125de9006cc45b560af51e (diff) | |
| download | bootstrap-bdd0890c0f076f6f3c008de2884e53d581f142d1.tar.xz bootstrap-bdd0890c0f076f6f3c008de2884e53d581f142d1.zip | |
Merge pull request #11841 from ZDroid/breadcrumbs
Use variables for breadcrumb padding
| -rw-r--r-- | less/breadcrumbs.less | 2 | ||||
| -rw-r--r-- | less/variables.less | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/less/breadcrumbs.less b/less/breadcrumbs.less index 60b33ea72..5917778f4 100644 --- a/less/breadcrumbs.less +++ b/less/breadcrumbs.less @@ -4,7 +4,7 @@ .breadcrumb { - padding: 8px 15px; + padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; margin-bottom: @line-height-computed; list-style: none; background-color: @breadcrumb-bg; diff --git a/less/variables.less b/less/variables.less index b9b0d4f4e..8122161fd 100644 --- a/less/variables.less +++ b/less/variables.less @@ -568,10 +568,12 @@ // Breadcrumbs // ------------------------- -@breadcrumb-bg: #f5f5f5; -@breadcrumb-color: #ccc; -@breadcrumb-active-color: @gray-light; -@breadcrumb-separator: "/"; +@breadcrumb-padding-vertical: 8px; +@breadcrumb-padding-horizontal: 15px; +@breadcrumb-bg: #f5f5f5; +@breadcrumb-color: #ccc; +@breadcrumb-active-color: @gray-light; +@breadcrumb-separator: "/"; // Carousel |
