2021-03-26 15:47:47 +00:00
|
|
|
// List
|
|
|
|
.consul-auth-method-list ul {
|
2021-02-17 18:56:56 +00:00
|
|
|
.locality::before {
|
|
|
|
@extend %with-public-default-mask, %as-pseudo;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2021-03-17 14:40:56 +00:00
|
|
|
}
|
2021-03-26 15:47:47 +00:00
|
|
|
|
|
|
|
// View
|
2021-03-17 14:40:56 +00:00
|
|
|
.consul-auth-method-view {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
section {
|
|
|
|
@extend %p1;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow-y: auto;
|
|
|
|
h2 {
|
|
|
|
@extend %h200;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
thead td {
|
|
|
|
color: var(--gray-500);
|
|
|
|
font-weight: $typo-weight-semibold;
|
|
|
|
font-size: $typo-size-700;
|
|
|
|
}
|
2021-03-31 14:55:31 +00:00
|
|
|
tbody {
|
|
|
|
td {
|
|
|
|
font-size: $typo-size-600;
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
tr:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2021-03-17 14:40:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dl,
|
|
|
|
section dl {
|
2021-03-26 15:47:47 +00:00
|
|
|
@extend %tabular-dl;
|
2021-03-17 14:40:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-26 15:47:47 +00:00
|
|
|
// Binding List
|
|
|
|
.consul-auth-method-binding-list {
|
|
|
|
p {
|
|
|
|
margin-bottom: 4px !important;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
@extend %h200;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
dl {
|
|
|
|
@extend %tabular-dl;
|
|
|
|
}
|
|
|
|
code {
|
|
|
|
background-color: var(--gray-050);
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 14:55:31 +00:00
|
|
|
// Nspace List
|
|
|
|
.consul-auth-method-nspace-list {
|
|
|
|
thead {
|
|
|
|
td {
|
|
|
|
color: var(--gray-500) !important;
|
|
|
|
font-weight: $typo-weight-semibold !important;
|
|
|
|
font-size: $typo-size-700 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tbody {
|
|
|
|
td {
|
|
|
|
font-size: $typo-size-600;
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
tr:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|