Skip to content

Commit

Permalink
- Modify pull-right to float-right for bootstrap 4
Browse files Browse the repository at this point in the history
  • Loading branch information
paschmann committed Mar 12, 2018
1 parent b248bb1 commit db8682b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions web/src/app/components/agents/agents.html
Expand Up @@ -16,7 +16,7 @@
<div class="card" ng-repeat="agent in agentList track by agent.agent_id">
<div class="card-header" role="tab" id="headingOne">
<span><a ng-href="#!/agent/{{agent.agent_id}}">{{ agent.agent_name }}</a></span>
<span class="pull-right">
<span class="float-right">
<a style="border:0; padding: 0.2rem;" class="btn btn-outline-secondary" data-toggle="collapse" data-target="#{{agent.agent_id}}" aria-expanded="true" aria-controls="collapseOne">
<i class="fa fa-edit fa-lg header-buttons"></i></a>
</span>
Expand All @@ -33,7 +33,7 @@
</div>
<strong>Service Fullfillment</strong>
&nbsp;&nbsp;&nbsp;
<span class="pull-right">
<span class="float-right">
<label class="switch switch-default switch-pill switch-success">
<input type="checkbox" class="switch-input" ng-model="agent.endpoint_enabled" ng-checked="agent.endpoint_enabled">
<span class="switch-label"></span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/components/insights/insights.html
Expand Up @@ -15,7 +15,7 @@ <h4 title="Average Active Users">{{avg_active_users}} avg</h4>
<p>Active Users</p>
</div>
<div class="col-sm-4">
<div class="pull-right">
<div class="float-right">
<select id="chart_type" ng-change="updateData(option)" ng-model="option" class="form-control">
<option selected>Daily</option>
<option>Monthly</option>
Expand Down
6 changes: 3 additions & 3 deletions web/src/app/components/intents/edit_intent.html
Expand Up @@ -63,7 +63,7 @@
<div class="list-group" dir-paginate="expression in expressionList | itemsPerPage: 6">
<div class="list-group-item">
<span id="expression_{{expression.expression_id}}" ng-bind-html="expression.expression_highlighted_text | trusted"></span>
<span class="pull-right">
<span class="float-right">
<span class="badge badge-default badge-pill mr-2" ng-hide="parameterFilterList.length == 0">{{ parameterFilterList.length }}</span>
<button class="btn btn-outline-secondary" ng-click="runExpression(expression.expression_text)">
<span class="icon-energy"></span>
Expand Down Expand Up @@ -134,7 +134,7 @@
<div class="form-check" title="{{agent.endpoint_enabled == false?'Enable Webook at Agent Level and select this Option to get response from Server API':'Select this Option to get response from API'}}">
<strong>Enable webhook</strong>
&nbsp;&nbsp;&nbsp;
<span class="pull-right">
<span class="float-right">
<label class="switch switch-default switch-pill switch-success">
<input type="checkbox" class="switch-input" ng-model="intent.endpoint_enabled" ng-checked="agent.endpoint_enabled" ng-disabled="agent.endpoint_enabled == false">
<span class="switch-label"></span>
Expand All @@ -148,7 +148,7 @@
<ul class="list-group" ng-hide="responses.length == 0" style="margin-top: 20px;">
<li class="list-group-item" ng-repeat="response in responses track by response.response_id">
<span ng-bind-html="response.response_text | trusted"></span>
<span class="pull-right">
<span class="float-right">
<button class="btn btn btn-outline-danger" confirm-click-title="Delete Response" confirm-click="Are you sure? This will delete the response."
ng-click="deleteResponse(response.response_id)">
<span class="icon-trash"></span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/components/training/training.html
Expand Up @@ -43,7 +43,7 @@
<div class="card-block" ng-show="exportdata !== undefined">
<div class="col-sm-12">
<json-formatter json="exportdata" open="4"></json-formatter>
<span ng-show="exportdata !== undefined" class="pull-right">Lower case
<span ng-show="exportdata !== undefined" class="float-right">Lower case
<label class="switch switch-3d switch-success" style="margin-left: 20px;" ng-show="exportdata !== undefined">
<input type="checkbox" class="switch-input" ng-model="toLowercase" ng-change="convertToLowerCase()">
<span class="switch-label"></span>
Expand Down
2 changes: 1 addition & 1 deletion web/src/assets/css/vendor/core-ui.css

Large diffs are not rendered by default.

0 comments on commit db8682b

Please sign in to comment.