Issue #2905491 by maxocub, heddn, Gábor Hojtsy: Mark Migrate Drupal UI as stable
parent
9fb88f6c1a
commit
d735a62ecb
|
@ -1,7 +1,7 @@
|
|||
name: 'Migrate Drupal UI'
|
||||
type: module
|
||||
description: 'Provides a user interface for migrating from older Drupal versions.'
|
||||
package: 'Core (Experimental)'
|
||||
package: Migration
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: migrate_drupal_ui.upgrade
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* @file
|
||||
* Styles for the upgrade analysis report tables.
|
||||
*/
|
||||
.upgrade-analysis-report__status-icon:before {
|
||||
content: "";
|
||||
background-size: 16px;
|
||||
background-position: left center;
|
||||
background-repeat: no-repeat;
|
||||
width: 32px;
|
||||
height: 14px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.upgrade-analysis-report__status-icon--warning:before {
|
||||
background-image: url(../../../images/core/icons/e29700/warning.svg);
|
||||
}
|
||||
.upgrade-analysis-report__status-icon--checked:before {
|
||||
background-image: url(../../../images/core/icons/73b355/check.svg);
|
||||
}
|
||||
.upgrade-analysis-report__status-icon--error:before {
|
||||
background-image: url(../../../images/core/icons/e32700/error.svg);
|
||||
}
|
|
@ -144,6 +144,11 @@ libraries-override:
|
|||
theme:
|
||||
css/menu_ui.admin.css: css/menu_ui/menu_ui.admin.css
|
||||
|
||||
migrate_drupal_ui/base:
|
||||
css:
|
||||
component:
|
||||
css/components/upgrade-analysis-report-tables.css: css/migrate_drupal_ui/components/upgrade-analysis-report-tables.css
|
||||
|
||||
node/drupal.node:
|
||||
css:
|
||||
layout:
|
||||
|
|
Loading…
Reference in New Issue