diff --git a/core/modules/block/css/block.admin.css b/core/modules/block/css/block.admin.css
index edee308..d9f32a2 100644
--- a/core/modules/block/css/block.admin.css
+++ b/core/modules/block/css/block.admin.css
@@ -43,13 +43,10 @@ a.block-demo-backlink:hover {
 .block-list-secondary .form-type-search {
   padding: 0 1em;
 }
-#block-placed {
-  background-color: #ffd;
-}
-#edit-settings-admin-label label {
+.block-form .form-item-settings-admin-label label {
   display: inline;
 }
-#edit-settings-admin-label label:after {
+.block-form .form-item-settings-admin-label label:after {
   content: ':';
 }
 
diff --git a/core/modules/block/js/block.admin.js b/core/modules/block/js/block.admin.js
index b8f9682..d301ade 100644
--- a/core/modules/block/js/block.admin.js
+++ b/core/modules/block/js/block.admin.js
@@ -80,7 +80,7 @@
           // Just scrolling the document.body will not work in Firefox. The html
           // element is needed as well.
           $('html, body').animate({
-            scrollTop: $('#block-placed').offset().top - $container.offset().top + $container.scrollTop()
+            scrollTop: $('.js-block-placed').offset().top - $container.offset().top + $container.scrollTop()
           }, 500);
         });
       }
diff --git a/core/modules/block/src/BlockListBuilder.php b/core/modules/block/src/BlockListBuilder.php
index 6521287..ae19286 100644
--- a/core/modules/block/src/BlockListBuilder.php
+++ b/core/modules/block/src/BlockListBuilder.php
@@ -247,9 +247,9 @@ public function buildForm(array $form, FormStateInterface $form_state) {
             ),
           );
           if ($placement && $placement == Html::getClass($entity_id)) {
-            $form['blocks'][$entity_id]['#attributes']['id'] = 'block-placed';
+            $form['blocks'][$entity_id]['#attributes']['class'][] = 'color-warning';
+            $form['blocks'][$entity_id]['#attributes']['class'][] = 'js-block-placed';
           }
-
           $form['blocks'][$entity_id]['info'] = array(
             '#markup' => SafeMarkup::checkPlain($info['label']),
             '#wrapper_attributes' => array(
