header.less 767 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // Page Header
  3. // --------------------------------------------------
  4. // Generic spacing and stuff
  5. //
  6. //##
  7. .page-header {
  8. border-bottom-width: 1px;
  9. margin: 0px;
  10. margin-bottom: @line-height-computed;
  11. padding: @line-height-computed 0px;
  12. h1 {
  13. margin: 0px;
  14. padding: 0px;
  15. overflow: visible;
  16. font-size: @font-size-large * 1.5;
  17. .main, .sub {
  18. float: left;
  19. }
  20. .main {
  21. a {
  22. color: @text-color;
  23. }
  24. }
  25. .sub {
  26. margin-left: @line-height-computed / 2;
  27. color: lighten(@text-color, 25%);
  28. }
  29. }
  30. .page-actions {
  31. float: right;
  32. margin: -4px 0px;
  33. .dropdown-menu {
  34. left: auto;
  35. right: 0px;
  36. &:after {
  37. left: auto;
  38. right: 12px;
  39. }
  40. }
  41. }
  42. }