@hawtio/react
Version:
A Hawtio reimplementation based on TypeScript + React.
604 lines (570 loc) • 14.4 kB
CSS
/* src/plugins/springboot/Health.css */
.pf-v6-c-icon {
padding-left: 0.5rem;
}
/* src/plugins/shared/JmxContentMBeans.css */
.jmx-table-body {
cursor: pointer;
}
/* src/plugins/shared/operations/OperationForm.css */
.jmx-operation-error .pf-v6-c-clipboard-copy__expandable-content {
background-color: #ffe6e6;
}
.operation-datatype {
margin-right: 0.5em;
}
/* src/plugins/shared/operations/Operations.css */
#jmx-operation-list .pf-v6-c-data-list__item-content {
display: grid;
}
/* src/plugins/camel/Camel.css */
.camel-split {
display: flex;
flex-direction: row;
height: calc(100vh - 85px);
}
.gutter {
background-color: #eee;
background-repeat: no-repeat;
background-position: 50%;
}
.gutter.gutter-horizontal {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==);
cursor: col-resize;
}
/* src/plugins/camel/CamelContent.css */
#camel-content {
height: 100%;
display: flex;
flex-direction: column;
}
#camel-content-header > #camel-contexts-toolbar {
float: right;
padding-top: 0;
padding-bottom: 0.5em;
}
section#camel-content-header.pf-v6-c-page__main-section {
display: block;
}
#camel-content-main > article {
overflow-y: inherit;
}
#camel-content-main .pf-v6-c-page__main {
overflow-x: auto;
}
#camel-content-main,
#camel-content-main > .pf-v6-c-panel,
#camel-content-main > .pf-v6-c-panel .pf-v6-c-panel__main,
#camel-content-main > .pf-v6-c-panel .pf-v6-c-panel__main > .pf-v6-c-panel__main-body {
flex-grow: 1;
display: flex;
flex-direction: column;
}
/* src/plugins/camel/route-diagram/RouteDiagram.css */
:root {
--hawtio-diagram-node--BackgroundColor: #fafafa;
}
:where(.pf-v5-theme-dark):root {
--hawtio-diagram-node--BackgroundColor: #656565;
}
.react-flow__node-camel {
height: 80px;
width: 150px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.react-flow__node-camel .camel-node-content {
display: grid;
grid-template-rows: 25% 25% 25% 25%;
grid-template-columns: 40% 35% 25%;
border: 2px solid #8a8d90;
background-color: var(--hawtio-diagram-node--BackgroundColor);
padding: 5px;
height: 100px;
min-width: 150px;
border-radius: 10px;
font-size: small;
}
.react-flow__node-camel .camel-node-content .annotation {
grid-row: 1 / 2;
grid-column: 3 / 4;
}
.react-flow__node-camel .camel-node-content .icon {
grid-row: 1 / 3;
grid-column: 1 / 2;
}
.react-flow__node-camel .camel-node-content .icon img {
margin-top: 5px;
margin-left: 5px;
width: 30px;
}
.react-flow__node-camel .camel-node-content .inflights {
grid-row: 2 / 3;
grid-column: 2 / 3;
color: #0f4a85;
justify-self: center;
}
.react-flow__node-camel .camel-node-content .number {
grid-row: 2 / 3;
grid-column: 3 / 4;
justify-self: center;
}
.react-flow__node-camel .camel-node-content .camel-node-label {
grid-row: 3 / 4;
grid-column: 1 / 4;
justify-self: center;
}
.react-flow__node-camel .camel-node-content .camel-node-id {
grid-row: 4 / 5;
grid-column: 1 / 4;
justify-self: center;
}
.react-flow__attribution {
background-color: var(--pf-v6-c-page__main-section--BackgroundColor) ;
}
:where(.pf-v5-theme-dark) .react-flow__attribution a {
color: var(--pf-t--global--dark--background--color--200) ;
}
.node-tooltip {
border: solid 1px black;
border-radius: 1px;
font-size: xx-small;
}
.node-tooltip table tbody td {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 3px;
padding-right: 3px;
}
.node-tooltip-odd-row {
background-color: var(--pf-t--global--background--color--100);
}
.node-tooltip-odd-row td {
color: var(--pf-t--global--text--color--100);
}
.node-tooltip-even-row {
background-color: var(--pf-t--global--background--color--200);
}
.node-tooltip-even-row td {
color: var(--pf-t--global--text--color--200);
}
.node-tooltip-value {
text-align: right;
}
#camel-route-diagram-outer-div {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}
.camel-route-diagram {
flex-grow: 1;
position: relative;
width: 100%;
}
.highlighted {
border-color: var(--pf-t--global--background--color--100) ;
}
.disabled {
background-color: var(--pf-t--color--disabled--200) ;
}
/* src/plugins/camel/debug/Debug.css */
#message-drawer-content-body {
display: flex;
flex-direction: column;
}
#route-diagram-breakpoint-view {
overflow: auto;
margin-top: 1.5em;
flex-grow: 1;
display: flex;
flex-direction: column;
min-height: 0;
}
#debug-header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.breakpoint-symbol {
text-align: right;
color: darkred;
}
.cond-bkp-form-lang-radio {
float: left;
}
.cond-bkp-form-lang-radio-help {
float: left;
padding-top: 0 ;
}
.cond-bkp-form-error {
color: red;
}
.cond-bkp-form-error-icon {
float: left;
width: 5%;
margin-right: 0.5em;
margin-top: 0.25em;
}
.cond-bkp-form-error-msg {
float: left;
width: 90%;
}
/* src/plugins/camel/endpoints/EndpointParametersForm.css */
.endpoint-parameter-number-input {
width: 100%;
}
.endpoint-parameter-number-input input {
text-align: center ;
}
/* src/plugins/camel/properties/Properties.css */
#properties-card-title-panel img {
margin-right: 1em;
vertical-align: middle;
}
#properties-card-title-panel-labelgroup {
margin-left: 1em;
}
.properties-list-panel {
margin-top: 1em ;
}
.properties-list-panel .pf-v6-c-panel__header {
color: darkblue;
}
.properties-no-properties {
font-style: italic ;
}
.properties-name-tooltip-button {
margin-left: 0.5em;
color: grey;
}
/* src/plugins/camel/rest-services/rest-services.css */
#rest-services-card-body {
min-height: 25vh;
}
#select-filter-type {
min-width: 10em;
}
#search-filter-input {
min-width: 15em;
}
/* src/plugins/camel/trace/Tracing.css */
.noTracing {
margin-bottom: 0.5em;
}
#trace-content {
display: flex;
flex-direction: row;
height: 100%;
}
#route-message-table {
height: 100%;
flex: 1;
}
#route-message-table-body {
height: 100%;
max-height: 60vh;
max-width: 40vw;
overflow: auto;
}
#route-diagram-tracing-view {
flex: 1;
}
#route-diagram-tracing-view .camel-route-diagram {
height: calc(100vh - 330px);
min-height: 50vh;
max-height: calc(100vh - 330px);
width: 100%;
}
#trace-header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
#route-message-table-header button {
float: right;
}
/* src/plugins/camel/type-converters/TypeConverters.css */
.camel-type-converters-statistics {
margin-left: 3em ;
}
/* src/plugins/camel/CamelTreeView.css */
#camel-tree-view.pf-v6-c-tree-view {
--pf-v6-c-tree-view__node--indent--base: 1.5rem;
--pf-v6-c-tree-view__node--nested-indent--base: 1rem;
--pf-v6-c-tree-view--m-guides__node--before--Width: 0.5rem;
--pf-v6-c-tree-view--m-guides__node--before--Height: 1px;
--pf-v6-c-tree-view--m-guides__node--before--Top: 0.75rem;
--pf-v6-c-tree-view--m-guides__node--before--BackgroundColor: #aaa;
--pf-v6-c-tree-view--m-guides__list-item--before--Width: 1px;
--pf-v6-c-tree-view--m-guides__list-item--before--Height: 100%;
--pf-v6-c-tree-view--m-guides__list-item--before--BackgroundColor: #aaa;
--pf-v6-c-tree-view--m-guides__list-item--last-child--before--Height: 0.75rem;
--pf-v6-c-tree-view--m-guides__list-node--guide-width--base: 0.5rem;
--pf-v6-c-tree-view--m-guides--guide-left--base--offset: 1.5rem;
--pf-v6-global--LineHeight--md: normal;
}
#camel-tree-view .pf-v6-c-tree-view__list {
height: 100%;
}
#camel-tree-view > .pf-v6-c-tree-view__list {
max-height: 83vh;
overflow: auto;
}
#camel-tree-view .pf-v6-c-tree-view__node {
padding-top: 0;
padding-bottom: 0;
align-items: center;
}
#camel-tree-view .pf-v6-c-tree-view__node-toggle {
padding: 0;
}
#camel-tree-view .pf-v6-c-tree-view__node-text {
padding: 0 4px;
font-size: smaller;
}
#camel-tree-view .pf-v6-c-tree-view__node-icon {
padding: 0 4px;
flex-shrink: 0;
}
#camel-tree-view .pf-v6-c-tree-view__node-text {
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* src/plugins/camel/CamelPreferences.css */
.pf-v6-c-form__group {
grid-template-columns: 1fr 4fr ;
}
.pf-v6-c-form__group-label {
padding-top: 0px ;
display: flex;
align-items: center;
}
.pf-v6-c-form__group-label > label {
padding-right: 0.5em;
}
/* src/plugins/connect/Connect.css */
#connect-header-title svg {
margin-left: 0.5rem;
width: 1rem;
vertical-align: middle;
}
/* src/plugins/connect/remote/Remote.css */
.data-list-action-toggle {
margin-right: 0px ;
}
/* src/plugins/console-status/ConsoleStatus.css */
.console-alert {
margin-top: 1em;
}
/* src/plugins/diagnostics/FlightRecorder.css */
.pf-v6-c-modal-box {
max-width: 50vw ;
}
.pf-v6-c-form__group {
max-width: 30rem;
}
.flight-recorder-recording-text {
text-align: center;
}
/* src/plugins/jmx/Jmx.css */
.jmx-split {
display: flex;
flex-direction: row;
height: calc(100vh - 85px);
}
.gutter {
background-color: #eee;
background-repeat: no-repeat;
background-position: 50%;
}
.gutter.gutter-horizontal {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==);
cursor: col-resize;
}
/* src/plugins/jmx/JmxContent.css */
#jmx-content {
height: 100%;
}
section#jmx-content-header.pf-v6-c-page__main-section {
display: block;
}
#jmx-content-main > article {
overflow: auto;
}
/* src/plugins/jmx/JmxTreeView.css */
#jmx-tree-view.pf-v6-c-tree-view {
--pf-v6-c-tree-view__node--indent--base: 1.5rem;
--pf-v6-c-tree-view__node--nested-indent--base: 1rem;
--pf-v6-c-tree-view--m-guides__node--before--Width: 1.5rem;
--pf-v6-c-tree-view--m-guides__node--before--Height: 1px;
--pf-v6-c-tree-view--m-guides__node--before--Top: 0.75rem;
--pf-v6-c-tree-view--m-guides__node--before--BackgroundColor: #aaa;
--pf-v6-c-tree-view--m-guides__list-item--before--Width: 1px;
--pf-v6-c-tree-view--m-guides__list-item--before--Height: 100%;
--pf-v6-c-tree-view--m-guides__list-item--before--BackgroundColor: #aaa;
--pf-v6-c-tree-view--m-guides__list-item--last-child--before--Height: 0.75rem;
--pf-v6-c-tree-view--m-guides__list-node--guide-width--base: 0.5rem;
--pf-v6-c-tree-view--m-guides--guide-left--base--offset: 1.5rem;
--pf-v6-global--LineHeight--md: normal;
}
#jmx-tree-view.pf-v6-c-tree-view .pf-m-selectable {
--pf-v6-c-tree-view--m-guides__node--before--Width: 0.5rem;
}
#jmx-tree-view .pf-v6-c-tree-view__list {
height: 100%;
}
#jmx-tree-view > .pf-v6-c-tree-view__list {
max-height: 83vh;
overflow: auto;
}
#jmx-tree-view .pf-v6-c-tree-view__node {
padding-top: 0;
padding-bottom: 0;
align-items: center;
}
#jmx-tree-view .pf-v6-c-tree-view__node-toggle {
padding: 0;
}
#jmx-tree-view .pf-v6-c-tree-view__node-text {
padding: 0 4px;
font-size: smaller;
}
#jmx-tree-view .pf-v6-c-tree-view__node-icon {
padding: 0 4px;
flex-shrink: 0;
}
#jmx-tree-view .pf-v6-c-tree-view__node-text {
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* src/ui/about/HawtioAbout.css */
#hawtio-about-description.pf-v6-c-content {
margin-bottom: 1.5rem;
}
#hawtio-about-product-info > h3 {
margin-bottom: 1rem;
}
/* src/ui/page/HawtioHeader.css */
#hawtio-header {
display: grid;
}
#hawtio-header-brand {
display: flex;
align-items: center;
text-decoration: none;
color: var(--pf-t--global--background--color--200);
}
#hawtio-header-brand .pf-v6-c-brand {
max-height: 50px;
margin-right: 1em;
}
#hawtio-header-toolbar .pf-v6-c-toolbar__content-section {
justify-content: end;
}
#hawtio-header-user-dropdown-toggle {
display: flex;
}
#hawtio-header-user-dropdown-toggle .pf-v6-c-dropdown__toggle-text {
margin-left: 5px;
}
.pf-v6-c-menu__item a {
text-decoration: none;
color: unset;
}
/* src/ui/page/HawtioPage.css */
#hawtio-main-page {
background-color: var(--pf-t--global--background--color--100);
}
/* src/ui/util/FilteredTable.css */
.pf-v6-c-panel__header {
padding: 0.5rem ;
}
.pf-v6-c-panel__main-body {
padding: 0.5rem ;
}
.pf-v6-c-form__group {
max-width: 100%;
}
/* src/Hawtio.css */
.idp {
margin: 0.8em 0;
}
/* src/plugins/logs/Logs.css */
#hawtio-main-page > div.pf-v6-c-page__main-container {
margin-right: 0;
}
/* src/plugins/quartz/Quartz.css */
.quartz-split {
display: flex;
flex-direction: row;
height: calc(100vh - 85px);
}
.gutter {
background-color: #eee;
background-repeat: no-repeat;
background-position: 50%;
}
.gutter.gutter-horizontal {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==);
cursor: col-resize;
}
/* src/plugins/quartz/QuartzContent.css */
#quartz-content {
height: 100%;
}
section#quartz-content-header.pf-v6-c-page__main-section {
display: block;
}
#quartz-content-main > article {
overflow: auto;
}
/* src/plugins/quartz/jobs/Jobs.css */
.quartz-jobs-searchToolbar {
width: 9rem ;
}
/* src/plugins/quartz/scheduler/Scheduler.css */
#quartz-scheduler .pf-v6-c-icon {
padding-right: 1em;
}
/* src/plugins/quartz/QuartzTreeView.css */
#quartz-tree-view .pf-v6-c-tree-view__list {
height: 100%;
}
#quartz-tree-view > .pf-v6-c-tree-view__list {
max-height: 83vh;
overflow: auto;
}
#quartz-tree-view .pf-v6-c-tree-view__node {
padding-left: 0.5rem;
}
#quartz-tree-view .pf-v6-c-tree-view__node-toggle {
padding-top: 0px;
padding-bottom: 0px;
padding-left: 6px;
padding-right: 6px;
}
#quartz-tree-view .pf-v6-c-tree-view__node-text {
padding-left: 0;
}
#quartz-tree-view .pf-v6-c-tree-view__node-icon {
flex-shrink: 0;
}
#quartz-tree-view .pf-v6-c-tree-view__node-text {
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* src/plugins/runtime/Runtime.css */
#hawtio-main-page > div.pf-v6-c-page__main-container {
margin-right: 0;
}
/* src/plugins/springboot/Info.css */
#hawtio-main-page > div.pf-v6-c-page__main-container {
border-radius: 0;
}
/*# sourceMappingURL=ui-TNIMRSAW.css.map */