Update the UI logo. Artwork by Chethana Kumar. Fixes #4208
BIN
docs/en_US/images/file_menu.png
Executable file → Normal file
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 36 KiB |
BIN
docs/en_US/images/help_menu.png
Executable file → Normal file
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 39 KiB |
BIN
docs/en_US/images/object_menu.png
Executable file → Normal file
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 82 KiB |
BIN
docs/en_US/images/tool_menu.png
Executable file → Normal file
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 79 KiB |
BIN
docs/en_US/images/toolbar.png
Executable file → Normal file
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 44 KiB |
BIN
docs/en_US/images/welcome.png
Executable file → Normal file
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 111 KiB |
@ -16,6 +16,7 @@ Bug fixes
|
||||
|
||||
| `Bug #4164 <https://redmine.postgresql.org/issues/4164>`_ - Fix file browser path issue which occurs when client is on Windows and server is on Mac/Linux.
|
||||
| `Bug #4194 <https://redmine.postgresql.org/issues/4194>`_ - Fix accessibility issue for menu navigation.
|
||||
| `Bug #4208 <https://redmine.postgresql.org/issues/4208>`_ - Update the UI logo.
|
||||
| `Bug #4218 <https://redmine.postgresql.org/issues/4218>`_ - Properly assign dropdownParent in Select2 controls.
|
||||
| `Bug #4219 <https://redmine.postgresql.org/issues/4219>`_ - Ensure popper.js is installed when needed.
|
||||
| `Bug #4227 <https://redmine.postgresql.org/issues/4227>`_ - Fixed Tab key navigation for Maintenance dialog.
|
||||
|
@ -100,9 +100,7 @@ window.onload = function(e){
|
||||
<a class="navbar-brand pgadmin_header_logo" onClick="return false;" href="{{ '#' }}"
|
||||
title="{{ config.APP_NAME }} {{ _('logo') }}">
|
||||
<i class="app-icon {{ config.APP_ICON }}"></i>
|
||||
<span> {{ config.APP_NAME }}</span>
|
||||
</a>
|
||||
<div class="pg-navbar-brand-arrow"></div>
|
||||
<button type="button" class="navbar-toggler collapsed" data-toggle="collapse" data-target="#navbar-menu" aria-controls="navbar-menu">
|
||||
<span class="sr-only">{{ _('Toggle navigation') }}</span>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 77 KiB |
@ -271,12 +271,9 @@ td.switch-cell > div.toggle {
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
color: $color-brand !important;
|
||||
background: $navbar-brand-bg !important;
|
||||
margin-right: 0rem;
|
||||
padding-left: 0.5rem !important;
|
||||
padding-right: 1rem !important;
|
||||
min-height: $navbar-height;
|
||||
height: $navbar-height;
|
||||
padding: 0rem;
|
||||
display: flex;
|
||||
|
@ -102,7 +102,13 @@ $card-cap-bg: $color-bg-theme;
|
||||
$card-bg: $color-bg-theme;
|
||||
|
||||
|
||||
$navbar-padding-y: 0rem;
|
||||
$navbar-padding-x: 0rem;
|
||||
$navbar-brand-padding-y: 0rem;
|
||||
$navbar-toggler-padding-y: 0rem;
|
||||
$navbar-toggler-padding-x: 0rem;
|
||||
$navbar-toggler-font-size: $font-size-base;
|
||||
$navbar-dark-toggler-border-color: tranparent;
|
||||
|
||||
$nav-tabs-border-color: $border-color;
|
||||
$nav-tabs-border-width: 1px;
|
||||
@ -166,8 +172,8 @@ $navbar-color-bg: $color-primary;
|
||||
$navbar-font-size: 0.925rem;
|
||||
$navbar-user-font-size: 0.875rem;
|
||||
|
||||
$navbar-height: 40px;
|
||||
$navbar-dropdown-top: 110%;
|
||||
$navbar-height: 32px;
|
||||
$navbar-dropdown-top: 100%;
|
||||
$dropdown-submenu-top: -$dropdown-spacer;
|
||||
|
||||
$table-bg: $color-bg-theme;
|
||||
|