Skip to content
Snippets Groups Projects
Commit f9b2ef2f authored by Kyle Doherty's avatar Kyle Doherty
Browse files

replace and remove check icon

parent 01b72445
Branches
Tags
No related merge requests found
......@@ -4,7 +4,7 @@
<mb-form-label display-name="Database type" field-name="engine"></mb-form-label>
<ul class="Form-offset full mt2" ng-show="!database.engine">
<li class="DatabaseEngine" ng-repeat="(type, properties) in ENGINES">
<cv-check-icon class="DatabaseEngine-check" width="16px" height="16px"></cv-check-icon>
<mb-icon name="check" class="DatabaseEngine-check" width="16px" height="16px"></mb-icon>
<div ng-click="database.engine = type">
{{properties.name}}
</div>
......@@ -12,7 +12,7 @@
</ul>
<div class="Form-offset mr4" ng-show="database.engine">
<div class="DatabaseEngine DatabaseEngine--selected flex align-center">
<cv-check-icon class="DatabaseEngine-check" width="16px" height="16px"></cv-check-icon>
<mb-icon name="check" class="DatabaseEngine-check" width="16px" height="16px"></mb-icon>
<span class="flex-full">{{database.engine}}</span>
<cv-close-icon width="16px" height="16px" ng-click="database.engine = null"></cv-close-icon>
</div>
......
......@@ -33,7 +33,7 @@
<div class="Grid-cell" ng-show="sentNotification">
<div class="SuccessGroup bg-white bordered rounded shadowed">
<div class="SuccessMark">
<cv-check-icon></cv-check-icon>
<mb-icon name="check"></mb-icon>
</div>
<p class="SuccessText">Check your email for instructions on how to reset your password.</p>
</div>
......
......@@ -41,7 +41,7 @@
<div class="Grid-cell" ng-show="resetSuccess">
<div class="SuccessGroup bg-white bordered rounded shadowed">
<div class="SuccessMark">
<cv-check-icon></cv-check-icon>
<mb-icon name="check"></mb-icon>
</div>
<p>Your password has been reset.</p>
<p><a href="/" class="Button Button--primary">Sign in with your new password</a></p>
......
<svg id="check" viewBox="0 0 32 32" fill="currentcolor" ng-attr-width="{{width}}" ng-attr-height="{{height}}">
<path d="M1 14 L5 10 L13 18 L27 4 L31 8 L13 26 z "></path>
</svg>
......@@ -159,7 +159,7 @@ CorvusDirectives.directive('mbActionButton', ['$timeout', '$compile', function (
element.text(successText);
element.removeClass('Button--waiting');
element.addClass('Button--success');
var checkIcon = angular.element('<cv-check-icon width="12px" height="12px"></cv-check-icon>');
var checkIcon = angular.element('<mb-icon name="check" width="12px" height="12px"></mb-icon>');
element.prepend(checkIcon);
$compile(checkIcon)(scope);
......
......@@ -10,7 +10,7 @@
<div class="flex align-center py3" ng-click="activeStep = 'user'">
<span class="SetupStep-indicator flex layout-centered absolute bordered">
<span class="SetupStep-number">1</span>
<cv-check-icon class="SetupStep-check" width="16px" height="16px"></cv-check-icon>
<mb-icon name="check" class="SetupStep-check" width="16px" height="16px"></mb-icon>
</span>
<h3 class="SetupStep-title ml4">{{userStepText}}</h3>
</div>
......@@ -67,7 +67,7 @@
<div class="flex align-center py3">
<span class="SetupStep-indicator flex layout-centered absolute bordered">
<span class="SetupStep-number">2</span>
<cv-check-icon class="SetupStep-check" width="16px" height="16px"></cv-check-icon>
<mb-icon name="check" class="SetupStep-check" width="16px" height="16px"></mb-icon>
</span>
<h3 class="SetupStep-title ml4">{{databaseStepText}}</h3>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment