Fix dialog formatting

This commit is contained in:
Joseph Schorr 2015-01-27 15:27:37 -05:00
parent a98b9ca1a7
commit 30209e2bda

View file

@ -93,42 +93,44 @@
<!-- Content: DB_RESTARTING or CONFIG_RESTARTING --> <!-- Content: DB_RESTARTING or CONFIG_RESTARTING -->
<div class="modal-body" style="padding: 20px;" <div class="modal-body" style="padding: 20px;"
ng-show="isStep(currentStep, States.DB_RESTARTING, States.CONFIG_RESTARTING)"> ng-show="isStep(currentStep, States.DB_RESTARTING, States.CONFIG_RESTARTING)">
<h4 style="margin-bottom: 20px;">
<i class="fa fa-lg fa-refresh" style="margin-right: 10px;"></i> <i class="fa fa-lg fa-refresh" style="margin-right: 10px;"></i>
<span class="registry-name"></span> is currently being restarted. <span class="registry-name"></span> is currently being restarted
<br><br> </h4>
This can take several minutes. If the container does not restart on its own, This can take several minutes. If the container does not restart on its own,
please reexecute the <code>docker run</code> command. please re-execute the <code>docker run</code> command.
</div> </div>
<!-- Content: READY --> <!-- Content: READY -->
<div class="modal-body" style="padding: 20px;" <div class="modal-body" style="padding: 20px;"
ng-show="isStep(currentStep, States.READY)"> ng-show="isStep(currentStep, States.READY)">
Installation and setup of <span class="registry-name"></span> is complete. You can <h4>Installation and setup of <span class="registry-name"></span> is complete</h4>
now invite users to join, create organizations and start pushing and pulling You can now invite users to join, create organizations and start pushing and pulling
repositories. repositories.
</div> </div>
<!-- Content: VALID_CONFIG --> <!-- Content: VALID_CONFIG -->
<div class="modal-body" style="padding: 20px;" <div class="modal-body" style="padding: 20px;"
ng-show="isStep(currentStep, States.VALID_CONFIG)"> ng-show="isStep(currentStep, States.VALID_CONFIG)">
All configuration has been validated and saved. The container must be restarted to <h4>All configuration has been validated and saved</h4>
apply the configuration changes. The container must be restarted to apply the configuration changes.
</div> </div>
<!-- Content: DB_SETUP_SUCCESS --> <!-- Content: DB_SETUP_SUCCESS -->
<div class="modal-body" style="padding: 20px;" <div class="modal-body" style="padding: 20px;"
ng-show="isStep(currentStep, States.DB_SETUP_SUCCESS)"> ng-show="isStep(currentStep, States.DB_SETUP_SUCCESS)">
The database has been setup and is ready. The container must be restarted to <h4>The database has been setup and is ready</h4>
apply the configuration changes. The container must be restarted to apply the configuration changes.
</div> </div>
<!-- Content: DB_SETUP or DB_SETUP_ERROR --> <!-- Content: DB_SETUP or DB_SETUP_ERROR -->
<div class="modal-body" style="padding: 20px;" <div class="modal-body" style="padding: 20px;"
ng-show="isStep(currentStep, States.DB_SETUP, States.DB_SETUP_ERROR)"> ng-show="isStep(currentStep, States.DB_SETUP, States.DB_SETUP_ERROR)">
<h4>
<i class="fa fa-lg fa-database" style="margin-right: 10px;"></i> <i class="fa fa-lg fa-database" style="margin-right: 10px;"></i>
<span class="registry-name"></span> is currently setting up its database <span class="registry-name"></span> is currently setting up its database
schema. schema
<br><br> </h4>
This can take several minutes. This can take several minutes.
</div> </div>