misc.less 618 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // Misc utils
  3. // --------------------------------------------------
  4. // Avatar with "edit" button
  5. .editable-avatar {
  6. background: none;
  7. border-radius: @border-radius-base;
  8. margin: 0px;
  9. padding: 0px;
  10. position: relative;
  11. overflow: hidden;
  12. .help {
  13. background: fadeOut(#000, 60%);
  14. border-radius: 0px;
  15. display: block;
  16. margin: 0px;
  17. padding: 4px 0px;
  18. width: 100%;
  19. position: absolute;
  20. bottom: 0px;
  21. color: #fff;
  22. font-size: @font-size-small;
  23. text-shadow: 1px 1px 0px #000;
  24. }
  25. &:hover, &:focus {
  26. .help {
  27. background: fadeOut(#000, 30%);
  28. }
  29. }
  30. }