123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- //
- // Page Header
- // --------------------------------------------------
- // Generic spacing and stuff
- //
- //##
- .page-header {
- margin-top: @line-height-computed * -1;
- h1 {
- font-size: @font-size-base * 2.3;
- }
- }
- // Breadcrumb
- //
- //##
- .page-header {
- &>.container {
- .breadcrumb {
- margin-bottom: (@line-height-computed * @headings-line-height) * -1;
- color: @breadcrumb-color;
- font-size: @font-size-small;
- &>li {
- + li:before {
- /* Tinysh hack to remove BS3's style */
- display: none;
- }
- a:link, a:visited {
- color: @breadcrumb-color;
- }
- a:hover, a:active {
- color: @breadcrumb-active-color;
- text-decoration: none;
- }
- span {
- margin: 0px 4px 0px 6px;
- }
- }
- }
- }
- }
- // Actions
- //
- //##
- .page-header {
- &>.container {
- .page-actions {
- float: right;
- margin-top: (@line-height-computed * @headings-line-height) * -1 - (@line-height-computed * 1.5) + @padding-base-vertical - 1;
- .dropdown-menu {
- left: auto;
- right: 0px;
- &:after {
- left: auto;
- right: 12px;
- }
- }
- }
- }
- }
- /* Small displays */
- @media (max-width: @screen-sm-min) {
- .page-header {
- &>.container {
- .page-actions {
- clear: both;
- float: none;
- margin-top: @line-height-computed;
- }
- }
- }
- }
- // Details
- //
- //##
- .page-header {
- &>.container {
- .page-details {
- display: block;
- clear: both;
- margin-bottom: 0;
- color: @text-muted;
- a:link, a:visited {
- color: @text-muted;
- }
- a:active, a:hover {
- color: @text-color;
- text-decoration: none;
- }
- }
- }
- }
- /* Small displays */
- @media (max-width: @screen-sm-min) {
- .page-header {
- &>.container {
- .page-details {
- margin-top: @line-height-computed;
- }
- }
- }
- }
- // Pills and Tabs
- //
- //##
- .page-pills {
- border-bottom: 1px solid @page-header-border-color;
- margin: @line-height-computed * -1 0px @line-height-computed;
- padding: (@line-height-computed / 2) 0px;
- .nav-pills {
- margin: 0px;
- }
- }
- .page-tabs {
- border-bottom: 2px solid @page-header-border-color;
- margin: @line-height-computed * -1 0px @line-height-computed;
- padding: 0px;
- .nav-tabs {
- margin: 0px;
- margin-bottom: -2px;
- }
- }
|