mirror of https://github.com/rancher/ui.git
commit
5a5424f5e7
|
|
@ -1,3 +1,3 @@
|
|||
<button class="mark-favorite btn bg-transparent" onclick={{perform markFavorite}}>
|
||||
<i class="icon {{if markFavorite.isRunning 'icon-spin icon-spinner'}} {{if exists 'icon-star-fill exists' 'icon-star-line'}} {{iconSize}}"></i>
|
||||
<i class="icon {{if exists 'icon-star-fill exists' 'icon-star-line'}} {{iconSize}}"></i>
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<div class="row">
|
||||
<div class="col span-6">
|
||||
<h2 class="mt-0 mb-0">{{t 'tableCountSelect.header'}}</h2>
|
||||
<h2 class="mt-0 mb-0 pt-20">{{t 'tableCountSelect.header'}}</h2>
|
||||
</div>
|
||||
{{new-select
|
||||
classNames="col span-3 mt-0 form-control"
|
||||
classNames="col span-3 mt-20 form-control"
|
||||
optionValuePath="value"
|
||||
optionLabelPath="value"
|
||||
content=tableCounts
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
.mark-favorite {
|
||||
transition: ease-in-out all 200ms;
|
||||
|
||||
.exists {
|
||||
color: #F1C40F;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,17 +58,6 @@ $border : $light-grey;
|
|||
|
||||
$shadow : rgba($mid-grey, 0.35);
|
||||
|
||||
// banners
|
||||
$banner-default : lighten($light-grey, 3);
|
||||
$banner-disabled : lighten($mid-grey, 35);
|
||||
$banner-primary : lighten($primary, 63);
|
||||
$banner-secondary : lighten($secondary, 65);
|
||||
$banner-success : lighten($success, 50);
|
||||
$banner-info : lighten($info, 30);
|
||||
$banner-warning : lighten($warning, 45);
|
||||
$banner-error : lighten($error, 30);
|
||||
$banner-color : $secondary;
|
||||
|
||||
|
||||
// Global color for active items (e.g., navs or dropdowns).
|
||||
$component-active-color : white;
|
||||
|
|
|
|||
Loading…
Reference in New Issue