30 lines
726 B
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;
|
||
|
}
|