mgr/dashboard: Remove button and badge radius

Fixes: http://tracker.ceph.com/issues/38953

Signed-off-by: Tiago Melo <tmelo@suse.com>
This commit is contained in:
Tiago Melo 2019-07-11 17:36:45 +00:00
parent bb264dd936
commit bb7ea78771
6 changed files with 5 additions and 17 deletions

View File

@ -48,7 +48,7 @@
class="bold">Features</td>
<td>
<span *ngFor="let feature of selectedItem.features_name">
<span class="badge badge-pill badge-dark mr-2">{{ feature }}</span>
<span class="badge badge-dark mr-2">{{ feature }}</span>
</span>
</td>
</tr>

View File

@ -58,7 +58,7 @@
<td>
<span *ngFor="let flag of selectedItem.flags">
<span title="{{ flags[flag] }}">
<span class="badge badge-pill badge-dark mr-2">{{ flag | uppercase }}</span>
<span class="badge badge-dark mr-2">{{ flag | uppercase }}</span>
</span>
</span>
</td>
@ -68,7 +68,7 @@
class="bold">Services</td>
<td>
<span *ngFor="let service of selectedItem.services">
<span class="badge badge-pill badge-dark mr-2">{{ service }}</span>
<span class="badge badge-dark mr-2">{{ service }}</span>
</span>
</td>
</tr>

View File

@ -86,7 +86,7 @@
<div class="col-sm-9">
<span *ngFor="let service of configForm.getValue('services')"
class="form-component-badge">
<span class="badge badge-pill badge-dark">{{ service }}</span>
<span class="badge badge-dark">{{ service }}</span>
</span>
</div>
</div>

View File

@ -11,7 +11,7 @@
</cd-select>
<span *ngFor="let dataItem of data">
<span class="badge badge-pill badge-dark mr-2">
<span class="badge badge-dark mr-2">
<span class="mr-2">{{ dataItem }}</span>
<a class="badge-remove"
(click)="cdSelect.removeItem(dataItem)">

View File

@ -122,15 +122,6 @@ option {
}
}
.btn-secondary,
.btn-light {
border-radius: $button-radius;
}
form .input-group .btn-light {
border-radius: $border-radius;
}
// We have some inputs that don't have a corresponding formControlName,
// to be able to get the same styling and no JS errors we need use a different
// class name

View File

@ -77,9 +77,6 @@ $color-error-btn-border: $color-pink !default;
$color-noscript-text: $color-mild-gray !default;
$color-required-text: $color-pink !default;
/*Button*/
$button-radius: 1.875rem !default;
/*Login*/
$color-login-row-text: $color-solid-white !default;
$color-login-row-bg: $color-secondary !default;