Kenia 4d13e31ae0
ui: Auth Methods - Create Binding Rules tab (#9914)
* 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
2021-03-26 11:47:47 -04:00

109 lines
1.4 KiB
SCSS

a {
text-decoration: none;
}
td,
th,
span,
strong {
color: inherit;
}
/* %typo-body */
body {
color: var(--gray-900);
}
/* TODO: Consider changing this to 'p a, dd a, td a' etc etc*/
a {
color: $color-action;
}
html {
background-color: $white;
}
hr {
background-color: $gray-500;
}
button {
background-color: $transparent;
}
html {
font-size: $typo-size-000;
}
/* %typo-body */
body {
line-height: 1.5;
}
body,
button,
input,
select,
textarea {
font-family: $typo-family-sans;
}
code,
pre {
font-family: $typo-family-mono;
}
strong {
font-style: inherit;
font-weight: $typo-weight-bold;
}
html {
text-rendering: optimizeLegibility;
text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
code,
pre {
-moz-osx-font-smoothing: auto;
-webkit-font-smoothing: auto;
}
pre {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
white-space: pre;
word-wrap: normal;
}
html {
overflow-x: hidden;
overflow-y: scroll;
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
fieldset {
border: none;
width: 100%;
}
a,
input[type='checkbox'],
input[type='radio'] {
cursor: pointer;
}
hr {
border: none;
display: block;
}
input[type='checkbox'],
input[type='radio'] {
vertical-align: baseline;
}
td,
th {
text-align: left;
vertical-align: top;
}
html {
min-width: 300px;
}
hr {
height: 1px;
margin: 1.5rem 0;
background-color: var(--gray-200);
}