You are here

acquia_lift.help.css in Acquia Lift Connector 7

Same filename and directory in other branches
  1. 7.2 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. line-height: 1.2em;
  14. text-align: center;
  15. border-radius: 50%;
  16. color: #fff;
  17. background-color: #47aade;
  18. cursor: pointer;
  19. }
  20. html[dir="rtl"] .acquia-lift-help {
  21. margin-right: .4em;
  22. margin-left: auto;
  23. }
  24. .acquia-lift-help:before {
  25. content: "?";
  26. }