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:
@@ -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)
|
||||||
|
@@ -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
@@ -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; }
|
||||||
|
@@ -539,6 +539,10 @@ $itemPadding: 0.4em;
|
|||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.InputfieldFileDescription + .InputfieldFileTags {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user