e0326c3b0a
This gives more prominence to 'Service Instances' as opposed to 'Services'. It also begins to surface Connect related 'nouns' such as 'Proxies' and 'Upstreams' and begins to interconnect them giving more visibility to operators. Various smaller changes: 1. Move healthcheck-status component to healthcheck-output 2. Create a new healthcheck-status component for showing the number of checks plus its icon 3. Create a new healthcheck-info component to group multiple statuses plus a different view if there are no checks 4. Componentize tag-list
39 lines
784 B
SCSS
39 lines
784 B
SCSS
/*TODO: This remains a mix of form-elements */
|
|
/* form-elements should probably be a collection of these */
|
|
@import './form-elements/index';
|
|
@import './toggle/index';
|
|
@import './radio-group/index';
|
|
@import './checkbox-group/index';
|
|
label span {
|
|
@extend %user-select-none;
|
|
}
|
|
.has-error {
|
|
@extend %form-element-error;
|
|
}
|
|
%modal-dialog .type-text,
|
|
%app-content .type-text {
|
|
@extend %form-element;
|
|
}
|
|
.type-toggle {
|
|
@extend %form-element, %toggle;
|
|
}
|
|
%form-element,
|
|
%radio-group,
|
|
%checkbox-group,
|
|
form table,
|
|
%app-content form dl {
|
|
@extend %form-row;
|
|
}
|
|
%app-content form:not(.filter-bar) [role='radiogroup'] {
|
|
@extend %radio-group;
|
|
}
|
|
%radio-group label {
|
|
@extend %form-element;
|
|
}
|
|
.checkbox-group {
|
|
@extend %checkbox-group;
|
|
}
|
|
%toggle + .checkbox-group {
|
|
margin-top: -1em;
|
|
}
|