NOJIRA Console branding/style improvements

This commit is contained in:
Martyn Taylor 2017-08-14 16:41:01 +01:00 committed by Justin Bertram
parent addec5769f
commit 4004c959da
7 changed files with 25 additions and 47 deletions

View File

@ -762,6 +762,7 @@ td.adding {
.login-form form fieldset .control-group label {
color: white;
font-weight: bolder;
}
.login-logo {
@ -1435,23 +1436,23 @@ a:hover {
#main {
margin-top: 90px!important;
margin-top: 106px!important;
}
#main-nav {
max-height: 90px !important;
max-height: 106px !important;
}
#main-nav .main-nav-upper .nav {
max-height: 45px !important;
max-height: 106px !important;
}
#main-nav .main-nav-upper .nav li {
max-height: 45px !important;
max-height: 106px !important;
}
#main-nav .main-nav-upper .nav li a {
max-height: 45px !important;
max-height: 106px !important;
}
#main-nav .main-nav-upper .nav li a i.fixme:before {
@ -1477,10 +1478,9 @@ a:hover {
#main-nav > .main-nav-upper {
filter: none;
border-top: 3px solid #B21054;
background: #FFFFFF !important;
border-bottom: none;
height: 44px !important;
min-height: 44px !important;
height: 60px !important;
min-height: 60px !important;
box-shadow: none;
}
@ -1539,7 +1539,6 @@ a:hover {
}
#main-nav > .navbar-inner.main-nav-upper > .container > .pull-left > .brand {
color: #333333;
text-shadow: none;
}
@ -1640,7 +1639,7 @@ a:hover {
border: none;
height: 44px;
max-height: 44px;
color: #333333;
color: #ffffff;
}
#main-nav .navbar-inner.main-nav-upper .nav > li:hover a {
@ -1804,10 +1803,8 @@ select, textarea, input[type="text"], input[type="password"], input[type="dateti
}
div[ng-controller='Core.LoginController']:after {
position: absolute;
top: 50px;
right: 64px;
content: url('../img/login-screen-logo.png');
position: relative;
horiz-align: center;
}
@ -1823,16 +1820,16 @@ div[ng-controller='Core.LoginController']:after {
min-width: 850px;
border-top: 1px rgba(255, 255, 255, 0.05) solid;
border-bottom: 1px rgba(255, 255, 255, 0.05) solid;
background-color: rgba(178, 97, 130, 0.75);
background-color: rgba(255, 255, 255, 0.1);
}
.login-logo>img {
height: 80px;
height: 150px;
}
.login-logo {
top: -100px;
top: -200px;
/* with no app title */
/* left: 183px; */
left: 45px;
@ -1860,10 +1857,6 @@ div[ng-controller='Core.LoginController']:after {
width: 344px;
}
.login-wrapper form fieldset .control-group label {
padding-top: 12px;
}
.login-wrapper form fieldset input[type="text"],
.login-wrapper form fieldset input[type="password"] {
margin: 4px;
@ -2327,10 +2320,9 @@ div[ng-controller="Log.LogController"] .logbar .logbar-container {
}
.help-header {
background-color: #B2577A;
color: white;
padding-left: 10px;
padding-right: 10px;
background-color: #43484D;
padding-left: 20px;
padding-right: 20px;
border-radius: 4px;
}
@ -2338,7 +2330,7 @@ div[ng-controller="Log.LogController"] .logbar .logbar-container {
position: relative;
margin-right: 7px;
margin-left: 3px;
height: 22px;
height: 50px;
top: -2px;
}

View File

@ -26,7 +26,7 @@
display: inline-block;
position: relative;
left: -3px;
height: 43px;
height: 58px;
}
#main-nav > .navbar-inner.main-nav-upper > .container > .pull-left > .brand > strong {

View File

@ -1,16 +0,0 @@
![ActiveMQ Artemis logo](../activemq-branding/plugin/img/activemq.png)
Apache ActiveMQ Artemis
=======================
Management Console
------------------
Links
-----
[Artemis User Guide](./help)
[Java Docs](../api/index.html)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 403 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -20,6 +20,8 @@
* @module activemqBranding
* @main activemq
*/
var localStorage = Core.getLocalStorage();
localStorage['showWelcomePage'] = false;
var activemqBranding = (function (self) {
self.log = Logger.get("activemq");
@ -30,18 +32,18 @@ var activemqBranding = (function (self) {
Themes.definitions['activemq'] = {
label: 'activemq',
file: self.context + 'plugin/css/activemq.css',
loginBg: self.context + 'plugin/img/login-screen-background.jpg'
loginBg: self.context + 'plugin/img/login-screen-background.png'
};
var localStorage = Core.getLocalStorage();
if (!('theme' in localStorage)) {
localStorage['theme'] = 'activemq';
}
localStorage['showWelcomePage'] = false;
Themes.brandings['activemq'] = {
label: 'activemq',
setFunc: function(branding) {
branding.appName = 'MANAGEMENT CONSOLE';
branding.appName = 'ActiveMQ Management Console';
branding.appLogo = self.context + 'plugin/img/activemq.png';
branding.logoOnly = false;
branding.logoOnly = true;
branding.fullscreenLogin = true;
branding.css = self.context + 'plugin/css/branding.css';
branding.favicon = self.context + 'plugin/img/favicon.png';