This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/core/modules/block_place/css/block-place.css

30 lines
726 B
CSS

/**
* @file
* Styling for block_place module regions and buttons during block placement.
*/
.block-place-region {
outline: 1px dashed rgba(0,0,0,0.5);
box-shadow: 0 0 0 1px rgba(255,255,255,0.7);
margin: 1em 0;
padding: 5px;
text-align: center;
text-shadow: none;
}
.block-place-region a.button {
background: url(../../../misc/icons/bebebe/plus.svg) #ffffff center center / 16px 16px no-repeat;
border: 1px solid #cccccc;
box-sizing: border-box;
font-size: 1rem;
padding: 0;
height: 26px;
width: 26px;
white-space: nowrap;
}
.block-place-region:hover a.button, .block-place-region:focus a.button {
background-image: url(../../../misc/icons/787878/plus.svg);
transition: all 0.25s ease;
}