Fix dropbutton color for IE9
Problem/MotivationIn IE9 the dropbutton (for example used in node save button) is almost unreadable because of the lack of background color. The root problem is that IE9 (and below) does not support...
View ArticleRemove media.css from Bartik, add it's current code directly to the...
Problem/MotivationAs per the Drupal CSS file organisation standards for themes, see here.State rules, including media queries, should be included with the component to which they apply.Therefore we...
View ArticleCreation of entity type user without credential is not working
I have enabled /entity/user REST end point for POST request. I have give anonymous user permission "Access to POST on user entity" I have also enable "visitor" to create an account on my Drupal site....
View ArticleExtract ViewUnitTestBase and ViewTestBase::assertIdenti* methods into a trait
Problem/MotivationBoth ViewUnitTestBase and ViewTestBase has quite a bunch of assertIdenti* methods, this is unnecessary duplication.Proposed resolutionExtract them into a trait, probably take the one...
View ArticleAdd a Drupal Yaml wrapper so we can default to PECL Yaml component if it is...
Updated: Comment #69Problem/MotivationWe should be defaulting to the PECL Yaml component if it is available as opposed to Symfony's. We had originally talked about this way back in the beginning but it...
View ArticleError in Views Filter Nodes based on Current user that have term reference...
Problem/MotivationSteps to reproduce: 1. edit who_s_new view at admin/structure/views/view/who_s_new 2. add relationship "User: Content authored" 3. add filter criteria "Content: Type" After clicking...
View ArticleNo link template "canonical" found for the "file" entity...
If I load a file entity and try to call its link() function ($entity->link()), it results in following exception:Drupal\Core\Entity\Exception\UndefinedLinkTemplateException: No link template...
View ArticleRemoved fields in Views Combined Filter setting lead to Fatal error
Problem/MotivationThe same error exists in D7. This is a port of the patch posted by jhedstrom in the related issue. In the following scenarios this error occurs when viewing the page created with a...
View ArticleInconsistent use of ContextDefinitionInterface in...
Problem/MotivationIn writing unit tests for various parts of Component\Plugin for #2052109: [meta] Expand phpunit tests for \Drupal\Component\Plugin classes, I discovered that...
View ArticleEntity form modes forms and UI links are using different ways of providing...
Problem/MotivationEntity form modes forms are accessible once the entity form modes exist, but I could not see any links/tab in my entity form display admin UI until I created "magic" permission...
View ArticleMove bulk form data definition to their EntityViewsData
Problem/MotivationBulk form is being added with hook_views_data_alter when it's added to the table of the entity defining it, i.e./** * Implements hook_views_data_alter(). */function...
View Article[policy, no patch] Decide on Composer Package Names
Problem/MotivationDrupal does not have a standard Composer package name policy (that I am aware of). Because of this, we could encounter a scenario in which Composer package names conflict (we kind of...
View ArticleDocument service definition tags
Problem/MotivationRight now there's no way for people to discover what the tags applied to services mean, or what tags exist, aside from going to https://api.drupal.org/api/drupal/services/8 and...
View ArticleMenu block - menu level and depth are not saved
Problem/MotivationTrying to change the "Maximum number of menu levels to display" does not work anymore, it's always 1 no matter what I try to set this to.To clarify:1) I configure a menu block (in...
View ArticleDe-fork jQuery Joyride and update to latest stable release
In preparing for test #1921136: Previous button for tour tips I needed to check what version of joyride we use right now.The version 2.0.3 is not carved in stone as noted in...
View ArticleConvert "Manage (form) display" forms to be the official entity...
What the Field UI does currently is still modeled after the D7 architecture: - define routes for "Manage display [view_mode]" pages, - use access callbacks to only show those where the view modes uses...
View Article"Promoted to front page" should default to Un-Checked
Problem/MotivationWhen creating a new content type, the default value for the "Promoted to front page" checkbox should be FALSE.Beta phase evaluationReference:...
View ArticlePath cache won't always contain the canonical alias, depending on order...
Some contrib modules attempt to call drupal_get_path_alias() in hook_boot. I don't know if this is supposed to be "supported" but it can sometimes have the effect of polluting the path cache if the...
View ArticleAll route enhancers are run on every request
Splitting this out from #2368275: EntityRouteEnhancer and ContentFormControllerSubscriber implicitly depend on too many services which will reduce the dependency chain of the entity route enhancer....
View ArticleRemove FormBuilder coupling to moduleHandler/themeManager
Problem/MotivationThe form system is currently closely coupled to the Module and Theme system via alters. That's undesireable as it makes it harder to test the core of the form system. It also inhibits...
View Article