toolbar-warning.css 690 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @file
  3. * Styling for toolbar warning message.
  4. */
  5. .toolbar-warning {
  6. margin: 0.5em 0;
  7. padding: 0.5em 2em 0.5em 2.3333em;
  8. background: url(../../../../core/misc/icons/e29700/warning.svg) no-repeat center center transparent;
  9. background-size: auto 20px;
  10. text-indent: -1000px;
  11. overflow: hidden;
  12. }
  13. .toolbar-warning:hover {
  14. color: #000;
  15. }
  16. @media only screen and (min-width: 40em) {
  17. .toolbar-warning {
  18. padding-right: 1em;
  19. border-radius: 4px;
  20. border-color: #f4daa6;
  21. background-color: #fdf8ed;
  22. background-position: 0.5em center;
  23. background-size: auto 18px;
  24. text-indent: 0;
  25. text-decoration: none;
  26. font-weight: bold;
  27. color: #000;
  28. }
  29. }