You are here

acquia_lift.help.css in Acquia Lift Connector 7.2

Same filename and directory in other branches
  1. 7 css/acquia_lift.help.css

Style elements that have tooltip information available.

File

css/acquia_lift.help.css
View source
  1. /**
  2. * @file
  3. * Style elements that have tooltip information available.
  4. */
  5. .acquia-lift-help {
  6. position: relative;
  7. top: -.16em;
  8. display: inline-block;
  9. width: 1.2em;
  10. height: 1.2em;
  11. margin-left: .5em;
  12. font-size: .88em;
  13. font-weight: normal;
  14. line-height: 1.2em;
  15. text-align: center;
  16. border-radius: 50%;
  17. color: #fff;
  18. background-color: #47aade;
  19. cursor: pointer;
  20. }
  21. html[dir="rtl"] .acquia-lift-help {
  22. margin-right: .4em;
  23. margin-left: auto;
  24. }
  25. .acquia-lift-help:before {
  26. content: "?";
  27. }