make remove channel button work again

This commit is contained in:
Mario Vavti 2015-03-03 09:18:04 +01:00
parent ec65c76a66
commit 74c1b61689
2 changed files with 8 additions and 4 deletions

View File

@ -81,7 +81,11 @@ a.btn-default {
color: #333; color: #333;
} }
a.btn-success { a.btn-success,
a.btn-danger,
a.btn-info,
a.btn-warning
a.btn-primary {
color: #fff; color: #fff;
} }
@ -111,8 +115,8 @@ input[type="submit"] {
padding: 6px 12px; padding: 6px 12px;
} }
button, input, optgroup, select, textarea { input, optgroup, select, textarea {
color: #000; color: #333;
} }
pre code { pre code {

View File

@ -1,6 +1,6 @@
<div class="generic-content-wrapper"> <div class="generic-content-wrapper">
<div class="section-title-wrapper"> <div class="section-title-wrapper">
<button title="{{$permanent}}" class="btn btn-danger btn-xs pull-right" type="submit" formaction="removeme"><i class="icon-trash"></i>&nbsp;{{$removeme}}</button> <a title="{{$permanent}}" class="btn btn-danger btn-xs pull-right" href="removeme"><i class="icon-trash"></i>&nbsp;{{$removeme}}</a>
<h2>{{$ptitle}}</h2> <h2>{{$ptitle}}</h2>
<div class="clear"></div> <div class="clear"></div>
</div> </div>