expand.css 868 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @media screen{
  2. /* Expand / collapse */
  3. table > caption,
  4. .topic > .title,
  5. .sectiontitle:not(.tasklabel),
  6. .wh_term_group > .wh_first_letter {
  7. padding-left: .7em
  8. }
  9. .wh_expand_btn.expanded:before {
  10. content:"p";
  11. }
  12. .wh_expand_btn:before {
  13. content:"q";
  14. font-family: "oXygen WebHelp", serif;
  15. font-style: normal;
  16. font-size: 0.6em;
  17. font-weight: lighter;
  18. display: inline-block;
  19. }
  20. .wh_expand_btn {
  21. cursor: pointer;
  22. position: absolute;
  23. left: .6em;
  24. }
  25. /* WH-1613 */
  26. .permalink{
  27. padding: 0 0.4em;
  28. margin:0 0.5em 0 0.5em;
  29. opacity: 0.35;
  30. transition: opacity .3s;
  31. background: url(../img/link-icon.png) no-repeat;
  32. background-size: contain;
  33. background-position-y: 60%;
  34. cursor:pointer
  35. }
  36. /* WH-1613 */
  37. .permalink:hover{
  38. opacity: 1;
  39. cursor:pointer
  40. }
  41. }