diff --git a/includes/admin.inc b/includes/admin.inc
index e6dac42..96b10cc 100644
--- a/includes/admin.inc
+++ b/includes/admin.inc
@@ -1172,7 +1172,7 @@ function views_ui_render_display_top($view, $display_id) {
 
   // Extra actions for the display
   $element['extra_actions'] = array(
-    '#theme' => 'links__ctools_dropbutton',
+    '#theme' => 'dropbutton__node_operations',
     '#attributes' => array(
         'id' => 'views-display-extra-actions',
         'class' => array(
@@ -2184,7 +2184,7 @@ function views_ui_edit_form_get_bucket($type, $view, $display) {
   }
 
   // Render the array of links
-  $build['#actions'] = theme('links__ctools_dropbutton',
+  $build['#actions'] = theme('dropbutton__node_operations',
     array(
       'links' => $actions,
       'attributes' => array(
diff --git a/lib/Drupal/views/ViewListController.php b/lib/Drupal/views/ViewListController.php
index c3c7231..17490af 100644
--- a/lib/Drupal/views/ViewListController.php
+++ b/lib/Drupal/views/ViewListController.php
@@ -77,7 +77,7 @@ class ViewListController extends EntityListControllerBase {
    */
   public function getRowData(EntityInterface $view) {
     $operations = $this->buildActionLinks($view);
-    $operations['#theme'] = 'links__ctools_dropbutton';
+    $operations['#theme'] = 'dropbutton__node_operations';
     return array(
       'data' => array(
         'view_name' => theme('views_ui_view_info', array('view' => $view)),
