Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / block / css / block.admin.css
1 /* Block listing page */
2 .region-title__action {
3   display: inline-block;
4   margin-left: 1em; /* LTR */
5 }
6 [dir="rtl"] .region-title__action {
7   margin-left: 0;
8   margin-right: 1em;
9 }
10
11 /* Block demo mode */
12 .block-region {
13   background-color: #ff6;
14   margin-top: 4px;
15   margin-bottom: 4px;
16   padding: 3px;
17 }
18 a.block-demo-backlink,
19 a.block-demo-backlink:link,
20 a.block-demo-backlink:visited {
21   background-color: #b4d7f0;
22   border-radius: 0 0 10px 10px;
23   color: #000;
24   font-family: "Lucida Grande", Verdana, sans-serif;
25   font-size: small;
26   line-height: 20px;
27   left: 20px; /* LTR */
28   padding: 5px 10px;
29   position: fixed;
30   z-index: 499;
31 }
32 a.block-demo-backlink:hover {
33   text-decoration: underline;
34 }
35
36 /* Configure block form - Block description */
37 .block-form .form-item-settings-admin-label label {
38   display: inline;
39 }
40 .block-form .form-item-settings-admin-label label:after {
41   content: ':';
42 }
43 .block-disabled:not(:hover) {
44   background: #fcfcfa;
45   opacity: 0.675;
46 }