mirror of https://github.com/rancher/dashboard.git
commit
d9d04995e3
|
|
@ -40,7 +40,7 @@ BODY {
|
|||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: var(--scrollbar-thumb) !important;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--border-radius);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
|
|
|
|||
|
|
@ -90,10 +90,11 @@ export default {
|
|||
<span>
|
||||
{{ container.name }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="connection-status" :class="{disconnected: !isOpen}">
|
||||
<span v-if="!isOpen">Disconnected</span>
|
||||
<span v-else>Connected</span>
|
||||
|
||||
<div class="connection-status" :class="{disconnected: !isOpen}">
|
||||
<span v-if="!isOpen">Disconnected</span>
|
||||
<span v-else>Connected</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- use bound key here to make the terminal re-render every time container changes -->
|
||||
<Terminal
|
||||
|
|
@ -135,7 +136,9 @@ export default {
|
|||
height: 95%;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
background-color: var(--nav-bg);
|
||||
background-color: var(--body-bg);
|
||||
border: solid thin var(--border);
|
||||
border-radius: var(--border-radius);
|
||||
& .datestring {
|
||||
color: var(--input-label)
|
||||
}
|
||||
|
|
@ -196,10 +199,6 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
.label-top{
|
||||
margin: 15px;
|
||||
}
|
||||
|
||||
.connection-status{
|
||||
width: 95%;
|
||||
margin: auto;
|
||||
|
|
|
|||
|
|
@ -330,7 +330,7 @@ export default {
|
|||
OPA Gatekeeper <span class="flag">Experimental</span>
|
||||
</h1>
|
||||
<div v-if="gatekeeperEnabled" class="actions">
|
||||
<button ref="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<button aria-haspopup="true" ref="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<i class="icon icon-actions" />
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ export default {
|
|||
</nuxt-link>{{ originalModel.nameDisplay }}
|
||||
</h1>
|
||||
<div v-if="isView" class="actions">
|
||||
<button ref="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<button aria-haspopup="true" ref="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<i class="icon icon-actions" />
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -432,7 +432,7 @@ export default {
|
|||
</template>
|
||||
<td v-if="rowActions" align="middle">
|
||||
<slot name="row-actions" :row="row">
|
||||
<button type="button" class="btn btn-sm role-multi-action actions">
|
||||
<button aria-haspopup="true" aria-expanded="false" type="button" class="btn btn-sm role-multi-action actions">
|
||||
<i class="icon icon-actions" />
|
||||
</button>
|
||||
</slot>
|
||||
|
|
|
|||
|
|
@ -184,6 +184,8 @@ export default {
|
|||
ref="cluster-actions"
|
||||
type="button"
|
||||
class="btn btn-sm role-multi-action actions"
|
||||
aria-haspopup="true"
|
||||
aria-expanded="false"
|
||||
@click="showActions"
|
||||
>
|
||||
<i class="icon icon-actions" />
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export default {
|
|||
</nuxt-link>{{ obj.id }}
|
||||
</h1>
|
||||
<!-- <div v-if="isView" class="actions">
|
||||
<button ref="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<button aria-haspopup="true" aria-expanded="false" rearia-haspopup="true" aria-expanded="false" f="actions" type="button" class="btn btn-sm role-multi-action actions" @click="showActions">
|
||||
<i class="icon icon-actions" />
|
||||
</button>
|
||||
</div> -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue