Commit 2ff3869e650f58b530838173b500278ffd9a29c2
1 parent
2f3faa63
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
add hover effect
Showing
2 changed files
with
11 additions
and
2 deletions
Show diff stats
app/views/box_organizer/index.html.erb
public/designs/themes/noosfero/block_store.css
| ... | ... | @@ -43,10 +43,16 @@ r, |
| 43 | 43 | vertical-align: top; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | +#block-types .block-type:hover { | |
| 47 | + box-shadow: 0px 0px 0px 2px #FFF, | |
| 48 | + 0px 0px 0px 2px #FFF, | |
| 49 | + 0px 0px 10px rgba(0,0,0,0.6); | |
| 50 | + outline: none; | |
| 51 | +} | |
| 46 | 52 | |
| 47 | 53 | #block-types .button-bar { |
| 48 | 54 | margin: 0; |
| 49 | - display: inline; | |
| 55 | + display: none; | |
| 50 | 56 | position: absolute; |
| 51 | 57 | right: 5%; |
| 52 | 58 | border: 0px solid #AAA; |
| ... | ... | @@ -54,6 +60,9 @@ r, |
| 54 | 60 | padding: 0px; |
| 55 | 61 | } |
| 56 | 62 | |
| 63 | +#block-types .block-type:hover .button-bar { | |
| 64 | + display: inline; | |
| 65 | +} | |
| 57 | 66 | |
| 58 | 67 | #block-info-container { |
| 59 | 68 | width: 770px; | ... | ... |