Fix layout pref logs

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-29 16:01:41 -03:00
commit 5437c9bf9e
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -1,16 +1,18 @@
<div class="content p20v" ng-controller="preferencesLogs as logs">
<button class="black radius expand" ng-show="logs.isCordova" ng-style="{'background-color':index.backgroundColor}" ng-click="logs.sendLogs()" ><i class="fi-mail"></i>
<div class="row columns">
<button class="black radius small expand" ng-show="logs.isCordova" ng-style="{'background-color':index.backgroundColor}" ng-click="logs.sendLogs()" ><i class="fi-mail"></i>
<span translate>Send by email</span>
</button>
</button>
<ul class="no-bullet m0 size-14">
<li class="line-b" ng-repeat="l in logs.logs">
<ul class="no-bullet size-14 oh" style="word-wrap: break-word;">
<li class="line-b enable_text_select" ng-repeat="l in logs.logs">
<span ng-class="{'text-warning': l.level=='warn', 'text-secondary': l.level=='debug', 'text-primary': l.level=='info', 'text-alert': l.level=='error' }">
{{l.msg}}
</span>
</li>
</ul>
</div>
</div>