Migrate responsive display utilities to their new names
What does this MR do?
Integration branch for gitlab-ui!1937 (merged).
gitlab-ui!1937 (merged) renames display
responsive utilities to match GitLab UI's naming conventions. This integration MR applies those changes by migrating all of the affected utilities to their new name.
-
gl-display-sm-none
->gl-sm-display-none
-
gl-display-md-none
->gl-md-display-none
-
gl-display-lg-none
->gl-lg-display-none
-
gl-display-sm-flex
->gl-sm-display-flex
-
gl-display-md-flex
->gl-md-display-flex
-
gl-display-lg-flex
->gl-lg-display-flex
-
gl-display-sm-inline-flex
->gl-sm-display-inline-flex
-
gl-display-lg-inline-flex
->gl-lg-display-inline-flex
-
gl-display-sm-block
->gl-sm-display-block
-
gl-display-md-block
->gl-md-display-block
-
gl-display-lg-block
->gl-lg-display-block
-
gl-display-lg-inline-block
->gl-lg-display-inline-block
-
gl-display-lg-table-cell
->gl-lg-display-table-cell
The replacements were done by running the following command in the gitlab/
directory:
ack -l "gl-display-(sm|md|lg)" ./app ./ee/app ./spec ./ee/spec | xargs perl -i"" -pe 's/gl-display-(sm|md|lg)-/gl-$1-display-/g'
Screenshots (strongly suggested)
Does this MR meet the acceptance criteria?
Conformity
-
Changelog entry -
Documentation (if required) -
Code review guidelines -
Merge request performance guidelines -
Style guides -
Database guides -
Separation of EE specific content
Availability and Testing
-
Review and add/update tests for this feature/bug. Consider all test levels. See the Test Planning Process. -
Tested in all supported browsers -
Informed Infrastructure department of a default or new setting change, if applicable per definition of done
Security
If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:
-
Label as security and @ mention @gitlab-com/gl-security/appsec
-
The MR includes necessary changes to maintain consistency between UI, API, email, or other methods -
Security reports checked/validated by a reviewer from the AppSec team
Edited by Paul Gascou-Vaillancourt