Kenia f9e8b26af6
ui: Create auth-method show page with General Info Tab (#9845)
* Update list items to be linkable to auth-methods show

* Add general, namespace, and binding sub-routes

* Remove namespace and binding tabs to be done separately

* Update auth-method byId endpoint

* Style the show auth-method kubernetes type

* Finish Kubernetes auth-method type styling

* OIDC and JWT auth-method styling

* Create consul-auth-method-view component

* Add navigation test for auth-methods

* Create Certificate component
2021-03-17 10:40:56 -04:00

92 lines
2.6 KiB
SCSS

@import './composite-row/index';
.list-collection > ul > li:not(:first-child) {
@extend %composite-row;
}
/* hoverable rows */
%composite-row.linkable,
.consul-service-instance-list > ul > li:not(:first-child),
.consul-node-list > ul > li:not(:first-child),
.consul-token-list > ul > li:not(:first-child),
.consul-policy-list > ul > li:not(:first-child),
.consul-role-list > ul > li:not(:first-child),
.consul-auth-method-list > ul > li:not(:first-child) {
@extend %with-composite-row-intent;
}
.consul-lock-session-list ul > li:not(:first-child) {
@extend %with-one-action-row;
}
// TODO: This hides the icons-less dt's in the below lists as they don't have
// tooltips the todo would be to wrap these texts in spans
.consul-nspace-list > ul > li:not(:first-child) dt,
.consul-token-list > ul > li:not(:first-child) dt,
.consul-policy-list > ul li:not(:first-child) dl:not(.datacenter) dt,
.consul-role-list > ul > li:not(:first-child) dt {
display: none;
}
/* TODO: the service list has a 1px offset */
.consul-policy-list dl.datacenter dt,
.consul-service-list li > div:first-child > dl:first-child dd {
margin-top: 1px;
}
.consul-service-list .detail,
.consul-service-instance-list .detail {
overflow-x: visible !important;
}
.consul-intention-permission-list > ul {
border-top: 1px solid $gray-200;
}
.consul-service-instance-list .port dt,
.consul-service-instance-list .port dt::before {
display: none;
}
.consul-service-instance-list .port .copy-button {
margin-right: 0;
}
// Copy Button
%composite-row .copy-button {
display: inline-flex;
}
%composite-row-header .copy-button {
margin-left: 4px;
}
%composite-row-detail .copy-button {
margin-right: 4px;
margin-top: 2px;
}
%composite-row .copy-button button {
padding: 0 !important;
margin: 0 !important;
}
%composite-row-header .copy-button button {
display: none;
}
%composite-row-header:hover .copy-button button {
display: block;
}
%composite-row .copy-button button:hover {
background-color: transparent !important;
}
%composite-row-detail > .consul-kind:first-child,
%composite-row-detail > .consul-external-source:first-child {
margin-left: -5px;
}
%composite-row-detail .policy::before {
@extend %with-file-fill-mask, %as-pseudo;
margin-right: 3px;
}
%composite-row-detail .role::before {
@extend %with-user-plain-mask, %as-pseudo;
margin-right: 3px;
}
%composite-row-detail .policy-management::before {
margin-right: 3px;
}
%composite-row-header .policy-management dd::before,
%composite-row-detail .policy-management::before {
@extend %with-star-fill-mask, %as-pseudo;
background-color: var(--brand-600);
}