0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00
wagtail/client/scss/layouts/_focal-point-chooser.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
383 B
SCSS
Raw Normal View History

.focal-point-chooser {
position: relative;
margin-bottom: 20px;
.current-focal-point-indicator {
@include transition(opacity 0.2s ease);
box-shadow: 1px 1px 10px 0 $color-black;
position: absolute;
2017-03-23 07:52:44 +01:00
border: 3px solid $color-teal;
opacity: 0.7;
&.hidden {
display: none;
}
}
&:hover .current-focal-point-indicator {
opacity: 0;
}
}