misc.less 619 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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, 30%);
  14. border-radius: 0px;
  15. display: block;
  16. margin: 0px;
  17. padding: 4px 0px;
  18. width: 100%;
  19. .opacity(0.6);
  20. position: absolute;
  21. bottom: 0px;
  22. color: #fff;
  23. font-size: @font-size-small;
  24. text-shadow: 1px 1px 0px #000;
  25. }
  26. &:hover, &:focus {
  27. .help {
  28. .opacity(1);
  29. }
  30. }
  31. }