56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
/* Block listing page */
|
|
.region-title__action {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin-left: 20px; /* LTR */
|
|
}
|
|
[dir="rtl"] .region-title__action {
|
|
margin-left: 0;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
/* Block demo mode */
|
|
.block-region {
|
|
background-color: #f9f9f9;
|
|
margin: 20px 0;
|
|
padding: 10px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
border: dashed 1px #a4a4a4;
|
|
}
|
|
a.block-demo-backlink,
|
|
a.block-demo-backlink:link,
|
|
a.block-demo-backlink:visited {
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
line-height: 20px;
|
|
left: 0;
|
|
bottom: 0;
|
|
margin: 20px;
|
|
padding: 5px 10px;
|
|
position: fixed;
|
|
z-index: 499;
|
|
border: 1px solid #b8b8b8;
|
|
transition: all 0.2s;
|
|
text-decoration: none;
|
|
}
|
|
a.block-demo-backlink:hover,
|
|
a.block-demo-backlink:focus {
|
|
background-color: white;
|
|
text-decoration: none;
|
|
border-color: #0678be;
|
|
color: #0678be;
|
|
}
|
|
|
|
/* Configure block form - Block description */
|
|
.block-form .form-item-settings-admin-label label {
|
|
display: inline;
|
|
}
|
|
.block-form .form-item-settings-admin-label label:after {
|
|
content: ':';
|
|
}
|