More fixes for IE
This commit is contained in:
parent
e32e2922de
commit
cb3f1a4d9f
|
@ -1,47 +1,47 @@
|
||||||
<div id="actions">
|
<div id="actions">
|
||||||
<ul>
|
<ul>
|
||||||
{{#if view.displayCancelBuild}}
|
{{#if view.displayCancelBuild}}
|
||||||
<li class="icon" title="Cancel Build">
|
<li class="icon cancel-build" title="Cancel Build">
|
||||||
<a href="#" {{action "cancelBuild" target="view"}}
|
<a href="#" {{action "cancelBuild" target="view"}}
|
||||||
{{bind-attr class="view.canCancelBuild::disabled"}}><img class="icon" src="/images/icons/off.svg" width="20"></a>
|
{{bind-attr class="view.canCancelBuild::disabled"}}>Cancel build</a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if view.displayCancelJob}}
|
{{#if view.displayCancelJob}}
|
||||||
<li class="icon" title="Cancel Job">
|
<li class="icon cancel-job" title="Cancel Job">
|
||||||
<a href="#" {{action "cancelJob" target="view"}}
|
<a href="#" {{action "cancelJob" target="view"}}
|
||||||
{{bind-attr class="view.canCancelJob::disabled"}}><img class="icon" width="20" src="/images/icons/off.svg"/></a>
|
{{bind-attr class="view.canCancelJob::disabled"}}>Cancel job</a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if view.displayRequeueBuild}}
|
{{#if view.displayRequeueBuild}}
|
||||||
<li class="icon" title="Restart Build">
|
<li class="icon restart-build" title="Restart Build">
|
||||||
{{#if view.requeueing}}
|
{{#if view.requeueing}}
|
||||||
<span class="icon loading"></span>
|
<span class="icon loading"></span>
|
||||||
{{else}}
|
{{else}}
|
||||||
<a href="#" {{action "requeueBuild" target="view"}}
|
<a href="#" {{action "requeueBuild" target="view"}}
|
||||||
{{bind-attr class="view.canRequeueBuild::disabled"}}><img class="icon" src="/images/icons/repeat.svg" width="20"></a>
|
{{bind-attr class="view.canRequeueBuild::disabled"}}></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if view.displayRequeueJob}}
|
{{#if view.displayRequeueJob}}
|
||||||
<li class="icon" title="Restart Job">
|
<li class="icon restart-job" title="Restart Job">
|
||||||
{{#if view.requeueing}}
|
{{#if view.requeueing}}
|
||||||
<span class="icon loading"></span>
|
<span class="icon loading"></span>
|
||||||
{{else}}
|
{{else}}
|
||||||
<a href="#" {{action "requeueJob" target="view"}}
|
<a href="#" {{action "requeueJob" target="view"}}
|
||||||
{{bind-attr class="view.canRequeueJob::disabled"}}><img src="/images/icons/repeat.svg" width="20"></a>
|
{{bind-attr class="view.canRequeueJob::disabled"}}></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!TODO: for some reason showDownloadLog, which just delegates to jobIdForLog
|
{{!TODO: for some reason showDownloadLog, which just delegates to jobIdForLog
|
||||||
does not refresh 'if' properly, need further investigation}}
|
does not refresh 'if' properly, need further investigation}}
|
||||||
{{#if view.jobIdForLog}}
|
{{#if view.jobIdForLog}}
|
||||||
<li class="icon" title="Download Log">
|
<li class="icon download-log" title="Download Log">
|
||||||
<a class="download-log" {{bind-attr href="view.plainTextLogUrl"}}><img class="icon" src="/images/icons/download-log.svg" width="20"/></a>
|
<a class="download-log" {{bind-attr href="view.plainTextLogUrl"}}></a>
|
||||||
</li>
|
</li>
|
||||||
{{#if view.displayRemoveLog}}
|
{{#if view.displayRemoveLog}}
|
||||||
<li class="icon" title="Remove Log">
|
<li class="icon remove-log" title="Remove Log">
|
||||||
<a href="#" {{action "removeLog" target="view"}}
|
<a href="#" {{action "removeLog" target="view"}}
|
||||||
{{bind-attr class="view.canRemoveLog::disabled"}}><img class="icon" src="/images/icons/delete-log.svg" width="20"></a>
|
{{bind-attr class="view.canRemoveLog::disabled"}}></a>
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<div id="tools">
|
<div id="tools">
|
||||||
<a href="#" {{action "menu" target="view"}} class="menu-popup-button">Settings <img src="/images/icons/dropdown-arrow-white.svg"/></a>
|
<a href="#" {{action "menu" target="view"}} class="menu-popup-button">Settings</a>
|
||||||
|
|
||||||
<ul class="menu">
|
<ul class="menu">
|
||||||
{{#if view.displayRegenerateKey}}
|
{{#if view.displayRegenerateKey}}
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
display: inline-block
|
display: inline-block
|
||||||
opacity: 1.0
|
opacity: 1.0
|
||||||
|
|
||||||
|
img
|
||||||
|
border: none
|
||||||
|
|
||||||
.github-icon
|
.github-icon
|
||||||
width: 21px
|
width: 21px
|
||||||
height: 21px
|
height: 21px
|
||||||
|
|
|
@ -12,10 +12,12 @@
|
||||||
margin-top: -27px
|
margin-top: -27px
|
||||||
color: #fff
|
color: #fff
|
||||||
font-size: 13px
|
font-size: 13px
|
||||||
padding: 3px 8px 2px 25px
|
padding: 3px 24px 2px 25px
|
||||||
background: #a6adad inline-image('icons/settings.svg') no-repeat
|
background-image: inline-image('icons/settings.svg'), inline-image('icons/dropdown-arrow-white.svg')
|
||||||
background-size: 14px 14px
|
background-size: 14px 14px, 8px 8px
|
||||||
background-position: 6px 6px
|
background-position: 6px 6px, right 9px center
|
||||||
|
background-color: #a6adad
|
||||||
|
background-repeat: no-repeat
|
||||||
@include border-radius(4px)
|
@include border-radius(4px)
|
||||||
|
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
|
@ -61,6 +63,18 @@
|
||||||
float: right
|
float: right
|
||||||
text-align: right
|
text-align: right
|
||||||
|
|
||||||
|
li.restart-build a, li.restart-job a
|
||||||
|
background-image: inline-image('icons/repeat.svg')
|
||||||
|
|
||||||
|
li.cancel-build a, li.cancel-job a
|
||||||
|
background-image: inline-image('icons/off.svg')
|
||||||
|
|
||||||
|
li.download-log a
|
||||||
|
background-image: inline-image('icons/download-log.svg')
|
||||||
|
|
||||||
|
li.remove-log a
|
||||||
|
background-image: inline-image('icons/delete-log.svg')
|
||||||
|
|
||||||
li.icon
|
li.icon
|
||||||
span.loading
|
span.loading
|
||||||
background: inline-image('ui/round-spinner.svg') no-repeat
|
background: inline-image('ui/round-spinner.svg') no-repeat
|
||||||
|
@ -78,15 +92,19 @@
|
||||||
background-position: center center
|
background-position: center center
|
||||||
|
|
||||||
a
|
a
|
||||||
|
text-indent: -9999px
|
||||||
display: inline-block
|
display: inline-block
|
||||||
width: 27px
|
width: 28px
|
||||||
height: 27px
|
height: 28px
|
||||||
position: relative
|
position: relative
|
||||||
top: -7px
|
top: -7px
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
color: #fef4e9
|
color: #fef4e9
|
||||||
border-radius: 100px
|
border-radius: 100px
|
||||||
background: #5e869a
|
background-color: #5e869a
|
||||||
|
background-size: 16px 16px
|
||||||
|
background-position: center center
|
||||||
|
background-repeat: no-repeat
|
||||||
text-align: center
|
text-align: center
|
||||||
margin-left: 5px
|
margin-left: 5px
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user