-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #509 from brainstormforce/release-candidate
Build: Release PR Chore v1.6.10
- Loading branch information
Showing
26 changed files
with
7,449 additions
and
33,197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":1,"defects":{"TestDismissNotice::test_user_can_dismiss_notice":4,"TestNoticeVisibleForCorrectRole::test_user_can_see_notice":3,"TestNoticeVisibleForCorrectRole::test_user_can_see_notice_without_capability":6},"times":{"TestDismissNotice::test_user_can_dismiss_notice":0.035999999999999997,"TestNoticeVisibleForCorrectRole::test_user_can_see_notice":0.070999999999999994,"TestNoticeVisibleForCorrectRole::test_user_can_see_notice_without_capability":0.071999999999999995}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,23 +2,32 @@ | |
"name": "brainstormforce/astra-notices", | ||
"type": "wordpress-plugin", | ||
"description": "Easily create admin notices", | ||
"version": "1.1.8", | ||
"license": "GPL v3", | ||
"license": "GPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Brainstorm Force", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"composer/installers": "^1.11" | ||
"composer/installers": "^2.0" | ||
}, | ||
"require-dev": { | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", | ||
"phpcompatibility/phpcompatibility-wp": "^2.1", | ||
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5", | ||
"phpunit/phpunit": "^7", | ||
"wp-cli/dist-archive-command": "^2.0", | ||
"wp-coding-standards/wpcs": "^2.3" | ||
"wp-coding-standards/wpcs": "^2.3", | ||
"wp-phpunit/wp-phpunit": "^5", | ||
"roots/wordpress": "^5.9", | ||
"yoast/phpunit-polyfills": "^1.0" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"roots/wordpress-core-installer": true | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.astra-review-notice-container { | ||
display: flex; | ||
align-items: center; | ||
padding-top: 10px; | ||
} | ||
|
||
.astra-review-notice-container .dashicons { | ||
font-size: 1.4em; | ||
padding-left: 10px; | ||
} | ||
|
||
.astra-review-notice-container a { | ||
padding-left: 5px; | ||
text-decoration: none; | ||
} | ||
|
||
.astra-review-notice-container .dashicons:first-child { | ||
padding-left: 0; | ||
} | ||
|
||
.astra-notice-container .notice-image img { | ||
max-width: 90px; | ||
} | ||
|
||
.astra-notice-container .notice-content .notice-heading { | ||
padding-bottom: 5px; | ||
} | ||
|
||
.astra-notice-container .notice-content { | ||
margin-left: 15px; | ||
} | ||
|
||
.astra-notice-container { | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
display: flex; | ||
justify-content: left; | ||
align-items: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.