Hello,
Not sure how much this will help, but here is how we are updating it.
We are building Rundeck from source ( internally versioned in Git for some fine tuning) and creating a .WAR and bundling all the plugins.
The server is a Redhat Linux ( CentOS 6.5) and deployed and running behind apache tomcat.
When we make UI changes ( css, js or images), we just update files under the rundeckapp/grails-apps/assets and make the necessary changes, build and deploy the war file ( which explodes into webapps/rundeck/assets/)
For instance, we added some custom css that is checked into rundeckapp/graisl-apps/assets/css/ and get built into under here after deploying.
ls /opt/rundeck/current/webapps/rundeck/assets/akerbootstrap.css
/opt/rundeck/current/webapps/rundeck/assets/akerbootstrap.css
Not sure how to or if it is possible to change if the install was on a Linux VM using the rpm install. Is that how you are running?
Is there a rundeck.less or non-responsive.less file there?
Attached is a diff for example and attached before ( black background) and after ( greay background change) in the navbar.
git diff rundeck.less
diff --git a/rundeckapp/grails-app/assets/stylesheets/rundeck.less b/rundeckapp/grails-app/assets/stylesheets/rundeck.less
index dd35235..83e6564 100644
--- a/rundeckapp/grails-app/assets/stylesheets/rundeck.less
+++ b/rundeckapp/grails-app/assets/stylesheets/rundeck.less
@@ -33,7 +33,7 @@
.navbar-brand{
font-family: 'Futura';
text-transform: uppercase;
- background-color: #000000;
+ background-color: #DCDCDC;
&:hover, &:focus{
color: red;
background-color: #000000;
Cheers, Dharmendra