-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: version based on plugin check issue * change: results wrapper
- Loading branch information
1 parent
2c79aef
commit 8802b47
Showing
10 changed files
with
65 additions
and
47 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<?php return array('dependencies' => array(), 'version' => '677f28795b4f66f7d30f'); | ||
<?php return array('dependencies' => array(), 'version' => '8ba02d3ad6c07bef19ba'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,63 +1,68 @@ | ||
#block-finder-form label { | ||
padding-bottom: 16px; | ||
padding-bottom: 16px; | ||
} | ||
|
||
#block-finder-selector, #post-type-selector { | ||
display: block; | ||
margin-bottom: 10px; | ||
padding: 5px; | ||
width: 100%; | ||
max-width: 400px; | ||
#block-finder-selector, | ||
#post-type-selector { | ||
display: block; | ||
margin-bottom: 10px; | ||
padding: 2px 8px; | ||
width: 100%; | ||
max-width: 400px; | ||
} | ||
|
||
#block-results-loading { | ||
padding: 14px 12px; | ||
} | ||
|
||
#block-finder-results { | ||
background-color: #f2f2f2; | ||
margin-top: 15px; | ||
background-color: #f2f2f2; | ||
margin-top: 15px; | ||
} | ||
|
||
#block-finder-results h3 { | ||
font-weight: 700; | ||
border-bottom: 1px solid #b9b9b9; | ||
padding: 14px 12px; | ||
margin: 0; | ||
font-weight: 700; | ||
border-bottom: 1px solid #b9b9b9; | ||
padding: 14px 12px; | ||
margin: 0; | ||
} | ||
|
||
#block-finder-results ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
#block-finder-results li { | ||
display: flex; | ||
gap: 8px; | ||
padding: 14px 12px; | ||
margin-bottom: 0; | ||
border-bottom: 1px dotted #b9b9b9; | ||
display: flex; | ||
gap: 8px; | ||
padding: 14px 12px; | ||
margin-bottom: 0; | ||
border-bottom: 1px dotted #b9b9b9; | ||
} | ||
|
||
#block-finder-results li:last-child { | ||
border-bottom: none; | ||
border-bottom: none; | ||
} | ||
|
||
#block-finder-results span { | ||
margin-left: auto; | ||
display: flex; | ||
gap: 8px; | ||
align-items: center; | ||
margin-left: auto; | ||
display: flex; | ||
gap: 8px; | ||
align-items: center; | ||
} | ||
|
||
#block-finder-results a { | ||
font-weight: 500; | ||
color: #0073aa; | ||
text-decoration: none; | ||
font-weight: 500; | ||
color: #0073aa; | ||
text-decoration: none; | ||
} | ||
|
||
#block-finder-results a:last-child { | ||
border-left: 1px solid #b9b9b9; | ||
padding-left: 8px; | ||
border-left: 1px solid #b9b9b9; | ||
padding-left: 8px; | ||
} | ||
|
||
#block-finder-results a:hover { | ||
text-decoration: underline; | ||
text-decoration: underline; | ||
} |