1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-25 23:56:41 +02:00

Bump version to 3.0.55 and a couple other minor adjustments

This commit is contained in:
Ryan Cramer
2017-03-10 12:46:01 -05:00
parent 8b96e6b060
commit 8018ecc7af
5 changed files with 26 additions and 6 deletions

View File

@@ -22,6 +22,7 @@ $mainnav-width: 210px;
$mainnav-width-wide: 230px; // bigger sidebar for wide screen?
$masthead-height: 52px;
//noinspection CssInvalidPropertyValue
@mixin word-wrap() {
overflow-wrap: break-word;
word-break: break-word;
@@ -1239,7 +1240,7 @@ body.pw-init .toggle-icon {
@media only screen and (max-width: 480px) {
#branding,{
#branding {
width: 100%;
}

View File

@@ -104,7 +104,7 @@
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,{
.ui-widget-header .ui-state-highlight {
color: $highlight-color;
background: $highlight-bg;
border: none;
@@ -188,6 +188,7 @@ p span.ui-state-error {
.ui-dialog-titlebar-close {
top: 50%;
right: 15px;
//noinspection CssInvalidPropertyValue
background-color: none;
color: $white;
}

View File

@@ -444,7 +444,7 @@ class ProcessPageList extends Process implements ConfigurableModule {
'label' => $this->_('Show All') . ' ' .
'<small>' . sprintf($this->_('(%d pages)'), $items->getTotal()) . '</small>',
'icon' => 'arrow-circle-right',
'className' => 'separator',
'className' => 'separator pw-pagelist-show-all',
);
}
@@ -453,7 +453,7 @@ class ProcessPageList extends Process implements ConfigurableModule {
'url' => $urls->admin . "page/add/?parent_id=$parentID",
'label' => __('Add New', '/wire/templates-admin/default.php'),
'icon' => 'plus-circle',
'className' => 'separator',
'className' => 'separator pw-nav-add',
);
}