mirror of
https://github.com/status-im/consul.git
synced 2025-02-03 17:34:08 +00:00
fc14a412fd
* Add Partition to all our models * Add partitions into our serializers/fingerprinting * Make some amends to a few adapters ready for partitions * Amend blueprints to avoid linting error * Update all our repositories to include partitions, also Remove enabled/disable nspace repo and just use a nspace with conditionals * Ensure nspace and parition parameters always return '' no matter what * Ensure data-sink finds the model properly This will later be replaced by a @dataSink decorator but we are find kicking that can down the road a little more * Add all the new partition data layer * Add a way to set the title of the page from inside the route and make it accessibile via a route announcer * Make the Consul Route the default/basic one * Tweak nspace and partition abilities not to check the length * Thread partition through all the components that need it * Some ACL tweaks * Move the entire app to use partitions * Delete all the tests we no longer need * Update some Unit tests to use partition * Fix up KV title tests * Fix up a few more acceptance tests * Fixup and temporarily ignore some acceptance tests * Stop using ember-cli-page-objects fillable as it doesn't seem to work * Fix lint error * Remove old ACL related test * Add a tick after filling out forms * Fix token warning modal * Found some more places where we need a partition var * Fixup some more acceptance tests * Tokens still needs a repo service for CRUD * Remove acceptance tests we no longer need * Fixup and "FIXME ignore" a few tests * Remove an s * Disable blocking queries for KV to revert to previous release for now * Fixup adapter tests to follow async/function resolving interface * Fixup all the serializer integration tests * Fixup service/repo integration tests * Fixup deleting acceptance test * Fixup some ent tests * Make sure nspaces passes the dc through for when thats important * ...aaaand acceptance nspaces with the extra dc param
166 lines
3.5 KiB
SCSS
166 lines
3.5 KiB
SCSS
@import './app';
|
|
@import 'prism-coldark-dark';
|
|
|
|
// temporary component debugging setup
|
|
@import 'consul-ui/components/main-nav-vertical/debug';
|
|
@import 'consul-ui/components/badge/debug';
|
|
@import 'consul-ui/components/csv-list/debug';
|
|
@import 'consul-ui/components/horizontal-kv-list/debug';
|
|
@import 'consul-ui/components/icon-definition/debug';
|
|
@import 'consul-ui/components/inline-alert/debug';
|
|
@import 'consul-ui/components/definition-table/debug';
|
|
|
|
html.is-debug body > .brand-loader {
|
|
display: none !important;
|
|
}
|
|
html:not(.with-data-source) .data-source-debug {
|
|
display: none;
|
|
}
|
|
html.with-route-announcer .route-title {
|
|
@extend %unvisually-hidden;
|
|
}
|
|
.data-source-debug {
|
|
color: red;
|
|
}
|
|
.data-source-debug input:checked + pre code::after {
|
|
content: attr(data-json);
|
|
display: block;
|
|
}
|
|
.data-source-debug input {
|
|
display: none;
|
|
}
|
|
.docs {
|
|
.tabular-collection,
|
|
.list-collection {
|
|
height: 300px !important;
|
|
}
|
|
[role='banner'] nav:first-of-type {
|
|
& {
|
|
padding-top: 0 !important;
|
|
height: calc(100vh - var(--chrome-height, 47px));
|
|
}
|
|
ul {
|
|
margin-bottom: 100px;
|
|
padding-top: 0 !important;
|
|
}
|
|
li.consul-components a::before,
|
|
li.components a::before {
|
|
@extend %with-logo-glimmer-color-icon, %as-pseudo;
|
|
margin-right: 5px;
|
|
}
|
|
li.consul-components.css-component a::before,
|
|
li.components.css-component a::before {
|
|
@extend %with-logo-glimmer-color-icon, %as-pseudo;
|
|
}
|
|
li.consul-components.ember-component a::before,
|
|
li.components.ember-component a::before {
|
|
@extend %with-logo-ember-circle-color-icon, %as-pseudo;
|
|
}
|
|
}
|
|
main {
|
|
& {
|
|
background-color: white;
|
|
margin-bottom: 2rem;
|
|
}
|
|
> ol,
|
|
> ul {
|
|
list-style-position: outside;
|
|
margin-bottom: 1rem;
|
|
margin-left: 2rem;
|
|
}
|
|
> ul {
|
|
list-style-type: disc;
|
|
}
|
|
> h1,
|
|
> h2,
|
|
> h3,
|
|
> h4 {
|
|
margin-bottom: 1em;
|
|
}
|
|
> h1 {
|
|
padding-top: 20px;
|
|
@extend %h100;
|
|
}
|
|
> h2 {
|
|
@extend %h200;
|
|
}
|
|
> h3 {
|
|
@extend %h300;
|
|
}
|
|
> h4 {
|
|
@extend %h400;
|
|
}
|
|
> p {
|
|
@extend %p1;
|
|
}
|
|
> table {
|
|
margin-bottom: 3em;
|
|
}
|
|
> table td {
|
|
font-weight: normal !important;
|
|
cursor: default !important;
|
|
}
|
|
> table td code {
|
|
@extend %inline-code;
|
|
vertical-align: bottom;
|
|
}
|
|
> table tr:hover {
|
|
box-shadow: none;
|
|
}
|
|
> ol code,
|
|
> ul code {
|
|
@extend %inline-code;
|
|
}
|
|
}
|
|
.docfy-demo {
|
|
& {
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
}
|
|
&__example {
|
|
& {
|
|
border-top: 1px solid;
|
|
border-left: 1px solid;
|
|
border-right: 1px solid;
|
|
border-color: var(--gray-200);
|
|
padding: 1rem;
|
|
margin-bottom: 0;
|
|
}
|
|
ol,
|
|
ul {
|
|
margin-bottom: 0;
|
|
}
|
|
figure {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
figcaption {
|
|
margin-bottom: 0.5rem;
|
|
color: var(--gray-400);
|
|
font-style: italic;
|
|
}
|
|
figcaption code {
|
|
@extend %inline-code;
|
|
}
|
|
figure > [type='text'] {
|
|
border: 1px solid var(--gray-999);
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
}
|
|
figure > select {
|
|
border: 1px solid var(--gray-999);
|
|
padding: 0.5rem;
|
|
}
|
|
}
|
|
// &__snippets__tabs__button {
|
|
// display: none;
|
|
// }
|
|
&__snippet {
|
|
pre {
|
|
margin: 0 !important;
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|