diff --git a/packages/my-joy-images/src/containers/list.js b/packages/my-joy-images/src/containers/list.js index 72cbd3c9..4d687909 100644 --- a/packages/my-joy-images/src/containers/list.js +++ b/packages/my-joy-images/src/containers/list.js @@ -130,9 +130,7 @@ export default compose( i => ImageType[i] === 'Infrastructure Container' ); - const filtered = filter - ? index.search(filter) - : images; + const filtered = filter ? index.search(filter) : images; return { images: filtered diff --git a/packages/my-joy-instances/src/components/__tests__/__image_snapshots__/key-value-ui-js-key-value-submitting-1-snap.png b/packages/my-joy-instances/src/components/__tests__/__image_snapshots__/key-value-ui-js-key-value-submitting-1-snap.png index e00af188..23d05a9e 100644 Binary files a/packages/my-joy-instances/src/components/__tests__/__image_snapshots__/key-value-ui-js-key-value-submitting-1-snap.png and b/packages/my-joy-instances/src/components/__tests__/__image_snapshots__/key-value-ui-js-key-value-submitting-1-snap.png differ diff --git a/packages/my-joy-instances/src/components/__tests__/__snapshots__/key-value.spec.js.snap b/packages/my-joy-instances/src/components/__tests__/__snapshots__/key-value.spec.js.snap index 83de1fd0..89e49f41 100644 --- a/packages/my-joy-instances/src/components/__tests__/__snapshots__/key-value.spec.js.snap +++ b/packages/my-joy-instances/src/components/__tests__/__snapshots__/key-value.spec.js.snap @@ -3378,6 +3378,7 @@ exports[`renders without throwing 1`] = ` className="c18 c19" disabled={false} id="p" + name="name" onBlur={undefined} /> diff --git a/packages/my-joy-instances/src/components/create-instance/user-script.js b/packages/my-joy-instances/src/components/create-instance/user-script.js new file mode 100644 index 00000000..dbbe4cd0 --- /dev/null +++ b/packages/my-joy-instances/src/components/create-instance/user-script.js @@ -0,0 +1,40 @@ +import React, { PureComponent, Fragment } from 'react'; +import { Field } from 'redux-form'; +import { Margin } from 'styled-components-spacing'; + +import { FormGroup, Button, H3, P } from 'joyent-ui-toolkit'; +import Editor from 'joyent-ui-toolkit/dist/es/editor'; + +class EditorField extends PureComponent { + render() { + return ; + } +} + +export default ({ onSubmit }) => ( +
+ + + + + + +
+); + +export const Overview = ({ script, lines }) => ( + + {script ? ( + +

User script added

+ +

+ {lines} line{lines === 1 ? '' : 's'} of code +

+
+
+ ) : ( +

No user script added

+ )} +
+); diff --git a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/list-ui-js-item-mutating-1-snap.png b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/list-ui-js-item-mutating-1-snap.png index 378f65af..87bf4404 100644 Binary files a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/list-ui-js-item-mutating-1-snap.png and b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/list-ui-js-item-mutating-1-snap.png differ diff --git a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/snapshots-ui-js-item-mutating-1-snap.png b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/snapshots-ui-js-item-mutating-1-snap.png index 029909cf..835c0f22 100644 Binary files a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/snapshots-ui-js-item-mutating-1-snap.png and b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/snapshots-ui-js-item-mutating-1-snap.png differ diff --git a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/summary-ui-js-summary-starting-stopping-rebooting-removing-1-snap.png b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/summary-ui-js-summary-starting-stopping-rebooting-removing-1-snap.png index abee92c9..9fe95502 100644 Binary files a/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/summary-ui-js-summary-starting-stopping-rebooting-removing-1-snap.png and b/packages/my-joy-instances/src/components/instances/__tests__/__image_snapshots__/summary-ui-js-summary-starting-stopping-rebooting-removing-1-snap.png differ diff --git a/packages/my-joy-instances/src/components/instances/__tests__/__snapshots__/metadata.spec.js.snap b/packages/my-joy-instances/src/components/instances/__tests__/__snapshots__/metadata.spec.js.snap index 2a2b040b..57c4b88f 100644 --- a/packages/my-joy-instances/src/components/instances/__tests__/__snapshots__/metadata.spec.js.snap +++ b/packages/my-joy-instances/src/components/instances/__tests__/__snapshots__/metadata.spec.js.snap @@ -1011,6 +1011,7 @@ exports[`renders without throwing 1`] = ` className="c18 c19" disabled={false} id="l" + name="name" onBlur={undefined} /> @@ -2141,6 +2142,7 @@ exports[`renders without throwing 1`] = ` className="c18 c19" disabled={false} id="n" + name="name" onBlur={undefined} /> diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/networks-ui-js-networks-loading-expanded-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/networks-ui-js-networks-loading-expanded-1-snap.png index 9c3d0b79..1b2fea9b 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/networks-ui-js-networks-loading-expanded-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/networks-ui-js-networks-loading-expanded-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-1-snap.png index 79e12fff..f3d0b0c3 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-1-snap.png index 48c8304d..fe4a5f81 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-create-form-open-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-create-form-open-1-snap.png index c944bc38..e6a57a2b 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-create-form-open-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-create-form-open-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-1-snap.png index cdc5916f..e6a57a2b 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-script-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-script-1-snap.png index cdc5916f..e6a57a2b 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-script-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-expanded-edit-form-open-script-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-proceeded-1-snap.png b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-proceeded-1-snap.png index aa999095..4e3eaa18 100644 Binary files a/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-proceeded-1-snap.png and b/packages/my-joy-instances/src/containers/create-instance/__tests__/__image_snapshots__/user-script-ui-js-user-script-proceeded-1-snap.png differ diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/metadata.spec.js.snap b/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/metadata.spec.js.snap index 08554c17..d7a923c4 100644 --- a/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/metadata.spec.js.snap +++ b/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/metadata.spec.js.snap @@ -1428,6 +1428,7 @@ Array [ className="c18 c19" disabled={false} id="t" + name="name" onBlur={undefined} /> @@ -3440,6 +3441,7 @@ Array [ className="c18 c19" disabled={false} id="l" + name="name" onBlur={undefined} /> @@ -4585,6 +4587,7 @@ Array [ className="c18 c19" disabled={false} id="n" + name="name" onBlur={undefined} /> @@ -6020,6 +6023,7 @@ Array [ className="c18 c19" disabled={false} id="p" + name="name" onBlur={undefined} /> @@ -7184,6 +7188,7 @@ Array [ className="c18 c19" disabled={false} id="r" + name="name" onBlur={undefined} /> diff --git a/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/user-script.spec.js.snap b/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/user-script.spec.js.snap index 4b14aacb..d3843a44 100644 --- a/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/user-script.spec.js.snap +++ b/packages/my-joy-instances/src/containers/create-instance/__tests__/__snapshots__/user-script.spec.js.snap @@ -1,8 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`renders without throwing 1`] = ` -Array [ - .c3 { +.c3 { font-size: 80%; font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; color: rgba(73,73,73,1); @@ -94,1049 +93,54 @@ Array [ }
+
-
+ -
- - - -
-
- - User Script - + + +
+ + User Script + +
+
-
-
-
, - .c23 { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; - overflow: visible; - text-transform: none; - -webkit-appearance: button; - -moz-appearance: button; - appearance: button; - min-width: 7.5rem; -} - -.c23::-moz-focus-inner, -.c23[type='button']::-moz-focus-inner, -.c23[type='reset']::-moz-focus-inner, -.c23[type='submit']::-moz-focus-inner { - border-style: none; - padding: 0; -} - -.c23:-moz-focusring, -.c23[type='button']:-moz-focusring, -.c23[type='reset']:-moz-focusring, -.c23[type='submit']:-moz-focusring { - outline: 0.0625rem dotted ButtonText; -} - -.c23 + button, -.c23 + a { - margin-left: 0.375rem; -} - -.c15 { - position: relative; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 100%; - max-width: 100%; -} - -.c22 { - display: inline-block; -} - -.c22 + button, -.c22 + a { - margin-left: 0.375rem; -} - -.c21 { - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: 3rem; - height: 3rem; - min-width: 7.5rem; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - -webkit-text-decoration: none; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: rgb(255,255,255); - -webkit-text-fill-color: currentcolor; - background-image: none; - background-color: rgb(59,70,204); - border-radius: 0.25rem; - border: solid 0.0625rem rgb(45,56,132); - color: rgb(70,70,70); - -webkit-text-fill-color: currentcolor; - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - margin: 0; -} - -.c21:focus { - outline: 0; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgb(59,70,204); - border-color: rgb(45,56,132); -} - -.c21:hover { - background-color: rgb(72,83,217); - border: solid 0.0625rem rgb(45,56,132); -} - -.c21:active, -.c21:active:hover, -.c21:active:focus { - background-image: none; - outline: 0; - background-color: rgb(45,56,132); - border-color: rgb(45,56,132); -} - -.c21[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c21:focus { - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); -} - -.c21:hover { - background-color: rgb(247,247,247); - border-color: rgb(216,216,216); -} - -.c21:active, -.c21:active:hover, -.c21:active:focus { - background-color: rgb(230,230,230); - border-color: rgb(216,216,216); -} - -.c24 { - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: 3rem; - height: 3rem; - min-width: 7.5rem; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - -webkit-text-decoration: none; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: rgb(255,255,255); - -webkit-text-fill-color: currentcolor; - background-image: none; - background-color: rgb(59,70,204); - border-radius: 0.25rem; - border: solid 0.0625rem rgb(45,56,132); - cursor: not-allowed; - pointer-events: none; - color: rgb(216,216,216); - background-color: rgb(250,250,250); - border-color: rgb(216,216,216); - margin: 0; -} - -.c24:focus { - outline: 0; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgb(59,70,204); - border-color: rgb(45,56,132); -} - -.c24:hover { - background-color: rgb(72,83,217); - border: solid 0.0625rem rgb(45,56,132); -} - -.c24:active, -.c24:active:hover, -.c24:active:focus { - background-image: none; - outline: 0; - background-color: rgb(45,56,132); - border-color: rgb(45,56,132); -} - -.c24[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c24:focus { - background-color: rgb(250,250,250); - border-color: rgb(216,216,216); -} - -.c24:hover { - background-color: rgb(250,250,250); - border-color: rgb(250,250,250); -} - -.c24:active, -.c24:active:hover, -.c24:active:focus { - background-color: rgb(250,250,250); - border-color: rgb(250,250,250); -} - -.c26 { - box-sizing: border-box; - display: inline-block; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: 3rem; - height: 3rem; - min-width: 7.5rem; - padding: 0.9375rem 1.125rem; - position: relative; - font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif; - font-size: 0.9375rem; - text-align: center; - font-style: normal; - font-stretch: normal; - line-height: normal; - -webkit-letter-spacing: normal; - -moz-letter-spacing: normal; - -ms-letter-spacing: normal; - letter-spacing: normal; - -webkit-text-decoration: none; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - color: rgb(255,255,255); - -webkit-text-fill-color: currentcolor; - background-image: none; - background-color: rgb(59,70,204); - border-radius: 0.25rem; - border: solid 0.0625rem rgb(45,56,132); - color: rgb(70,70,70); - -webkit-text-fill-color: currentcolor; - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - color: rgb(210,67,58); - -webkit-text-fill-color: currentcolor; - background-color: rgb(255,255,255); - border-color: rgb(210,67,58); - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0; - float: right; -} - -.c26:focus { - outline: 0; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgb(59,70,204); - border-color: rgb(45,56,132); -} - -.c26:hover { - background-color: rgb(72,83,217); - border: solid 0.0625rem rgb(45,56,132); -} - -.c26:active, -.c26:active:hover, -.c26:active:focus { - background-image: none; - outline: 0; - background-color: rgb(45,56,132); - border-color: rgb(45,56,132); -} - -.c26[disabled] { - cursor: not-allowed; - pointer-events: none; -} - -.c26:focus { - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); -} - -.c26:hover { - background-color: rgb(247,247,247); - border-color: rgb(216,216,216); -} - -.c26:active, -.c26:active:hover, -.c26:active:focus { - background-color: rgb(230,230,230); - border-color: rgb(216,216,216); -} - -.c26:focus { - color: rgb(205,37,27); - background-color: rgb(255,255,255); - border-color: rgb(205,37,27); -} - -.c26:hover { - color: rgb(205,37,27); - background-color: rgb(255,255,255); - border-color: rgb(205,37,27); -} - -.c26:active, -.c26:active:hover, -.c26:active:focus { - background-color: rgba(210,67,58,0.1); - border-color: rgb(205,37,27); -} - -.c26 svg + span { - margin-left: 0.75rem; -} - -.c26 svg { - max-height: 1.125rem; -} - -.c13 { - font-size: 0.9375rem; - line-height: 1.125rem; - font-style: normal; - font-stretch: normal; - display: block; - color: rgb(70,70,70); - text-align: left; - margin-bottom: 0.1875rem; - margin-right: 0.75rem; - font-weight: 600; - white-space: pre; - font-size: 0.8125rem; -} - -.c10 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.c20 { - box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.c11 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.625rem; - padding-left: 0.625rem; - display: block; -} - -.c17 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.625rem; - padding-left: 0.625rem; - display: block; -} - -.c25 { - box-sizing: border-box; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding-right: 0.625rem; - padding-left: 0.625rem; - display: block; -} - -.c7 { - color: rgba(73,73,73,1); - font-weight: 600; - line-height: 1.5rem; - font-size: 0.9375rem; - margin: 0; -} - -.c7 + p, -.c7 + small, -.c7 + h1, -.c7 + h2, -.c7 + label, -.c7 + h3, -.c7 + h4, -.c7 + h5, -.c7 + div, -.c7 + span { - margin-top: 0.75rem; -} - -.c18 { - background-color: rgb(216,216,216); - margin: 0; - background-color: transparent; - height: 0.75rem; -} - -.c14 { - margin-top: 0.1875rem; -} - -.c19 { - margin-top: 0.375rem; -} - -.c3 { - padding-right: 1.125rem; - padding-left: 1.125rem; -} - -.c9 { - padding: 1.125rem; -} - -.c4 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 100%; - height: 100%; - -webkit-flex-basis: 100%; - -ms-flex-preferred-size: 100%; - flex-basis: 100%; -} - -.c0 { - box-sizing: content-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - border-width: 0.0625rem; - border-style: solid; - -webkit-transition: all 300ms ease; - transition: all 300ms ease; - color: rgba(73,73,73,1); - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05); -} - -.c1 { - box-sizing: content-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - border-width: 0.0625rem; - border-style: solid; - -webkit-transition: all 300ms ease; - transition: all 300ms ease; - color: rgba(73,73,73,1); - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - min-height: auto; - height: 2.875rem; - -webkit-flex: 0 0 2.875rem; - -ms-flex: 0 0 2.875rem; - flex: 0 0 2.875rem; - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - z-index: 1; - line-height: 1.5rem; - height: auto; - max-width: 100%; - margin: -0.0625rem -0.0625rem 0 -0.0625rem; -} - -.c1 button { - margin-bottom: 0; - margin-top: 0; -} - -.c6 { - box-sizing: content-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - border-width: 0.0625rem; - border-style: solid; - -webkit-transition: all 300ms ease; - transition: all 300ms ease; - color: rgba(73,73,73,1); - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - min-height: auto; - height: 2.875rem; - -webkit-flex: 0 0 2.875rem; - -ms-flex: 0 0 2.875rem; - flex: 0 0 2.875rem; - box-sizing: border-box; - min-height: 2.9375rem; - max-width: 100%; - width: auto; - height: auto; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-align-content: stretch; - -ms-flex-line-pack: stretch; - align-content: stretch; - overflow: hidden; - background-color: transparent; - border-width: 0; - box-shadow: none; - color: inherit; -} - -.c8 { - box-sizing: content-box; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex: 1 0 auto; - -ms-flex: 1 0 auto; - flex: 1 0 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - position: relative; - border-width: 0.0625rem; - border-style: solid; - -webkit-transition: all 300ms ease; - transition: all 300ms ease; - color: rgba(73,73,73,1); - background-color: rgb(255,255,255); - border-color: rgb(216,216,216); - box-sizing: border-box; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-flex: 1 1 auto; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - border-width: 0; - margin-bottom: 0; - background-color: transparent; -} - -.c8 > [name='card']:not(:last-child) { - margin-bottom: 0.8125rem; -} - -.c8 > [name='card']:last-child { - margin-bottom: 0.4375rem; -} - -.c12 { - display: inline-block; - margin: 0; - padding: 0; - border: none; - overflow: hidden; - height: auto; - -webkit-margin-start: 0; - -webkit-margin-end: 0; - -webkit-padding-before: 0; - -webkit-padding-start: 0; - -webkit-padding-end: 0; - -webkit-padding-after: 0; - width: 100%; -} - -.c16 { - box-sizing: border-box; - width: 18.75rem; - height: 6rem; - min-height: 6rem; - padding: 0.8125rem 0.75rem; - border-radius: 0.25rem; - background-color: rgb(255,255,255); - border: 0.0625rem solid rgb(216,216,216); - color: rgba(73,73,73,1); - font-size: 0.9375rem; - line-height: normal !important; - font-style: normal; - font-stretch: normal; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - outline: 0; - font-family: "Roboto Mono",monospace; - width: 100%; - min-width: 100%; - text-overflow: ellipsis; - resize: vertical; -} - -.c16:focus { - border-color: rgb(59,70,204); - outline: 0; -} - -.c16::-webkit-input-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16::-moz-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16:-ms-input-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16:invalid { - box-shadow: none; -} - -.c16:disabled { - background-color: rgb(250,250,250); - color: rgb(216,216,216); - cursor: not-allowed; -} - -.c16:disabled::-webkit-input-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16:disabled::-moz-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16:disabled:-ms-input-placeholder { - color: rgba(73,73,73,0.5); -} - -.c16:disabled { - color: rgba(73,73,73,1); -} - -.c16:disabled::-webkit-input-placeholder { - color: rgba(73,73,73,1); -} - -.c16:disabled::-moz-placeholder { - color: rgba(73,73,73,1); -} - -.c16:disabled:-ms-input-placeholder { - color: rgba(73,73,73,1); -} - -.c2 { - word-wrap: break-word; - overflow-wrap: break-word; - width: 100%; - box-sizing: border-box; -} - -.c5 { - height: 2.9375rem; - max-width: 98%; -} - -@media only screen and (min-width:0em) { - .c20 { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - } -} - -@media only screen and (min-width:0em) { - .c20 { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - } -} - -@media only screen and (min-width:0em) { - .c11 { - -webkit-flex-basis: 100%; - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - max-width: 100%; - } -} - -@media only screen and (min-width:48em) { - .c17 { - -webkit-flex-basis: 58.333333333333336%; - -ms-flex-preferred-size: 58.333333333333336%; - flex-basis: 58.333333333333336%; - max-width: 58.333333333333336%; - } -} - -@media only screen and (min-width:0em) { - .c25 { - display: none; - } -} - -
-
-
-
-
-
-

- Add user script -

-
-
-
-
-
-
-
-
-
- -
-