1/*Customization of the bootstrap class*/ 2 3/* The fixed top bar */ 4body { 5 padding-top: 6rem; 6} 7 8 9 10/* To center the logo */ 11.navbar-header > a:nth-of-type(1) { 12 padding-top: 15px; 13} 14 15 16/* Top Fix Bar": Form element */ 17#dw__search { 18 margin-right: unset; /* to get rid of the horizontal lift in a mobile view */ 19 margin-left: unset; /* to get rid of the horizontal lift in a mobile view */ 20 border-color: unset; /* No Border please */ 21 border-top: unset; /* No Border please */ 22 border-bottom:unset; /* No Border please */ 23} 24 25 26/* Affix for the sidebar */ 27.bs-docs-sidebar.affix { 28 position: fixed; 29 top: 20px; 30 width: 263px; 31} 32 33ol.breadcrumb { 34 /*This will clip the left side in mobile device 35 in order to have a fix height on the top bar*/ 36 overflow: hidden; /* Not working */ 37 height: 23px; /* The fix height does the trick as all element goes to the second line */ 38 background-color: unset; 39 color: #9d9d9d; 40 display:flex; 41 flex-wrap: wrap; 42 font-size: 0.75rem; 43} 44 45ol.breadcrumb li a { 46 color: #9d9d9d; 47} 48 49/*!* The page tool drowpdown menu must go the the left because*/ 50/*it's completely on the right*!*/ 51#navBarPageTool { 52 right:0; 53 left:unset; 54} 55 56 57/*!* The nav bar is not 100% basis then the item are not taking the whole*/ 58/** width and the dropdown are not going to the right*/ 59/**!*/ 60/*#navBarCollapse {*/ 61 /*flex-basis: 100%;*/ 62/*}*/ 63 64 65/*@media (max-width: 767px) {*/ 66 67 /*#navBarSearch {*/ 68 /*flex-basis: 100%;*/ 69 /*margin-top: 0.5rem;*/ 70 /*}*/ 71 72/*}*/ 73 74/*#navBarSearch {*/ 75 /*height: 2.5rem*/ 76/*}*/ 77 78/*#navBar {*/ 79 /*display:block; !* Because we have two lines *!*/ 80 /*padding-bottom: 0;*/ 81/*}*/ 82 83#breadCrumbTitle { 84 white-space: pre; 85} 86 87.breadcrumb-item+.breadcrumb-item::before { 88 content: ">"; 89} 90 91#navBarBrand { 92 font-size: 1.20rem; 93 font-weight: bold; 94} 95 96