1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 16:26:59 +02:00

A couple other tweaks to tags updates and bump version to 3.0.67

This commit is contained in:
Ryan Cramer
2017-07-14 14:09:46 -04:00
parent 659391a4c3
commit 0a06c12b82
5 changed files with 10 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ class ProcessWire extends Wire {
* Reversion revision number * Reversion revision number
* *
*/ */
const versionRevision = 66; const versionRevision = 67;
/** /**
* Version suffix string (when applicable) * Version suffix string (when applicable)

View File

@@ -500,10 +500,10 @@ $(document).ready(function() {
return allow; return allow;
}, },
onDropdownOpen: function($dropdown) { onDropdownOpen: function($dropdown) {
$dropdown.closest('li').css('z-index', 100); $dropdown.closest('li, .InputfieldImageEdit').css('z-index', 100);
}, },
onDropdownClose: function($dropdown) { onDropdownClose: function($dropdown) {
$dropdown.closest('li').css('z-index', 'auto'); $dropdown.closest('li, .InputfieldImageEdit').css('z-index', 'auto');
}, },
render: { render: {
item: function(item, escape) { item: function(item, escape) {

File diff suppressed because one or more lines are too long

View File

@@ -348,6 +348,8 @@
margin: 1em 0 0.5em 0; } margin: 1em 0 0.5em 0; }
.InputfieldImageEdit__buttons button { .InputfieldImageEdit__buttons button {
margin-bottom: 0.5em; } margin-bottom: 0.5em; }
.InputfieldImageEdit .InputfieldFileDescription + .InputfieldFileTags {
margin-top: 0.5em; }
.InputfieldImage .ImageData { .InputfieldImage .ImageData {
display: none; } display: none; }

View File

@@ -540,6 +540,10 @@ $itemPadding: 0.4em;
} }
} }
.InputfieldFileDescription + .InputfieldFileTags {
margin-top: 0.5em;
}
} }
.InputfieldImage .ImageData { .InputfieldImage .ImageData {