Topic conditionals master merge (#2833)

- Restore updated symbols font file for Condition Widget icon glyph;
- Change "All telemetry | Any telemetry" to all lowercase;
- Fix cursor styles for Condition Widget;
- Fix Safari layout problems with Condition Set/section styles;
This commit is contained in:
Charles Hacskaylo 2020-03-31 15:36:50 -07:00 committed by GitHub
parent 3956cd1c06
commit ebaf702c59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 6 deletions

View File

@ -31,8 +31,8 @@
@change="updateMetadataOptions"
>
<option value="">- Select Telemetry -</option>
<option value="all">All Telemetry</option>
<option value="any">Any Telemetry</option>
<option value="all">all telemetry</option>
<option value="any">any telemetry</option>
<option v-for="telemetryOption in telemetry"
:key="telemetryOption.identifier.key"
:value="telemetryOption.identifier"

View File

@ -29,7 +29,7 @@
&__content {
display: flex;
flex-direction: column;
flex: 1 1 auto;
flex: 0 1 auto;
overflow: hidden;
> * {
@ -87,7 +87,7 @@
/***************************** TEST DATA */
.c-cs-tests {
flex: 1 1 auto;
flex: 0 1 auto;
overflow: auto;
padding-right: $interiorMarginSm;

View File

@ -28,6 +28,10 @@
border: 1px solid transparent;
display: inline-block;
padding: $interiorMarginLg $interiorMarginLg * 2;
cursor: inherit !important;
&[href] {
cursor: pointer !important;
}
}
// Make Condition Widget expand when in a hidden frame Layout context

View File

@ -255,13 +255,13 @@ section {
}
&.is-expanded {
flex: 1 1 100%;
max-height: max-content;
flex: 0 1 auto;
}
.c-section__header {
@include propertiesHeader();
display: flex;
flex: 0 0 auto;
align-items: center;
margin-bottom: $interiorMargin;