Begin styling environmnet item
This commit is contained in:
parent
6747ef2659
commit
3daf702302
@ -49,4 +49,8 @@
|
|||||||
&.icon--large {
|
&.icon--large {
|
||||||
@include icon-size(24);
|
@include icon-size(24);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.icon--remove {
|
||||||
|
@include icon-color($color-red);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,20 +27,17 @@
|
|||||||
<div class="block-list project-list-item">
|
<div class="block-list project-list-item">
|
||||||
<header class="block-list__header">
|
<header class="block-list__header">
|
||||||
<h2 class="block-list__title">Project Environments</h2>
|
<h2 class="block-list__title">Project Environments</h2>
|
||||||
|
|
||||||
{{ Tooltip(
|
{{ Tooltip(
|
||||||
"Each environment created within a project is an enclave of cloud resources that is logically separated from each other for increased security.",
|
"Each environment created within a project is an enclave of cloud resources that is logically separated from each other for increased security.",
|
||||||
title="learn more"
|
title="learn more"
|
||||||
)}}
|
)}}
|
||||||
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="(_, i) in environments" class="block-list__item project-list-item__environment">
|
<li v-for="(_, i) in environments" class="block-list__item">
|
||||||
<span class="project-list-item__environment">
|
|
||||||
{{ TextInput(form.environment_name) }}
|
{{ TextInput(form.environment_name) }}
|
||||||
</span>
|
<span class="icon-link icon-link--danger icon-link--vertical" v-on:click="removeEnvironment(i)">{{ Icon('x') }} Remove</span>
|
||||||
<span v-on:click="removeEnvironment(i)">{{ Icon('x') }} Remove</span>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user