Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | import { css } from '@emotion/css';
export const WidgetContainer = css`
box-sizing: border-box;
width: 100%;
padding: var(--jp-padding-large);
flex-direction: column;
display: flex;
color: var(--jp-ui-font-color0);
`;
export const Header = css`
width: 100%;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
padding-bottom: var(--jp-padding-20);
color: var(--jp-ui-font-color0);
`;
export const HeaderDescription = css`
max-width: 525px;
color: var(--jp-ui-font-color2);
margin-bottom: var(--jp-padding-medium);
`;
export const CategoryContainerDiv = css`
display: block;
margin-bottom: 0.5em;
overflow-y: scroll;
`;
export const CategoryTitleDiv = css`
align-items: center;
display: inline-flex;
margin-bottom: var(--jp-padding-16);
margin-left: 1em;
font-size: var(--jp-ui-font-size3);
color: var(--jp-ui-font-color0);
`;
export const WidgetFieldsContainer = css`
display: flex;
flex-direction: column;
font-size: 12px;
color: var(--jp-ui-font-color0);
padding: 10px;
overflow-x: auto;
overflow-y: hidden;
gap: 20px;
`;
export const SecurityConfigContainer = css`
display: flex;
justify-content: space-between;
`;
export const EnvironmentVariablsContainer = css`
display: flex;
align-items: center;
`;
export const MarginBottom = css`
margin-bottom: var(--jp-padding-medium);
`;
export const ConfigBtn = css`
width: 50% !important;
text-align: center;
height: 30px;
font-size: 12px !important;
`;
export const ActionBtnContainer = css`
display: inline-flex;
justify-content: right;
`;
export const ActionBtn = css`
height: fit-content;
width: 90px;
text-align: center;
margin-right: var(--jp-padding-medium);
`;
export const ActionBtnWrapper = css`
position: absolute;
right: 0%;
bottom: 0%;
margin-bottom: var(--jp-padding-large);
`;
export const SelectWidth = css`
div:nth-child(2) {
width: 98%;
}
`;
export const SelectWidthInstanceType = css`
div:nth-child(2) {
width: 49%;
}
`;
export const SelectWidthKernel = css`
div:nth-child(2) {
width: 150px;
}
`;
export const CredentialsErrorDialogParagraph = css`
width: 500px;
margin-bottom: var(--jp-size-4);
`;
export const TooltipCheckBoxContainer = css`
display: flex;
align-items: center;
`;
export const TooltipTextContainer = css`
display: flex;
align-items: center;
`;
export const TooltipLink = css`
color: var(--jp-brand-color3);
`;
export const Checkbox = css`
padding: 4px;
`;
export const PopperInteractive = css`
color: var(--jp-ui-font-color0);
`;
export const AdvancedOptionsSelectContainer = css`
display: flex;
flex-direction: column;
gap: var(--jp-ui-font-size1);
`;
export const ErrorMessageBlock = css`
color: var(--jp-error-color1);
padding: 12px;
`;
|