1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

hiding copyright info for open source

This commit is contained in:
Jared Tabor 2017-06-15 14:28:25 -07:00
parent 9c0adcbb4e
commit eed39ccfc5
4 changed files with 12 additions and 3 deletions

View File

@ -18,3 +18,6 @@
@about-modal-padding-top: inherit;
@about-modal-margin-top: -60px;
@about-modal-margin-left: -50px;
// Copyright text should be hidden
@copyright-text: 0;

View File

@ -61,3 +61,7 @@
.About-ansibleVersion {
color: @default-data-txt;
}
.Copyright-text{
opacity: @copyright-text;
}

View File

@ -26,8 +26,10 @@
<span class="About-ansibleVersion">
Ansible {{ ansible_version }}
</span> <br>
Copyright &copy; 2017 Red Hat, Inc. <br>
Visit <a href="http://www.ansible.com/" target="_blank">Ansible.com</a> for more information.<br>
<span class="Copyright-text">
Copyright &copy; 2017 Red Hat, Inc. <br>
Visit <a href="http://www.ansible.com/" target="_blank">Ansible.com</a> for more information.<br>
</span>
</p>
</div>
</div>

View File

@ -1,3 +1,3 @@
<footer class='Footer'>
<div class="Footer-copyright" ng-class="{'is-loggedOut' : !current_user || !current_user.username}">Copyright &copy 2017 <a class="Footer-link" href="http://www.redhat.com" target="_blank">Red Hat</a>, Inc.</div>
<div class="Footer-copyright Copyright-text" ng-class="{'is-loggedOut' : !current_user || !current_user.username}">Copyright &copy 2017 <a class="Footer-link" href="http://www.redhat.com" target="_blank">Red Hat</a>, Inc.</div>
</footer>