open-nomad/ui/app/styles/components/inline-definitions.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
949 B
SCSS
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
2017-09-19 14:47:10 +00:00
.inline-definitions {
.label {
text-transform: uppercase;
2021-10-12 20:36:10 +00:00
display: inline-block;
2017-09-19 14:47:10 +00:00
color: darken($grey-blue, 20%);
margin-right: 2rem;
2021-10-12 20:36:10 +00:00
margin-bottom: 0;
2017-09-19 14:47:10 +00:00
font-size: inherit;
font-weight: $weight-semibold;
}
&.is-faded {
color: darken($grey-blue, 20%);
}
2017-09-19 14:47:10 +00:00
.pair {
margin-right: 2em;
white-space: nowrap;
2017-09-19 14:47:10 +00:00
&.is-wrappable {
white-space: normal;
display: block;
.tag {
vertical-align: middle;
}
}
2017-09-19 14:47:10 +00:00
.term {
font-weight: $weight-semibold;
margin-right: 0.5em;
}
&.is-faded {
color: darken($grey-blue, 20%);
}
.has-emphasis {
color: $text;
font-weight: $weight-semibold;
}
}
.icon-field {
display: flex;
margin-left: -1em;
.icon-container {
width: 1.5em;
}
}
&.is-small {
font-size: $size-7;
}
2017-09-19 14:47:10 +00:00
}