From aa955c22ae18d55667006acd222dbc79e39a8b25 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Tue, 21 Aug 2018 16:31:05 +0530 Subject: Initial commit --- .../bootstrap/less/breadcrumbs.less | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 static/website/bootstrap-css/bower_components/bootstrap/less/breadcrumbs.less (limited to 'static/website/bootstrap-css/bower_components/bootstrap/less/breadcrumbs.less') diff --git a/static/website/bootstrap-css/bower_components/bootstrap/less/breadcrumbs.less b/static/website/bootstrap-css/bower_components/bootstrap/less/breadcrumbs.less new file mode 100644 index 0000000..cb01d50 --- /dev/null +++ b/static/website/bootstrap-css/bower_components/bootstrap/less/breadcrumbs.less @@ -0,0 +1,26 @@ +// +// Breadcrumbs +// -------------------------------------------------- + + +.breadcrumb { + padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; + margin-bottom: @line-height-computed; + list-style: none; + background-color: @breadcrumb-bg; + border-radius: @border-radius-base; + + > li { + display: inline-block; + + + li:before { + content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space + padding: 0 5px; + color: @breadcrumb-color; + } + } + + > .active { + color: @breadcrumb-active-color; + } +} -- cgit