Updates to tooltip heading and add text to remove icon
This commit is contained in:
parent
5616fa4f11
commit
6747ef2659
@ -22,6 +22,7 @@
|
||||
background: none;
|
||||
transition: background-color $hover-transition-time;
|
||||
border-radius: $gap / 2;
|
||||
cursor: pointer;
|
||||
|
||||
.icon {
|
||||
@include icon-color($color-primary);
|
||||
|
@ -69,6 +69,11 @@
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.icon-tooltip {
|
||||
margin-left: $gap*2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -88,7 +88,7 @@
|
||||
<footer class='block-list__footer'>
|
||||
<a href='/' class='icon-link'>
|
||||
{% module Icon('plus') %}
|
||||
<span>Add another environment</span>
|
||||
<span class="icon-link">Add another environment</span>
|
||||
</a>
|
||||
</footer>
|
||||
</section>
|
||||
|
@ -39,13 +39,13 @@
|
||||
<li v-for="(_, i) in environments" class="block-list__item project-list-item__environment">
|
||||
<span class="project-list-item__environment">
|
||||
{{ TextInput(form.environment_name) }}
|
||||
<span v-on:click="removeEnvironment(i)">{{ Icon('x') }}</span>
|
||||
</span>
|
||||
<span v-on:click="removeEnvironment(i)">{{ Icon('x') }} Remove</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="block-list__footer">
|
||||
<a v-on:click="addEnvironment">Add another environment</a>
|
||||
<a v-on:click="addEnvironment" class="icon-link">Add another environment</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user