diff --git a/css/paragraphs.widget.css b/css/paragraphs.widget.css
index 3615d45..4b291cf 100644
--- a/css/paragraphs.widget.css
+++ b/css/paragraphs.widget.css
@@ -182,10 +182,6 @@
   padding-right: 0;
 }
 
-.js .field--widget-paragraphs .dropbutton-widget {
-  position: static;
-}
-
 .js .field--widget-paragraphs .field-multiple-table {
   margin-bottom: 10px;
 }
diff --git a/css/paragraphs.widget.scss b/css/paragraphs.widget.scss
index 0aac231..9d4f99d 100644
--- a/css/paragraphs.widget.scss
+++ b/css/paragraphs.widget.scss
@@ -108,11 +108,6 @@
       padding-right: 0;
     }
 
-    // Reset some CSS that are coming from core.
-    .dropbutton-widget {
-      position: static;
-    }
-
     .field-multiple-table {
       margin-bottom: 10px;
     }
diff --git a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
index 2312d14..6865030 100644
--- a/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
+++ b/src/Plugin/Field/FieldWidget/InlineParagraphsWidget.php
@@ -415,7 +415,7 @@ class InlineParagraphsWidget extends WidgetBase {
               'effect' => 'fade',
             ],
             '#access' => $button_access,
-            '#prefix' => '<li class="remove">',
+            '#prefix' => '<li class="remove dropbutton__item">',
             '#suffix' => '</li>',
             '#paragraphs_mode' => 'remove',
           ];
@@ -439,7 +439,7 @@ class InlineParagraphsWidget extends WidgetBase {
                 'effect' => 'fade',
               ),
               '#access' => $paragraphs_entity->access('update'),
-              '#prefix' => '<li class="collapse">',
+              '#prefix' => '<li class="collapse dropbutton__item">',
               '#suffix' => '</li>',
               '#paragraphs_mode' => 'collapsed',
               '#paragraphs_show_warning' => TRUE,
@@ -482,7 +482,7 @@ class InlineParagraphsWidget extends WidgetBase {
               'effect' => 'fade',
             ),
             '#access' => $paragraphs_entity->access('update'),
-            '#prefix' => '<li class="edit">',
+            '#prefix' => '<li class="edit dropbutton__item">',
             '#suffix' => '</li>',
             '#paragraphs_mode' => 'edit',
           );
@@ -542,7 +542,7 @@ class InlineParagraphsWidget extends WidgetBase {
               'wrapper' => $widget_state['ajax_wrapper_id'],
               'effect' => 'fade',
             ],
-            '#prefix' => '<li class="confirm-remove">',
+            '#prefix' => '<li class="confirm-remove dropbutton__item">',
             '#suffix' => '</li>',
             '#paragraphs_mode' => 'removed',
           ];
@@ -560,7 +560,7 @@ class InlineParagraphsWidget extends WidgetBase {
               'wrapper' => $widget_state['ajax_wrapper_id'],
               'effect' => 'fade',
             ],
-            '#prefix' => '<li class="restore">',
+            '#prefix' => '<li class="restore dropbutton__item">',
             '#suffix' => '</li>',
             '#paragraphs_mode' => 'edit',
           ];
@@ -580,7 +580,7 @@ class InlineParagraphsWidget extends WidgetBase {
             if ($show_links > 1) {
               $element['top']['links']['#theme_wrappers'] = array('dropbutton_wrapper', 'paragraphs_dropbutton_wrapper');
               $element['top']['links']['prefix'] = array(
-                '#markup' => '<ul class="dropbutton">',
+                '#markup' => '<ul class="dropbutton dropbutton--multiple">',
                 '#weight' => -999,
               );
               $element['top']['links']['suffix'] = array(
@@ -1036,7 +1036,7 @@ class InlineParagraphsWidget extends WidgetBase {
       $drop_button = TRUE;
       $add_more_elements['#theme_wrappers'] = ['dropbutton_wrapper'];
       $add_more_elements['prefix'] = [
-        '#markup' => '<ul class="dropbutton">',
+        '#markup' => '<ul class="dropbutton dropbutton--multiple">',
         '#weight' => -999,
       ];
       $add_more_elements['suffix'] = [
@@ -1063,7 +1063,7 @@ class InlineParagraphsWidget extends WidgetBase {
       ];
 
       if ($drop_button) {
-        $add_more_elements['add_more_button_' . $machine_name]['#prefix'] = '<li>';
+        $add_more_elements['add_more_button_' . $machine_name]['#prefix'] = '<li class="dropbutton__item">';
         $add_more_elements['add_more_button_' . $machine_name]['#suffix'] = '</li>';
       }
     }
