Open Justinabes007 opened 2 weeks ago
The changes in this pull request encompass modifications to several configuration, metadata, and utility files within the project. Key updates include the introduction of new files such as .nvmrc
, .stylelintrc.json
, and theme-utils.mjs
, alongside alterations to existing files like .gitignore
, composer.json
, and package.json
. Notably, the PHP CodeSniffer configuration has been refined, and the theme's metadata has been updated to reflect new version requirements. CSS adjustments enhance the layout and responsiveness of the theme, while the addition of scripts in composer.json
and package.json
supports improved development practices.
File Path | Change Summary |
---|---|
.gitignore | Removed several entries; added *.DS_Store and .vscode . |
.nvmrc | New file created to specify Node.js version. |
.phpcs.xml.dist | Updated ruleset name and description; added new rules and exclude patterns. |
.stylelintrc.json | New configuration file created extending stylelint-config-recommended . |
assets/css/blocks/loginout.css | Added box-sizing: border-box; to input elements in the login form. |
composer.json | Updated package name, added keywords, modified require-dev , and added scripts for linting. |
lsx-design.code-workspace | New file created for workspace configuration. |
package.json | Updated version, added private field, modified repository URL, and expanded keywords. |
readme.txt | Updated WordPress and PHP version requirements. |
style.css | Updated theme metadata and refined CSS rules for better layout and responsiveness. |
theme-utils.mjs | New utility file created with commands for escaping patterns and validating themes. |
🐰 In a world of code, so bright and new,
Changes abound, with a hop and a chew.
From.gitignore
to styles that gleam,
We dance through the files, a developer's dream.
With scripts for the lint and a version so fine,
Let's celebrate progress, it's coding time! 🎉
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This PR addresses issue #212 by applying
box-sizing: border-box;
to the login form inputs. This change ensures that padding and borders are included within the element's total width and height, preventing the inputs from overflowing the form container.Changes Made:
Updated the CSS for form#loginform input to include
box-sizing: border-box;
.Testing:
Verified that the login form inputs are properly contained within the form container on various browsers and screen sizes.
By implementing this fix, the login form's appearance will be consistent and visually aligned, enhancing the user experience.
Summary by CodeRabbit
New Features
Improvements
Bug Fixes
.DS_Store
files for better project cleanliness.Documentation