public.scss 779 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #body-public {
  2. .header-right {
  3. #header-primary-action a {
  4. color: $color-primary-text;
  5. }
  6. .menutoggle,
  7. #header-primary-action[class^='icon-'] {
  8. padding: 14px;
  9. padding-right: 40px;
  10. background-position: right 15px center;
  11. color: $color-primary-text;
  12. cursor: pointer;
  13. }
  14. #header-secondary-action {
  15. margin-right: 13px;
  16. ul li {
  17. min-width: 270px;
  18. }
  19. #save-external-share {
  20. form {
  21. display: flex;
  22. margin: 0;
  23. }
  24. .hidden {
  25. display: none;
  26. }
  27. #save-button-confirm {
  28. flex-grow: 0;
  29. }
  30. }
  31. }
  32. }
  33. #content {
  34. height: initial;
  35. min-height: calc(100vh - 160px);
  36. }
  37. /* force layout to make sure the content element's height matches its contents' height */
  38. .ie #content {
  39. display: inline-block;
  40. }
  41. }