mirror of
https://github.com/status-im/consul.git
synced 2025-02-13 14:16:35 +00:00
* Create BindingRule adapter and tests * Create BindingRule serializer and test * Create BindingRule model and repository * Add binding-rules mock data * Create binding-rules router and call endpoint * Create Binding rules tab * Create and use BindingView component * Create empty state for BindingView * Remove binding rule requestForQueryRecord endpoint and tests * Update binding rules selector to be monospaced * Add bind type tooltip * Create and Tabular-dl styling component * Update hr tag global styling * Rename BindingView to BindingList and refactor * Add translations for bind types tooltip info * Remove unused endpoint * Refactor based on review notes
22 lines
447 B
SCSS
22 lines
447 B
SCSS
%tabular-dl {
|
|
> dt:last-of-type,
|
|
> dd:last-of-type {
|
|
border-color: var(--gray-300) !important;
|
|
}
|
|
dt,
|
|
dd {
|
|
border-color: var(--gray-300) !important;
|
|
color: $black !important;
|
|
}
|
|
dt {
|
|
font-weight: $typo-weight-bold;
|
|
}
|
|
dd .copy-button button::before {
|
|
background-color: $black;
|
|
}
|
|
dt.type + dd span::before {
|
|
@extend %with-info-circle-outline-mask, %as-pseudo;
|
|
background-color: var(--gray-500);
|
|
}
|
|
}
|