Verified Commit ac1a2e09 authored by Lee Rowlands's avatar Lee Rowlands
Browse files

task: #3621198 Change remaining usages of Claro

By: quietone
By: smustgrave
By: gábor hojtsy
By: jurgenhaas
By: catch
parent d0a4652b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ interface DependentPluginInterface {
   *     'config' => ['user.role.anonymous', 'user.role.authenticated'],
   *     'content' => ['node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'],
   *     'module' => ['node', 'user'],
   *     'theme' => ['claro'],
   *     'theme' => ['my_theme'],
   *   ];
   *   @endcode
   *
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
  name: 'ex:install',
  description: 'Installs one or more modules or themes.',
  aliases: ['exin', 'pm:install', 'pm:enable', 'enable', 'en'],
  usages: ['views,views_ui', 'claro']
  usages: ['views,views_ui', 'default_admin']
)]
class ExtensionInstallCommand {

+2 −2
Original line number Diff line number Diff line
@@ -448,7 +448,7 @@ public function fieldSettingsForm(array $form, FormStateInterface $form_state);
   *     'config' => ['user.role.anonymous', 'user.role.authenticated'],
   *     'content' => ['node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'],
   *     'module' => ['node', 'user'],
   *     'theme' => ['claro'],
   *     'theme' => ['my_theme'],
   *   ];
   *   @endcode
   *
@@ -481,7 +481,7 @@ public static function calculateDependencies(FieldDefinitionInterface $field_def
   *     'config' => ['user.role.anonymous', 'user.role.authenticated'],
   *     'content' => ['node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'],
   *     'module' => ['node', 'user'],
   *     'theme' => ['claro'],
   *     'theme' => ['my_theme'],
   *   ];
   *   @endcode
   *
+3 −3
Original line number Diff line number Diff line
@@ -1319,16 +1319,16 @@ function hook_theme($existing, $type, $theme, $path): array {
 * @code
 * $theme_registry['entity_add_list'] = [
 *   'template' => 'entity-add-list',
 *   'path' => 'core/themes/claro/templates',
 *   'path' => 'core/themes/my_theme/templates',
 *   'type' => 'theme_engine',
 *   'theme path' => 'core/themes/claro',
 *   'theme path' => 'core/themes/my_theme',
 *   'variables' => [
 *     'bundles' => NULL,
 *   ],
 *   'preprocess functions' => [
 *     1 => 'template_preprocess_entity_add_list',
 *     2 => 'contextual_preprocess',
 *     3 => 'claro_preprocess_entity_add_list',
 *     3 => 'my_theme_preprocess_entity_add_list',
 *   ],
 * ];
 * @endcode
+0 −8
Original line number Diff line number Diff line
@@ -178,12 +178,4 @@
      }
    }
  }

  /*
   * Claro injects a "Loading" autocomplete message that affects the positioning
   * of the ui-autocomplete dropdown. We remove this to normalize the markup.
   */
  & .claro-autocomplete__message {
    display: none;
  }
}
Loading