123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // Misc utils
- // --------------------------------------------------
- // Avatar with "edit" button
- .editable-avatar {
- background: none;
- border-radius: @border-radius-base;
- margin: 0px;
- padding: 0px;
- position: relative;
- overflow: hidden;
- .help {
- background: fadeOut(#000, 60%);
- border-radius: 0px;
- display: block;
- margin: 0px;
- padding: 4px 0px;
- width: 100%;
- position: absolute;
- bottom: 0px;
- color: #fff;
- font-size: @font-size-small;
- text-shadow: 1px 1px 0px #000;
- }
- &:hover, &:focus {
- .help {
- background: fadeOut(#000, 30%);
- }
- }
- }
|