@olenbetong/synergi-react 2.0.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/ob.react.css +32 -55
- package/dist/esm/ob.react.js +28 -8
- package/dist/esm/ob.react.min.css +1 -1
- package/dist/esm/ob.react.min.css.map +3 -3
- package/dist/esm/ob.react.min.js +1 -1
- package/dist/esm/ob.react.min.js.map +3 -3
- package/dist/iife/ob.react.css +32 -55
- package/dist/iife/ob.react.js +28 -8
- package/dist/iife/ob.react.min.css +1 -1
- package/dist/iife/ob.react.min.css.map +3 -3
- package/dist/iife/ob.react.min.js +1 -1
- package/dist/iife/ob.react.min.js.map +3 -3
- package/dist/styles/styles.css +1 -1
- package/dist/styles/styles.css.map +1 -1
- package/es/ColorCard/index.css +161 -0
- package/es/DateNavigator/index.css +96 -1
- package/es/DateNavigator/index.d.ts +8 -5
- package/es/DateNavigator/index.js +27 -9
- package/es/Spinner/index.css +74 -0
- package/es/ValueToggleGroup/index.css +79 -0
- package/es/index.css +1 -1
- package/package.json +2 -3
- package/src/DateNavigator/index.css +96 -0
- package/src/DateNavigator/index.tsx +44 -17
- package/src/index.scss +1 -1
- package/src/DateNavigator/index.scss +0 -93
package/dist/esm/ob.react.css
CHANGED
|
@@ -245,14 +245,17 @@
|
|
|
245
245
|
z-index: 0;
|
|
246
246
|
}
|
|
247
247
|
|
|
248
|
-
/* src/DateNavigator/index.
|
|
248
|
+
/* src/DateNavigator/index.css */
|
|
249
|
+
:root {
|
|
250
|
+
--ob-datenavigator-height: 3rem;
|
|
251
|
+
}
|
|
249
252
|
.ObDateNavigator-icon {
|
|
250
253
|
display: inline-block;
|
|
251
|
-
|
|
252
|
-
.
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
svg {
|
|
255
|
+
width: 0.625em;
|
|
256
|
+
position: relative;
|
|
257
|
+
top: -1px;
|
|
258
|
+
}
|
|
256
259
|
}
|
|
257
260
|
.ObDateNavigator-root {
|
|
258
261
|
background-color: hsl(220, 20%, 96%);
|
|
@@ -260,38 +263,27 @@
|
|
|
260
263
|
display: flex;
|
|
261
264
|
font-size: 1rem;
|
|
262
265
|
outline: none;
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
266
|
+
&:focus-visible {
|
|
267
|
+
outline: 2px solid var(--brand-dark, #336699);
|
|
268
|
+
outline-offset: 2px;
|
|
269
|
+
}
|
|
267
270
|
}
|
|
268
271
|
.ObDateNavigator-arrow {
|
|
269
|
-
background: none;
|
|
270
|
-
border: 0;
|
|
271
|
-
color: inherit;
|
|
272
|
-
font: inherit;
|
|
273
|
-
line-height: normal;
|
|
274
|
-
overflow: visible;
|
|
275
|
-
padding: 0;
|
|
276
|
-
-webkit-appearance: button;
|
|
277
|
-
-webkit-user-select: none;
|
|
278
|
-
-moz-user-select: none;
|
|
279
|
-
-ms-user-select: none;
|
|
280
272
|
display: flex;
|
|
281
273
|
align-items: center;
|
|
282
|
-
flex: 0 0
|
|
274
|
+
flex: 0 0 var(--ob-datenavigator-height);
|
|
283
275
|
justify-content: center;
|
|
284
|
-
height:
|
|
276
|
+
height: var(--ob-datenavigator-height);
|
|
285
277
|
cursor: pointer;
|
|
286
278
|
text-align: center;
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
279
|
+
&:hover:not(:disabled) {
|
|
280
|
+
background-color: #e3e3e3;
|
|
281
|
+
background-color: var(--block-header-button-hover);
|
|
282
|
+
}
|
|
283
|
+
&:disabled {
|
|
284
|
+
cursor: not-allowed;
|
|
285
|
+
color: rgba(0 0 0 / 0.2);
|
|
286
|
+
}
|
|
295
287
|
}
|
|
296
288
|
.ObDateNavigator-arrowLeft {
|
|
297
289
|
border-right: 1px solid #dddddd;
|
|
@@ -307,24 +299,13 @@
|
|
|
307
299
|
flex-direction: column;
|
|
308
300
|
justify-content: center;
|
|
309
301
|
order: 2;
|
|
310
|
-
height:
|
|
302
|
+
height: var(--ob-datenavigator-height);
|
|
311
303
|
text-align: center;
|
|
312
304
|
}
|
|
313
305
|
.ObDateNavigator-today {
|
|
314
|
-
background: none;
|
|
315
|
-
border: 0;
|
|
316
|
-
color: inherit;
|
|
317
|
-
font: inherit;
|
|
318
|
-
line-height: normal;
|
|
319
|
-
overflow: visible;
|
|
320
|
-
padding: 0;
|
|
321
|
-
-webkit-appearance: button;
|
|
322
|
-
-webkit-user-select: none;
|
|
323
|
-
-moz-user-select: none;
|
|
324
|
-
-ms-user-select: none;
|
|
325
306
|
order: 4;
|
|
326
307
|
padding: 0 1rem;
|
|
327
|
-
height:
|
|
308
|
+
height: var(--ob-datenavigator-height);
|
|
328
309
|
display: flex;
|
|
329
310
|
align-items: center;
|
|
330
311
|
justify-content: center;
|
|
@@ -334,17 +315,13 @@
|
|
|
334
315
|
cursor: pointer;
|
|
335
316
|
text-wrap: nowrap;
|
|
336
317
|
border-left: 1px solid #dddddd;
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
}
|
|
345
|
-
.ObDateNavigator-today:focus-visible {
|
|
346
|
-
outline: 2px solid var(--brand-dark, #336699);
|
|
347
|
-
outline-offset: 2px;
|
|
318
|
+
&:hover:not(:disabled) {
|
|
319
|
+
background-color: var(--block-header-button-hover);
|
|
320
|
+
}
|
|
321
|
+
&:focus-visible {
|
|
322
|
+
outline: 2px solid var(--brand-dark, #336699);
|
|
323
|
+
outline-offset: 2px;
|
|
324
|
+
}
|
|
348
325
|
}
|
|
349
326
|
|
|
350
327
|
/* src/LinkedCardList/index.scss */
|
package/dist/esm/ob.react.js
CHANGED
|
@@ -2319,7 +2319,7 @@ function Arrow({
|
|
|
2319
2319
|
"button",
|
|
2320
2320
|
{
|
|
2321
2321
|
className: clsx_default(
|
|
2322
|
-
"ObDateNavigator-arrow",
|
|
2322
|
+
"ObDateNavigator-arrow btn-reset",
|
|
2323
2323
|
direction === "left" ? "ObDateNavigator-arrowLeft" : "ObDateNavigator-arrowRight"
|
|
2324
2324
|
),
|
|
2325
2325
|
"aria-label": direction === "left" ? (0, import_appframe_core.getLocalizedString)("Previous day") : (0, import_appframe_core.getLocalizedString)("Next day"),
|
|
@@ -2348,14 +2348,32 @@ var formatter = new Intl.DateTimeFormat(getUiCulture(), {
|
|
|
2348
2348
|
timeZone: "utc"
|
|
2349
2349
|
});
|
|
2350
2350
|
var oneDay = 24 * 60 * 60 * 1e3;
|
|
2351
|
+
function sanitizeDate(date) {
|
|
2352
|
+
if (typeof date === "string" || typeof date === "number") {
|
|
2353
|
+
let parsedDate = new Date(date);
|
|
2354
|
+
if (Number.isNaN(parsedDate.getTime())) {
|
|
2355
|
+
throw new Error(`Invalid date value: ${date}`);
|
|
2356
|
+
}
|
|
2357
|
+
return parsedDate;
|
|
2358
|
+
} else if (date instanceof Date) {
|
|
2359
|
+
if (Number.isNaN(date.getTime())) {
|
|
2360
|
+
throw new Error(`Invalid date object: ${date}`);
|
|
2361
|
+
}
|
|
2362
|
+
return new Date(date.getTime());
|
|
2363
|
+
} else {
|
|
2364
|
+
throw new Error(`Unsupported date type: ${typeof date}`);
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2351
2367
|
function DateNavigator({
|
|
2352
2368
|
date: dateProp,
|
|
2369
|
+
defaultDate,
|
|
2370
|
+
disableTodayButton,
|
|
2353
2371
|
onChange,
|
|
2354
|
-
minDate,
|
|
2355
|
-
maxDate
|
|
2372
|
+
minDate: minDateProp,
|
|
2373
|
+
maxDate: maxDateProp
|
|
2356
2374
|
}) {
|
|
2357
|
-
let [internalDate, setInternalDate] = (0, import_react2.useState)(/* @__PURE__ */ new Date());
|
|
2358
|
-
let date = dateProp
|
|
2375
|
+
let [internalDate, setInternalDate] = (0, import_react2.useState)(() => defaultDate ? sanitizeDate(defaultDate) : /* @__PURE__ */ new Date());
|
|
2376
|
+
let date = dateProp ? sanitizeDate(dateProp) : internalDate;
|
|
2359
2377
|
let dateUtc = Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());
|
|
2360
2378
|
let today = /* @__PURE__ */ new Date();
|
|
2361
2379
|
let todayUtc = Date.UTC(today.getFullYear(), today.getMonth(), today.getDate());
|
|
@@ -2367,6 +2385,8 @@ function DateNavigator({
|
|
|
2367
2385
|
if (todayUtc === dateUtc - oneDay) return `${(0, import_appframe_core.getLocalizedString)("Tomorrow")}, ${base}`;
|
|
2368
2386
|
return base;
|
|
2369
2387
|
})();
|
|
2388
|
+
let minDate = minDateProp && sanitizeDate(minDateProp);
|
|
2389
|
+
let maxDate = maxDateProp && sanitizeDate(maxDateProp);
|
|
2370
2390
|
let disablePrev = !!minDate && dateUtc <= Date.UTC(minDate.getFullYear(), minDate.getMonth(), minDate.getDate());
|
|
2371
2391
|
let disableNext = !!maxDate && dateUtc >= Date.UTC(maxDate.getFullYear(), maxDate.getMonth(), maxDate.getDate());
|
|
2372
2392
|
function updateDate(newDate) {
|
|
@@ -2375,8 +2395,8 @@ function DateNavigator({
|
|
|
2375
2395
|
} else if (maxDate && newDate > maxDate) {
|
|
2376
2396
|
newDate = new Date(maxDate);
|
|
2377
2397
|
}
|
|
2378
|
-
|
|
2379
|
-
|
|
2398
|
+
onChange?.(newDate);
|
|
2399
|
+
setInternalDate(newDate);
|
|
2380
2400
|
}
|
|
2381
2401
|
function jumpToToday() {
|
|
2382
2402
|
updateDate(/* @__PURE__ */ new Date());
|
|
@@ -2421,7 +2441,7 @@ function DateNavigator({
|
|
|
2421
2441
|
}
|
|
2422
2442
|
return (
|
|
2423
2443
|
// biome-ignore lint/a11y/noNoninteractiveTabindex: I hate this component
|
|
2424
|
-
/* @__PURE__ */ React.createElement("div", { className: "ObDateNavigator-root", onKeyDown: handleKeyDown, tabIndex: 0, "aria-label": "Date navigator" }, /* @__PURE__ */ React.createElement(Arrow, { direction: "left", onClick: () => updateDate(new Date(dateUtc - oneDay)), disabled: disablePrev }), /* @__PURE__ */ React.createElement("div", { className: "ObDateNavigator-date" }, text), /* @__PURE__ */ React.createElement(Arrow, { direction: "right", onClick: () => updateDate(new Date(dateUtc + oneDay)), disabled: disableNext }), /* @__PURE__ */ React.createElement("button", { type: "button", className: "ObDateNavigator-today", onClick: jumpToToday }, (0, import_appframe_core.getLocalizedString)("Today")), /* @__PURE__ */ React.createElement("div", { "aria-live": "polite", ref: liveRef, style: { position: "absolute", left: "-9999px" } }))
|
|
2444
|
+
/* @__PURE__ */ React.createElement("div", { className: "ObDateNavigator-root", onKeyDown: handleKeyDown, tabIndex: 0, "aria-label": "Date navigator" }, /* @__PURE__ */ React.createElement(Arrow, { direction: "left", onClick: () => updateDate(new Date(dateUtc - oneDay)), disabled: disablePrev }), /* @__PURE__ */ React.createElement("div", { className: "ObDateNavigator-date" }, text), /* @__PURE__ */ React.createElement(Arrow, { direction: "right", onClick: () => updateDate(new Date(dateUtc + oneDay)), disabled: disableNext }), !disableTodayButton && /* @__PURE__ */ React.createElement("button", { type: "button", className: "ObDateNavigator-today btn-reset", onClick: jumpToToday }, (0, import_appframe_core.getLocalizedString)("Today")), /* @__PURE__ */ React.createElement("div", { "aria-live": "polite", ref: liveRef, style: { position: "absolute", left: "-9999px" } }))
|
|
2425
2445
|
);
|
|
2426
2446
|
}
|
|
2427
2447
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@charset "UTF-8";.ObCheckbox-root{--check-width: 2rem;--bg-color: var(--brand-dark, rgba(42, 65, 50, .5));--bg-color-hover: var(--brand-primary, rgba(42, 65, 50, .8));--bg-color-selected: var(--brand-light);display:inline-block;height:var(--check-width);margin-bottom:0}.ObCheckbox-root:focus-within .ObCheckbox-box{border:.1rem solid black}.ObCheckbox-root.Ob-disabled{--bg-color: rgba(150, 150, 150, .5);--bg-color-hover: var(--bg-color)}.ObCheckbox-box{position:relative;background:var(--bg-color);transition:background .3s ease;overflow:hidden;border-radius:calc(var(--check-width) / 15);height:var(--check-width);width:var(--check-width)}.ObCheckbox-box:hover{background:var(--bg-color-hover)}.ObCheckbox-label{position:relative;margin-bottom:0;overflow:hidden}.ObCheckbox-label:focus{outline:none}.ObCheckbox-mark{color:#fff;display:inline-block;font-size:calc(var(--check-width) * .4);left:50%;opacity:0;pointer-events:none;position:absolute;top:50%;transition:all .3s ease-in-out;transition-delay:0ms;transform:translate(-50%,-50%) scale(6)}.ObCheckbox-input{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.ObCheckbox-input:focus{outline:none}.ObCheckbox-label{display:flex;gap:.5rem;align-items:center;overflow:visible}.ObCheckbox-root.Ob-reverse .ObCheckbox-label{flex-direction:row-reverse}.ObCheckbox-input:checked:not(:disabled)+.ObCheckbox-label .ObCheckbox-box{animation:animOn .6s 1 forwards}.ObCheckbox-input:checked:not(:disabled)+.ObCheckbox-label .ObCheckbox-box{background:var(--bg-color-selected)}.ObCheckbox-input:checked+.ObCheckbox-label .ObCheckbox-box .ObCheckbox-mark{transform:translate(-50%,-50%) scale(1);transition-delay:.2s;opacity:1}.ObCheckbox-root.Ob-disabled .ObCheckbox-box{cursor:not-allowed}@keyframes animOn{40%{transform:scaleY(.4) scaleX(2)}50%{transform:scaleY(1.2) scaleX(.6)}60%{transform:scaleY(.8) scaleX(1.4)}70%{transform:scaleY(1.1) scaleX(.9)}to{transform:scaleY(1) scaleX(1)}}.ObColorCard-root{--bg-color-border: black;--bg-color-main: white;--bg-size: .75rem;--card-color: rgb(0, 0, 0);display:flex;align-items:stretch;min-height:10rem;overflow:hidden;border-radius:.25rem;box-shadow:0 1px 12px #00000026,0 1px 6px #00000040;color:#666;background-image:linear-gradient(to right,var(--bg-color-border),var(--bg-color-border) var(--bg-size),var(--bg-color-main) var(--bg-size),var(--bg-color-main));font-family:Variable Bahnschrift,Bahnschrift,Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:1rem;transition:all ease-in-out .3s;cursor:pointer;&:nth-of-type(5n+1){--bg-color-border: rgb(178, 108, 190)}&:nth-of-type(5n+2){--bg-color-border: rgb(79, 164, 61)}&:nth-of-type(5n+3){--bg-color-border: rgb(246, 170, 23)}&:nth-of-type(5n+4){--bg-color-border: rgb(218, 93, 83)}&:nth-of-type(5n+5){--bg-color-border: rgb(23, 162, 184)}&:hover,&:focus{--bg-color-main: #f5f5f5;box-shadow:0 3px 18px #00000026,0 3px 12px #00000040;text-decoration:none}@media screen and (min-width: 48rem){font-size:1.2rem}}.ObColorCard-column{display:flex;flex:1 1 100%;flex-direction:column;justify-content:space-between;margin:1rem 0;padding:.5rem 1.5rem .5rem 1rem;overflow:hidden;text-overflow:ellipsis;&:first-child{margin-left:var(--bg-size, .75rem)}&.ObColorCard-minor{flex:0 0 4rem;border-right:1px solid #e3e3e3;transition:margin ease-in-out .3s;@media screen and (min-width: 48rem){flex:0 0 8rem}}}.ObColorCard-detailLabel{color:#696969;font-size:.8rem;text-transform:uppercase}.ObColorCard-detail{&:not(:last-child){margin-right:1.5rem}&.ObColorCard-primary,&.ObColorCard-primary .ObColorCard-detailValue{font-size:1.25rem;font-weight:300}&.ObColorCard-primary .ObColorCard-detailValue{color:unset}@media screen and (min-width: 48rem){font-size:1rem}}.ObColorCard-detailValue{color:#555}.ObColorCard-stepList{display:flex;flex-direction:column;gap:1rem}.ObColorCard-step{position:relative;text-box-trim:trim-both;display:flex;align-items:flex-start;gap:.5rem}.ObColorCard-step:before{flex:.6em 0 0;content:"";position:relative;top:.25em;width:.6em;height:.6em;background:#fff;border:2px solid var(--bg-color-border, #999);border-radius:50%;box-sizing:border-box;z-index:1}.ObColorCard-step:not(:last-child):after{content:"";position:absolute;top:1em;left:calc(.3em - 1px);height:calc(100% - .8875em + 1rem);border-left:2px dotted #999;z-index:0}.ObDateNavigator-icon{display:inline-block}.ObDateNavigator-icon svg{width:.625em;position:relative;top:-1px}.ObDateNavigator-root{background-color:#f3f4f7;background-color:var(--block-header-color-bg);display:flex;font-size:1rem;outline:none}.ObDateNavigator-root:focus-visible{outline:2px solid var(--brand-dark, #336699);outline-offset:2px}.ObDateNavigator-arrow{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-appearance:button;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;display:flex;align-items:center;flex:0 0 3rem;justify-content:center;height:3rem;cursor:pointer;text-align:center}.ObDateNavigator-arrow::-moz-focus-inner{border:0;padding:0}.ObDateNavigator-arrow:hover{background-color:#e3e3e3;background-color:var(--block-header-button-hover)}.ObDateNavigator-arrowLeft{border-right:1px solid #dddddd;order:1}.ObDateNavigator-arrowRight{border-left:1px solid #dddddd;order:3}.ObDateNavigator-date{display:flex;flex:1 1 100%;flex-direction:column;justify-content:center;order:2;height:3rem;text-align:center}.ObDateNavigator-today{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-appearance:button;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;order:4;padding:0 1rem;height:3rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;color:var(--brand-dark, #336699);text-transform:uppercase;cursor:pointer;text-wrap:nowrap;border-left:1px solid #dddddd}.ObDateNavigator-today::-moz-focus-inner{border:0;padding:0}.ObDateNavigator-today:hover{background-color:var(--block-header-button-hover)}.ObDateNavigator-today:focus-visible{outline:2px solid var(--brand-dark, #336699);outline-offset:2px}:root{--ob-linked-list-bullet-size: .7em;--ob-linked-list-line-width: .2em}.ObLinkedList-root{list-style-type:none;margin-left:0;padding-left:0}.ObLinkedList-item{display:flex;align-items:center;flex-direction:row}.ObLinkedList-leftColumn{flex:1 1 4em;font-size:.75em;padding:0 1em;text-align:center}.ObLinkedList-rightColumn{flex:1 1 100%;padding:1em 1em 1em 1.5em}.ObLinkedList-line{display:flex;align-self:stretch;flex:0 0 .2em;background:#fff;position:relative}.ObLinkedList-bullet{background:#fff;border:1px solid rgba(50,50,50,.25);border-radius:.55em;height:.7em;width:.7em;position:absolute;left:0;top:50%;transform:translate(calc(-1 * var(--ob-linked-list-bullet-size) / 2 + var(--ob-linked-list-line-width) / 2),-50%)}.ObLinkedList-card{display:block;background:#fff;border:1px solid;border-color:#e5e6e9 #dfe0e4 #d0d1d5;border-radius:.1875em;color:inherit;cursor:pointer;flex:100% 1 1;position:relative}.ObLinkedList-card:before{border-bottom:.5em solid transparent;border-right:1em solid white;border-top:.5em solid transparent;content:" ";filter:drop-shadow(-1px 0px 1px rgba(50,50,50,.2));height:1em;left:-1em;margin-top:-.5em;position:absolute;top:50%;width:1em}.ObLinkedList-card:hover{background-color:#edeff3!important;color:inherit;text-decoration:inherit}.ObLinkedList-card:hover:before{border-right-color:#edeff3!important}.ObPageBanner-root{background-color:#116069;background-color:var(--brand-dark);box-shadow:0 8px 8px #0003;color:#fff}.ObPageBanner-root a{color:#b3d5e6}.ObPageBanner-inner{display:flex;align-items:center;flex-direction:column}@media screen and (min-width: 768px){.ObPageBanner-inner{align-items:flex-start;flex-direction:row}}.ObPageBanner-plantTitle{font-size:2rem}@media screen and (min-width: 992px){.ObPageBanner-plantTitle{font-size:3rem}}.ObPageBanner-bannerImage{align-self:stretch;background-color:#ddd;display:inline-block;height:20vh;object-fit:cover;object-position:center center;width:100%}@media screen and (min-width: 576px){.ObPageBanner-bannerImage{align-self:center;margin:0;margin-right:1rem;border:.4rem solid white;border-radius:50%;height:150px;width:150px}}@media screen and (min-width: 992px){.ObPageBanner-bannerImage{height:250px;width:250px}}.ObPageBanner-bannerTitle{margin-bottom:1rem;margin-top:1rem;font-size:2rem}@media screen and (min-width: 768px){.ObPageBanner-bannerTitle{margin-top:0}}@media screen and (min-width: 992px){.ObPageBanner-bannerTitle{font-size:3rem}}.ObPageBanner-tabList.sticky{position:-webkit-sticky;position:sticky;top:0;z-index:1000}.ObPageBanner-tabListInner{overflow-x:auto;scrollbar-width:thin;white-space:nowrap}.ObPageBanner-tab{border-bottom:.25rem solid transparent;display:inline-block;margin-top:.5rem;min-width:8rem;padding:.5rem 1rem;text-align:center;text-transform:capitalize}.ObPageBanner-tab.active{border-color:#fff}.ObProgressBar-root{height:1.5em;width:100%;appearance:none;-webkit-appearance:none;background-color:#f5f5f5;border:none;border-radius:3px;box-shadow:0 2px 3px #0003 inset;color:#4169e1;position:relative}.ObProgressBar-root::-webkit-progress-bar{background-color:#f5f5f5;border-radius:3px;box-shadow:0 2px 3px #0003 inset}.ObProgressBar-root::-webkit-progress-value{background-image:linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),linear-gradient(top,#ffffff40,#0003),linear-gradient(left,var(--brand-primary),var(--brand-light));background-image:-webkit-linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),-webkit-linear-gradient(top,rgba(255,255,255,.25),rgba(0,0,0,.2)),-webkit-linear-gradient(left,var(--brand-primary),var(--brand-light));background-size:35px 20px,100% 100%,100% 100%;border-radius:3px;position:relative;transition:width .5s ease-out}.ObProgressBar-root::-webkit-progress-value:after{background-color:#fff;content:"";border-radius:100%;height:5px;position:absolute;right:7px;top:7px;width:5px}.ObProgressBar-root::-moz-progress-bar{background-image:linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),linear-gradient(top,#ffffff40,#0003),linear-gradient(left,var(--brand-primary),var(--brand-light));background-image:-moz-linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),-moz-linear-gradient(top,rgba(255,255,255,.25),rgba(0,0,0,.2)),-moz-linear-gradient(left,var(--brand-primary),var(--brand-light));background-size:35px 20px,100% 100%,100% 100%;border-radius:3px;transition:width .5s ease-out}.ObSidebar-root{position:fixed;bottom:0;left:0;top:0;z-index:2;background-color:#fff;transform:translate(-100%);transition:transform .2s ease-out;will-change:transform;overflow-y:auto}.ObSidebar-root.Ob-right{left:unset;right:0;transform:translate(100%)}.ObSidebar-root.Ob-open{transform:translate(0)}.ObSidebar-root.ObSidebar-shadow{box-shadow:2px 2px 4px #00000026}.ObSidebar-root.ObSidebar-shadow.Ob-right{box-shadow:-2px 2px 4px #00000026}.ObSidebar-overlay{position:fixed;inset:0;z-index:1;opacity:0;visibility:hidden;transition:opacity .3s ease-out,visibility .3s ease-out;background-color:#0000004d}.ObSidebar-overlay.Ob-open{opacity:1;visibility:visible}.ObSpinner-wrapper,.ObSpinner-fullPage{--bullet-size: .5em}.ObSpinner-root{display:inline-block}.ObSpinner-fullPage{display:flex;align-items:center;justify-content:center;height:100vh;width:100vw}.ObSpinner-spinner{display:inline-block;height:calc(var(--bullet-size) * 1.5);position:relative;width:calc(var(--bullet-size) * 5)}.ObSpinner-bullet{animation-timing-function:cubic-bezier(0,1,1,0);background:#666;border-radius:50%;height:var(--bullet-size);position:absolute;top:.2rem;width:var(--bullet-size);&:nth-child(1){animation:scaleAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * .5)}&:nth-child(2){animation:translateAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * .5)}&:nth-child(3){animation:translateAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * 2.4)}&:nth-child(4){animation:scaleAnimation .6s infinite ease-in-out reverse;left:calc(var(--bullet-size) * 4)}}@keyframes scaleAnimation{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes translateAnimation{0%{transform:translate(0)}to{transform:translate(calc(var(--bullet-size) * 1.65))}}.\1f616 {display:initial}.ObSplitContainer-root{display:flex;flex-direction:column;height:100%;width:100%}.ObSplitContainer-root.horizontal{flex-direction:row}.ObSplitContainer-panel{overflow:hidden}.ObSplitContainer-divider{flex:0 0 .5rem;background-color:transparent;line-height:.75;cursor:ns-resize;display:flex;align-items:center;justify-content:center}.ObSplitContainer-divider:focus{background-color:#0000004d}.ObSplitContainer-root.horizontal>.ObSplitContainer-divider{cursor:ew-resize;writing-mode:vertical-lr}.ObSplitContainer-panel.dragging{pointer-events:none}.ObValueToggleGroup{padding:.25rem;border:2px solid rgb(0 0 0 / .2);border-radius:4px;display:flex;gap:.25rem;flex-wrap:wrap;&.vertical{flex-direction:column;align-items:center;.ObValueToggleOption{width:100%;.ObValueToggleLabel{width:100%;text-align:center}}}&:focus-within{border-color:#000c}}.ObValueToggleOption{display:flex;align-items:center;margin:0;position:relative}.ObValueToggleOption input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.ObValueToggleLabel{font-size:.8em;margin:0 .2em;padding:.3em .5em;text-transform:uppercase;transition:background .2s ease,color .2s ease;border-radius:4px}.ObValueToggleOption:hover input:not(:disabled)+.ObValueToggleLabel{cursor:pointer;background:#ccc}.ObValueToggleOption input:checked+.ObValueToggleLabel{--color-bg: var(--brand-dark);background-color:var(--color-bg);color:#fff;cursor:default}.ObValueToggleOption input:disabled+.ObValueToggleLabel{color:#00000080}.ObValueToggleOption input:checked:focus-visible+.ObValueToggleLabel{--color-bg: var(--brand-light);outline:2px solid var(--brand-light)}.ObValueToggleOption input:checked:hover+.ObValueToggleLabel{background-color:var(--color-bg)}
|
|
1
|
+
@charset "UTF-8";.ObCheckbox-root{--check-width: 2rem;--bg-color: var(--brand-dark, rgba(42, 65, 50, .5));--bg-color-hover: var(--brand-primary, rgba(42, 65, 50, .8));--bg-color-selected: var(--brand-light);display:inline-block;height:var(--check-width);margin-bottom:0}.ObCheckbox-root:focus-within .ObCheckbox-box{border:.1rem solid black}.ObCheckbox-root.Ob-disabled{--bg-color: rgba(150, 150, 150, .5);--bg-color-hover: var(--bg-color)}.ObCheckbox-box{position:relative;background:var(--bg-color);transition:background .3s ease;overflow:hidden;border-radius:calc(var(--check-width) / 15);height:var(--check-width);width:var(--check-width)}.ObCheckbox-box:hover{background:var(--bg-color-hover)}.ObCheckbox-label{position:relative;margin-bottom:0;overflow:hidden}.ObCheckbox-label:focus{outline:none}.ObCheckbox-mark{color:#fff;display:inline-block;font-size:calc(var(--check-width) * .4);left:50%;opacity:0;pointer-events:none;position:absolute;top:50%;transition:all .3s ease-in-out;transition-delay:0ms;transform:translate(-50%,-50%) scale(6)}.ObCheckbox-input{clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}.ObCheckbox-input:focus{outline:none}.ObCheckbox-label{display:flex;gap:.5rem;align-items:center;overflow:visible}.ObCheckbox-root.Ob-reverse .ObCheckbox-label{flex-direction:row-reverse}.ObCheckbox-input:checked:not(:disabled)+.ObCheckbox-label .ObCheckbox-box{animation:animOn .6s 1 forwards}.ObCheckbox-input:checked:not(:disabled)+.ObCheckbox-label .ObCheckbox-box{background:var(--bg-color-selected)}.ObCheckbox-input:checked+.ObCheckbox-label .ObCheckbox-box .ObCheckbox-mark{transform:translate(-50%,-50%) scale(1);transition-delay:.2s;opacity:1}.ObCheckbox-root.Ob-disabled .ObCheckbox-box{cursor:not-allowed}@keyframes animOn{40%{transform:scaleY(.4) scaleX(2)}50%{transform:scaleY(1.2) scaleX(.6)}60%{transform:scaleY(.8) scaleX(1.4)}70%{transform:scaleY(1.1) scaleX(.9)}to{transform:scaleY(1) scaleX(1)}}.ObColorCard-root{--bg-color-border: black;--bg-color-main: white;--bg-size: .75rem;--card-color: rgb(0, 0, 0);display:flex;align-items:stretch;min-height:10rem;overflow:hidden;border-radius:.25rem;box-shadow:0 1px 12px #00000026,0 1px 6px #00000040;color:#666;background-image:linear-gradient(to right,var(--bg-color-border),var(--bg-color-border) var(--bg-size),var(--bg-color-main) var(--bg-size),var(--bg-color-main));font-family:Variable Bahnschrift,Bahnschrift,Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:1rem;transition:all ease-in-out .3s;cursor:pointer;&:nth-of-type(5n+1){--bg-color-border: rgb(178, 108, 190)}&:nth-of-type(5n+2){--bg-color-border: rgb(79, 164, 61)}&:nth-of-type(5n+3){--bg-color-border: rgb(246, 170, 23)}&:nth-of-type(5n+4){--bg-color-border: rgb(218, 93, 83)}&:nth-of-type(5n+5){--bg-color-border: rgb(23, 162, 184)}&:hover,&:focus{--bg-color-main: #f5f5f5;box-shadow:0 3px 18px #00000026,0 3px 12px #00000040;text-decoration:none}@media screen and (min-width: 48rem){font-size:1.2rem}}.ObColorCard-column{display:flex;flex:1 1 100%;flex-direction:column;justify-content:space-between;margin:1rem 0;padding:.5rem 1.5rem .5rem 1rem;overflow:hidden;text-overflow:ellipsis;&:first-child{margin-left:var(--bg-size, .75rem)}&.ObColorCard-minor{flex:0 0 4rem;border-right:1px solid #e3e3e3;transition:margin ease-in-out .3s;@media screen and (min-width: 48rem){flex:0 0 8rem}}}.ObColorCard-detailLabel{color:#696969;font-size:.8rem;text-transform:uppercase}.ObColorCard-detail{&:not(:last-child){margin-right:1.5rem}&.ObColorCard-primary,&.ObColorCard-primary .ObColorCard-detailValue{font-size:1.25rem;font-weight:300}&.ObColorCard-primary .ObColorCard-detailValue{color:unset}@media screen and (min-width: 48rem){font-size:1rem}}.ObColorCard-detailValue{color:#555}.ObColorCard-stepList{display:flex;flex-direction:column;gap:1rem}.ObColorCard-step{position:relative;text-box-trim:trim-both;display:flex;align-items:flex-start;gap:.5rem}.ObColorCard-step:before{flex:.6em 0 0;content:"";position:relative;top:.25em;width:.6em;height:.6em;background:#fff;border:2px solid var(--bg-color-border, #999);border-radius:50%;box-sizing:border-box;z-index:1}.ObColorCard-step:not(:last-child):after{content:"";position:absolute;top:1em;left:calc(.3em - 1px);height:calc(100% - .8875em + 1rem);border-left:2px dotted #999;z-index:0}:root{--ob-datenavigator-height: 3rem}.ObDateNavigator-icon{display:inline-block;svg{width:.625em;position:relative;top:-1px}}.ObDateNavigator-root{background-color:#f3f4f7;background-color:var(--block-header-color-bg);display:flex;font-size:1rem;outline:none;&:focus-visible{outline:2px solid var(--brand-dark, #336699);outline-offset:2px}}.ObDateNavigator-arrow{display:flex;align-items:center;flex:0 0 var(--ob-datenavigator-height);justify-content:center;height:var(--ob-datenavigator-height);cursor:pointer;text-align:center;&:hover:not(:disabled){background-color:#e3e3e3;background-color:var(--block-header-button-hover)}&:disabled{cursor:not-allowed;color:#0003}}.ObDateNavigator-arrowLeft{border-right:1px solid #dddddd;order:1}.ObDateNavigator-arrowRight{border-left:1px solid #dddddd;order:3}.ObDateNavigator-date{display:flex;flex:1 1 100%;flex-direction:column;justify-content:center;order:2;height:var(--ob-datenavigator-height);text-align:center}.ObDateNavigator-today{order:4;padding:0 1rem;height:var(--ob-datenavigator-height);display:flex;align-items:center;justify-content:center;font-size:.875rem;color:var(--brand-dark, #336699);text-transform:uppercase;cursor:pointer;text-wrap:nowrap;border-left:1px solid #dddddd;&:hover:not(:disabled){background-color:var(--block-header-button-hover)}&:focus-visible{outline:2px solid var(--brand-dark, #336699);outline-offset:2px}}:root{--ob-linked-list-bullet-size: .7em;--ob-linked-list-line-width: .2em}.ObLinkedList-root{list-style-type:none;margin-left:0;padding-left:0}.ObLinkedList-item{display:flex;align-items:center;flex-direction:row}.ObLinkedList-leftColumn{flex:1 1 4em;font-size:.75em;padding:0 1em;text-align:center}.ObLinkedList-rightColumn{flex:1 1 100%;padding:1em 1em 1em 1.5em}.ObLinkedList-line{display:flex;align-self:stretch;flex:0 0 .2em;background:#fff;position:relative}.ObLinkedList-bullet{background:#fff;border:1px solid rgba(50,50,50,.25);border-radius:.55em;height:.7em;width:.7em;position:absolute;left:0;top:50%;transform:translate(calc(-1 * var(--ob-linked-list-bullet-size) / 2 + var(--ob-linked-list-line-width) / 2),-50%)}.ObLinkedList-card{display:block;background:#fff;border:1px solid;border-color:#e5e6e9 #dfe0e4 #d0d1d5;border-radius:.1875em;color:inherit;cursor:pointer;flex:100% 1 1;position:relative}.ObLinkedList-card:before{border-bottom:.5em solid transparent;border-right:1em solid white;border-top:.5em solid transparent;content:" ";filter:drop-shadow(-1px 0px 1px rgba(50,50,50,.2));height:1em;left:-1em;margin-top:-.5em;position:absolute;top:50%;width:1em}.ObLinkedList-card:hover{background-color:#edeff3!important;color:inherit;text-decoration:inherit}.ObLinkedList-card:hover:before{border-right-color:#edeff3!important}.ObPageBanner-root{background-color:#116069;background-color:var(--brand-dark);box-shadow:0 8px 8px #0003;color:#fff}.ObPageBanner-root a{color:#b3d5e6}.ObPageBanner-inner{display:flex;align-items:center;flex-direction:column}@media screen and (min-width: 768px){.ObPageBanner-inner{align-items:flex-start;flex-direction:row}}.ObPageBanner-plantTitle{font-size:2rem}@media screen and (min-width: 992px){.ObPageBanner-plantTitle{font-size:3rem}}.ObPageBanner-bannerImage{align-self:stretch;background-color:#ddd;display:inline-block;height:20vh;object-fit:cover;object-position:center center;width:100%}@media screen and (min-width: 576px){.ObPageBanner-bannerImage{align-self:center;margin:0;margin-right:1rem;border:.4rem solid white;border-radius:50%;height:150px;width:150px}}@media screen and (min-width: 992px){.ObPageBanner-bannerImage{height:250px;width:250px}}.ObPageBanner-bannerTitle{margin-bottom:1rem;margin-top:1rem;font-size:2rem}@media screen and (min-width: 768px){.ObPageBanner-bannerTitle{margin-top:0}}@media screen and (min-width: 992px){.ObPageBanner-bannerTitle{font-size:3rem}}.ObPageBanner-tabList.sticky{position:-webkit-sticky;position:sticky;top:0;z-index:1000}.ObPageBanner-tabListInner{overflow-x:auto;scrollbar-width:thin;white-space:nowrap}.ObPageBanner-tab{border-bottom:.25rem solid transparent;display:inline-block;margin-top:.5rem;min-width:8rem;padding:.5rem 1rem;text-align:center;text-transform:capitalize}.ObPageBanner-tab.active{border-color:#fff}.ObProgressBar-root{height:1.5em;width:100%;appearance:none;-webkit-appearance:none;background-color:#f5f5f5;border:none;border-radius:3px;box-shadow:0 2px 3px #0003 inset;color:#4169e1;position:relative}.ObProgressBar-root::-webkit-progress-bar{background-color:#f5f5f5;border-radius:3px;box-shadow:0 2px 3px #0003 inset}.ObProgressBar-root::-webkit-progress-value{background-image:linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),linear-gradient(top,#ffffff40,#0003),linear-gradient(left,var(--brand-primary),var(--brand-light));background-image:-webkit-linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),-webkit-linear-gradient(top,rgba(255,255,255,.25),rgba(0,0,0,.2)),-webkit-linear-gradient(left,var(--brand-primary),var(--brand-light));background-size:35px 20px,100% 100%,100% 100%;border-radius:3px;position:relative;transition:width .5s ease-out}.ObProgressBar-root::-webkit-progress-value:after{background-color:#fff;content:"";border-radius:100%;height:5px;position:absolute;right:7px;top:7px;width:5px}.ObProgressBar-root::-moz-progress-bar{background-image:linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),linear-gradient(top,#ffffff40,#0003),linear-gradient(left,var(--brand-primary),var(--brand-light));background-image:-moz-linear-gradient(135deg,transparent,transparent 33%,rgba(0,0,0,.1) 33%,rgba(0,0,0,.1) 66%,transparent 66%),-moz-linear-gradient(top,rgba(255,255,255,.25),rgba(0,0,0,.2)),-moz-linear-gradient(left,var(--brand-primary),var(--brand-light));background-size:35px 20px,100% 100%,100% 100%;border-radius:3px;transition:width .5s ease-out}.ObSidebar-root{position:fixed;bottom:0;left:0;top:0;z-index:2;background-color:#fff;transform:translate(-100%);transition:transform .2s ease-out;will-change:transform;overflow-y:auto}.ObSidebar-root.Ob-right{left:unset;right:0;transform:translate(100%)}.ObSidebar-root.Ob-open{transform:translate(0)}.ObSidebar-root.ObSidebar-shadow{box-shadow:2px 2px 4px #00000026}.ObSidebar-root.ObSidebar-shadow.Ob-right{box-shadow:-2px 2px 4px #00000026}.ObSidebar-overlay{position:fixed;inset:0;z-index:1;opacity:0;visibility:hidden;transition:opacity .3s ease-out,visibility .3s ease-out;background-color:#0000004d}.ObSidebar-overlay.Ob-open{opacity:1;visibility:visible}.ObSpinner-wrapper,.ObSpinner-fullPage{--bullet-size: .5em}.ObSpinner-root{display:inline-block}.ObSpinner-fullPage{display:flex;align-items:center;justify-content:center;height:100vh;width:100vw}.ObSpinner-spinner{display:inline-block;height:calc(var(--bullet-size) * 1.5);position:relative;width:calc(var(--bullet-size) * 5)}.ObSpinner-bullet{animation-timing-function:cubic-bezier(0,1,1,0);background:#666;border-radius:50%;height:var(--bullet-size);position:absolute;top:.2rem;width:var(--bullet-size);&:nth-child(1){animation:scaleAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * .5)}&:nth-child(2){animation:translateAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * .5)}&:nth-child(3){animation:translateAnimation .6s infinite ease-in-out;left:calc(var(--bullet-size) * 2.4)}&:nth-child(4){animation:scaleAnimation .6s infinite ease-in-out reverse;left:calc(var(--bullet-size) * 4)}}@keyframes scaleAnimation{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes translateAnimation{0%{transform:translate(0)}to{transform:translate(calc(var(--bullet-size) * 1.65))}}.\1f616 {display:initial}.ObSplitContainer-root{display:flex;flex-direction:column;height:100%;width:100%}.ObSplitContainer-root.horizontal{flex-direction:row}.ObSplitContainer-panel{overflow:hidden}.ObSplitContainer-divider{flex:0 0 .5rem;background-color:transparent;line-height:.75;cursor:ns-resize;display:flex;align-items:center;justify-content:center}.ObSplitContainer-divider:focus{background-color:#0000004d}.ObSplitContainer-root.horizontal>.ObSplitContainer-divider{cursor:ew-resize;writing-mode:vertical-lr}.ObSplitContainer-panel.dragging{pointer-events:none}.ObValueToggleGroup{padding:.25rem;border:2px solid rgb(0 0 0 / .2);border-radius:4px;display:flex;gap:.25rem;flex-wrap:wrap;&.vertical{flex-direction:column;align-items:center;.ObValueToggleOption{width:100%;.ObValueToggleLabel{width:100%;text-align:center}}}&:focus-within{border-color:#000c}}.ObValueToggleOption{display:flex;align-items:center;margin:0;position:relative}.ObValueToggleOption input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.ObValueToggleLabel{font-size:.8em;margin:0 .2em;padding:.3em .5em;text-transform:uppercase;transition:background .2s ease,color .2s ease;border-radius:4px}.ObValueToggleOption:hover input:not(:disabled)+.ObValueToggleLabel{cursor:pointer;background:#ccc}.ObValueToggleOption input:checked+.ObValueToggleLabel{--color-bg: var(--brand-dark);background-color:var(--color-bg);color:#fff;cursor:default}.ObValueToggleOption input:disabled+.ObValueToggleLabel{color:#00000080}.ObValueToggleOption input:checked:focus-visible+.ObValueToggleLabel{--color-bg: var(--brand-light);outline:2px solid var(--brand-light)}.ObValueToggleOption input:checked:hover+.ObValueToggleLabel{background-color:var(--color-bg)}
|
|
2
2
|
/*# sourceMappingURL=ob.react.min.css.map */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.scss", "../../src/ColorCard/index.css", "../../src/index.
|
|
4
|
-
"sourcesContent": [".ObCheckbox-root {\n\t--check-width: 2rem;\n\t--bg-color: var(--brand-dark, rgba(42, 65, 50, 0.5));\n\t--bg-color-hover: var(--brand-primary, rgba(42, 65, 50, 0.8));\n\t--bg-color-selected: var(--brand-light);\n\n\tdisplay: inline-block;\n\theight: var(--check-width);\n\tmargin-bottom: 0;\n\n\t&:focus-within .ObCheckbox-box {\n\t\tborder: 0.1rem solid black;\n\t}\n\n\t&.Ob-disabled {\n\t\t--bg-color: rgba(150, 150, 150, 0.5);\n\t\t--bg-color-hover: var(--bg-color);\n\t}\n}\n\n.ObCheckbox-box {\n\tposition: relative;\n\n\tbackground: var(--bg-color);\n\ttransition: background 300ms ease;\n\n\toverflow: hidden;\n\n\tborder-radius: calc(var(--check-width) / 15);\n\theight: var(--check-width);\n\twidth: var(--check-width);\n\n\t&:hover {\n\t\tbackground: var(--bg-color-hover);\n\t}\n}\n\n.ObCheckbox-label {\n\tposition: relative;\n\tmargin-bottom: 0;\n\toverflow: hidden;\n\n\t&:focus {\n\t\toutline: none;\n\t}\n}\n\n.ObCheckbox-mark {\n\tcolor: #fff;\n\tdisplay: inline-block;\n\tfont-size: calc(var(--check-width) * 0.4);\n\tleft: 50%;\n\topacity: 0;\n\tpointer-events: none;\n\tposition: absolute;\n\ttop: 50%;\n\ttransition: all 300ms ease-in-out;\n\ttransition-delay: 0ms;\n\ttransform: translate(-50%, -50%) scale(6);\n}\n\n.ObCheckbox-input {\n\tclip: rect(0 0 0 0);\n\tclip-path: inset(50%);\n\theight: 1px;\n\toverflow: hidden;\n\tposition: absolute;\n\twhite-space: nowrap;\n\twidth: 1px;\n\n\t&:focus {\n\t\toutline: none;\n\t}\n}\n\n.ObCheckbox-label {\n\tdisplay: flex;\n\tgap: 0.5rem;\n\talign-items: center;\n\n\toverflow: visible;\n}\n\n.ObCheckbox-root.Ob-reverse .ObCheckbox-label {\n\tflex-direction: row-reverse;\n}\n\n.ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {\n\tanimation: animOn 600ms 1 forwards;\n}\n\n.ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {\n\tbackground: var(--bg-color-selected);\n}\n\n.ObCheckbox-input:checked + .ObCheckbox-label .ObCheckbox-box .ObCheckbox-mark {\n\ttransform: translate(-50%, -50%) scale(1);\n\ttransition-delay: 200ms;\n\topacity: 1;\n}\n\n.ObCheckbox-root.Ob-disabled .ObCheckbox-box {\n\tcursor: not-allowed;\n}\n\n@keyframes animOn {\n\t40% {\n\t\ttransform: scaleY(0.4) scaleX(2);\n\t}\n\n\t50% {\n\t\ttransform: scaleY(1.2) scaleX(0.6);\n\t}\n\n\t60% {\n\t\ttransform: scaleY(0.8) scaleX(1.4);\n\t}\n\n\t70% {\n\t\ttransform: scaleY(1.1) scaleX(0.9);\n\t}\n\n\t100% {\n\t\ttransform: scaleY(1) scaleX(1);\n\t}\n}\n", ".ObColorCard-root {\n\t--bg-color-border: black;\n\t--bg-color-main: white;\n\t--bg-size: 0.75rem;\n\t--card-color: rgb(0, 0, 0);\n\n\tdisplay: flex;\n\talign-items: stretch;\n\tmin-height: 10rem;\n\toverflow: hidden;\n\tborder-radius: 0.25rem;\n\tbox-shadow: 0 1px 12px rgba(0, 0, 0, 0.15), 0 1px 6px rgba(0, 0, 0, 0.25);\n\tcolor: #666;\n\tbackground-image: linear-gradient(\n\t\tto right,\n\t\tvar(--bg-color-border),\n\t\tvar(--bg-color-border) var(--bg-size),\n\t\tvar(--bg-color-main) var(--bg-size),\n\t\tvar(--bg-color-main)\n\t);\n\tfont-family:\n\t\t\"Variable Bahnschrift\",\n\t\t\"Bahnschrift\",\n\t\t\"Open Sans\",\n\t\t-apple-system,\n\t\tBlinkMacSystemFont,\n\t\t\"Segoe UI\",\n\t\tRoboto,\n\t\t\"Helvetica Neue\",\n\t\tArial,\n\t\tsans-serif,\n\t\t\"Apple Color Emoji\",\n\t\t\"Segoe UI Emoji\",\n\t\t\"Segoe UI Symbol\";\n\tfont-size: 1rem;\n\ttransition: all ease-in-out 300ms;\n\tcursor: pointer;\n\n\t&:nth-of-type(5n + 1) {\n\t\t--bg-color-border: rgb(178, 108, 190);\n\t}\n\t&:nth-of-type(5n + 2) {\n\t\t--bg-color-border: rgb(79, 164, 61);\n\t}\n\t&:nth-of-type(5n + 3) {\n\t\t--bg-color-border: rgb(246, 170, 23);\n\t}\n\t&:nth-of-type(5n + 4) {\n\t\t--bg-color-border: rgb(218, 93, 83);\n\t}\n\t&:nth-of-type(5n + 5) {\n\t\t--bg-color-border: rgb(23, 162, 184);\n\t}\n\n\t&:hover,\n\t&:focus {\n\t\t--bg-color-main: #f5f5f5;\n\t\tbox-shadow: 0 3px 18px rgba(0, 0, 0, 0.15), 0 3px 12px rgba(0, 0, 0, 0.25);\n\t\ttext-decoration: none;\n\t}\n\n\t@media screen and (min-width: 48rem) {\n\t\tfont-size: 1.2rem;\n\t}\n}\n\n.ObColorCard-column {\n\tdisplay: flex;\n\tflex: 1 1 100%;\n\tflex-direction: column;\n\tjustify-content: space-between;\n\tmargin: 1rem 0;\n\tpadding: 0.5rem 1.5rem 0.5rem 1rem;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\n\t&:first-child {\n\t\tmargin-left: var(--bg-size, 0.75rem);\n\t}\n\n\t&.ObColorCard-minor {\n\t\tflex: 0 0 4rem;\n\t\tborder-right: 1px solid #e3e3e3;\n\t\ttransition: margin ease-in-out 300ms;\n\n\t\t@media screen and (min-width: 48rem) {\n\t\t\tflex: 0 0 8rem;\n\t\t}\n\t}\n}\n\n.ObColorCard-detailLabel {\n\tcolor: #696969;\n\tfont-size: 0.8rem;\n\ttext-transform: uppercase;\n}\n\n.ObColorCard-detail {\n\t&:not(:last-child) {\n\t\tmargin-right: 1.5rem;\n\t}\n\n\t&.ObColorCard-primary,\n\t&.ObColorCard-primary .ObColorCard-detailValue {\n\t\tfont-size: 1.25rem;\n\t\tfont-weight: 300;\n\t}\n\n\t&.ObColorCard-primary .ObColorCard-detailValue {\n\t\tcolor: unset;\n\t}\n\n\t@media screen and (min-width: 48rem) {\n\t\tfont-size: 1rem;\n\t}\n}\n\n.ObColorCard-detailValue {\n\tcolor: #555555;\n}\n\n.ObColorCard-stepList {\n\tdisplay: flex;\n\tflex-direction: column;\n\tgap: 1rem;\n}\n\n.ObColorCard-step {\n\tposition: relative;\n\ttext-box-trim: trim-both;\n\n\tdisplay: flex;\n\talign-items: flex-start;\n\tgap: 0.5rem;\n}\n\n.ObColorCard-step::before {\n\tflex: 0.6em 0 0;\n\tcontent: \"\";\n\n\tposition: relative;\n\ttop: 0.25em; /* half the height difference of text and the circle */\n\n\twidth: 0.6em;\n\theight: 0.6em;\n\tbackground: white;\n\tborder: 2px solid var(--bg-color-border, #999);\n\tborder-radius: 50%;\n\tbox-sizing: border-box;\n\tz-index: 1;\n}\n\n.ObColorCard-step:not(:last-child)::after {\n\tcontent: \"\";\n\tposition: absolute;\n\ttop: calc(0.25em + 0.6em + 0.15em); /* dot top + dot height + 0.15em spacing */\n\tleft: calc(0.3em - 1px); /* half of the circle width minus half the border width */\n\theight: calc(100% - 0.95em + 1rem + 0.0625em); /* height of container - top + gap */\n\tborder-left: 2px dotted #999;\n\tz-index: 0;\n}\n", "@use \"../styles/mixins\";\n\n$date-select-height: 3rem;\n\n.ObDateNavigator-icon {\n display: inline-block;\n\n svg {\n width: 0.625em;\n position: relative;\n top: -1px;\n }\n}\n\n.ObDateNavigator-root {\n background-color: hsl(220, 20%, 96%);\n background-color: var(--block-header-color-bg);\n display: flex;\n font-size: 1rem;\n outline: none;\n\n &:focus-visible {\n outline: 2px solid var(--brand-dark, #336699);\n outline-offset: 2px;\n }\n}\n\n.ObDateNavigator-arrow {\n @include mixins.btn-reset;\n display: flex;\n align-items: center;\n flex: 0 0 $date-select-height;\n justify-content: center;\n\n height: $date-select-height;\n\n cursor: pointer;\n text-align: center;\n\n &:hover {\n background-color: #e3e3e3;\n background-color: var(--block-header-button-hover);\n }\n}\n\n.ObDateNavigator-arrowLeft {\n border-right: 1px solid #dddddd;\n order: 1;\n}\n\n.ObDateNavigator-arrowRight {\n border-left: 1px solid #dddddd;\n order: 3;\n}\n\n.ObDateNavigator-date {\n display: flex;\n flex: 1 1 100%;\n flex-direction: column;\n justify-content: center;\n order: 2;\n\n height: $date-select-height;\n\n text-align: center;\n}\n\n.ObDateNavigator-today {\n @include mixins.btn-reset;\n order: 4;\n padding: 0 1rem;\n height: $date-select-height;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 0.875rem;\n color: var(--brand-dark, #336699);\n text-transform: uppercase;\n cursor: pointer;\n\n\ttext-wrap: nowrap;\n\n\tborder-left: 1px solid #dddddd;\n\n &:hover {\n background-color: var(--block-header-button-hover);\n }\n\n &:focus-visible {\n outline: 2px solid var(--brand-dark, #336699);\n outline-offset: 2px;\n }\n} \n", "@mixin btn-reset {\n\tbackground: none;\n\tborder: 0;\n\tcolor: inherit;\n\t/* cursor: default; */\n\tfont: inherit;\n\tline-height: normal;\n\toverflow: visible;\n\tpadding: 0;\n\t-webkit-appearance: button; /* for input */\n\t-webkit-user-select: none; /* for button */\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\n\t&::-moz-focus-inner {\n\t\tborder: 0;\n\t\tpadding: 0;\n\t}\n}\n", "@use \"../styles/variables\";\n\n$bullet-size: 0.7em;\n$line-width: 0.2em;\n\n:root {\n\t--ob-linked-list-bullet-size: 0.7em;\n\t--ob-linked-list-line-width: 0.2em;\n}\n\n.ObLinkedList-root {\n\t\n\tlist-style-type: none;\n\tmargin-left: 0;\n\tpadding-left: 0;\n}\n\n.ObLinkedList-item {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: row;\n}\n\n.ObLinkedList-leftColumn {\n\tflex: 1 1 4em;\n\tfont-size: 0.75em;\n\tpadding: 0 1em;\n\ttext-align: center;\n}\n\n.ObLinkedList-rightColumn {\n\tflex: 1 1 100%;\n\tpadding: 1em 1em 1em 1.5em;\n}\n\n.ObLinkedList-line {\n\tdisplay: flex;\n\talign-self: stretch;\n\tflex: 0 0 $line-width;\n\tbackground: white;\n\tposition: relative;\n}\n\n.ObLinkedList-bullet {\n\tbackground: white;\n\n\tborder: 1px solid rgba(50, 50, 50, 0.25);\n\tborder-radius: 0.55em;\n\theight: $bullet-size;\n\twidth: $bullet-size;\n\n\tposition: absolute;\n\tleft: 0;\n\ttop: 50%;\n\n\ttransform: translate(calc(-1 * (var(--ob-linked-list-bullet-size) / 2) + (var(--ob-linked-list-line-width) / 2)), -50%);\n}\n\n.ObLinkedList-card {\n\tdisplay: block;\n\tbackground: white;\n\tborder: 1px solid;\n\tborder-color: variables.$color-border-top variables.$color-border-side variables.$color-border-bottom;\n\tborder-radius: 0.1875em;\n\tcolor: inherit;\n\tcursor: pointer;\n\tflex: 100% 1 1;\n\tposition: relative;\n}\n\n.ObLinkedList-card::before {\n\tborder-bottom: 0.5em solid transparent;\n\tborder-right: 1em solid white;\n\tborder-top: 0.5em solid transparent;\n\tcontent: \" \";\n\tfilter: drop-shadow(-1px 0px 1px rgba(50, 50, 50, 0.2));\n\theight: 1em;\n\tleft: -1em;\n\tmargin-top: -0.5em;\n\tposition: absolute;\n\ttop: 50%;\n\twidth: 1em;\n}\n\n.ObLinkedList-card:hover {\n\tbackground-color: variables.$block-color-bg-hover !important;\n\tcolor: inherit;\n\ttext-decoration: inherit;\n}\n\n.ObLinkedList-card:hover::before {\n\tborder-right-color: variables.$block-color-bg-hover !important;\n}\n", "@use \"../styles/variables\";\n\n.ObPageBanner-root {\n\tbackground-color: variables.$brand-primary;\n\tbackground-color: var(--brand-dark);\n\tbox-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);\n\tcolor: white;\n\n\ta {\n\t\tcolor: hsl(200, 50%, 80%);\n\t}\n}\n\n.ObPageBanner-inner {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: column;\n\n\t@media screen and (min-width: variables.$screen-md) {\n\t\talign-items: flex-start;\n\t\tflex-direction: row;\n\t}\n}\n\n.ObPageBanner-plantTitle {\n\tfont-size: 2rem;\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\tfont-size: 3rem;\n\t}\n}\n\n.ObPageBanner-bannerImage {\n\talign-self: stretch;\n\tbackground-color: #ddd;\n\tdisplay: inline-block;\n\theight: 20vh;\n\tobject-fit: cover;\n\tobject-position: center center;\n\twidth: 100%;\n\n\t@media screen and (min-width: variables.$screen-sm) {\n\t\talign-self: center;\n\t\tmargin: 0;\n\t\tmargin-right: 1rem;\n\t\tborder: 0.4rem solid white;\n\t\tborder-radius: 50%;\n\t\theight: 150px;\n\t\twidth: 150px;\n\t}\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\theight: 250px;\n\t\twidth: 250px;\n\t}\n}\n\n.ObPageBanner-bannerTitle {\n\tmargin-bottom: 1rem;\n\tmargin-top: 1rem;\n\tfont-size: 2rem;\n\n\t@media screen and (min-width: variables.$screen-md) {\n\t\tmargin-top: 0;\n\t}\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\tfont-size: 3rem;\n\t}\n}\n\n.ObPageBanner-tabList {\n\t&.sticky {\n\t\tposition: -webkit-sticky;\n\t\tposition: sticky;\n\t\ttop: 0;\n\t\tz-index: 1000;\n\t}\n}\n\n.ObPageBanner-tabListInner {\n\toverflow-x: auto;\n\tscrollbar-width: thin;\n\twhite-space: nowrap;\n}\n\n.ObPageBanner-tab {\n\tborder-bottom: 0.25rem solid transparent;\n\tdisplay: inline-block;\n\tmargin-top: 0.5rem;\n\tmin-width: 8rem;\n\tpadding: 0.5rem 1rem;\n\ttext-align: center;\n\ttext-transform: capitalize;\n\n\t&.active {\n\t\tborder-color: white;\n\t}\n}\n", "$brand-primary: hsl(186, 72%, 24%);\n$brand-light: hsl(186, 72%, 37%);\n$brand-dark: hsl(186, 74%, 20%);\n$brand-tertiary: rgb(68, 69, 84);\n\n$link-color: $brand-primary;\n$link-color-hover: $brand-dark;\n\n$line-height: 1.4;\n\n$color-bg-hover: hsla(186, 72%, 37%, 0.6);\n$color-bg-active: hsla(95, 49%, 71%, 0.2);\n$color-fg-active: black;\n\n$color-border-top: #e5e6e9;\n$color-border-side: #dfe0e4;\n$color-border-bottom: #d0d1d5;\n\n$navbar-height: 40px;\n\n$screen-xs: 0;\n$screen-sm: 576px;\n$screen-md: 768px;\n$screen-lg: 992px;\n$screen-xl: 1200px;\n\n$block-header-color-bg: hsl(220, 20%, 96%);\n$block-header-color-bg-hover: hsl(220, 20%, 92%);\n$block-header-color-fg: hsl(0, 0%, 20%);\n$block-color-bg-alt: hsl(220, 20%, 98%);\n$block-color-bg-hover: hsl(220, 20%, 94%);\n$block-color-border: #e5e5e5;\n\n$block-header-button-hover: hsl(220, 20%, 92%);\n$block-header-button-border: hsl(220, 7%, 82%);\n$block-header-button-active: hsl(220, 20%, 86%);\n\n$sidebar-padding: 0.9375rem;\n$sidebar-width: 18rem;\n$sidebar-fg-color: hsl(0, 0%, 90%);\n$sidebar-bg-color: hsl(186, 74%, 13%);\n$sidebar-header-color: hsl(220, 6%, 70%);\n$sidebar-link-fg-color: white;\n$sidebar-link-fg-active: white;\n$sidebar-link-bg-color: transparent;\n$sidebar-link-bg-hover: hsla(0, 0%, 100%, 0.1);\n$sidebar-link-bg-active: hsl(142, 13%, 13%);\n\n$padding-xs: 0.75rem;\n$padding-sm: 0.9375rem;\n$padding-lg: 1.5rem;\n\n$grid-gutter-width: 30px;\n\n$container-tablet: (720px + $grid-gutter-width);\n$container-sm: $container-tablet;\n$container-desktop: (940px + $grid-gutter-width);\n$container-md: $container-desktop;\n$container-large-desktop: (1140px + $grid-gutter-width);\n$container-lg: $container-large-desktop;\n\n$toolbar-background: linear-gradient(#fefefe, #fafafa); //white;\n$toolbar-height: 3.125rem;\n$toolbar-border-color: #dedede;\n$toolbar-border-width: 1px;\n\n$toolbar-btn-color: hsla(0, 0%, 60%, 0.8);\n$toolbar-btn-hover-color: hsla(0, 0%, 40%, 0.8);\n$toolbar-btn-bg: transparent;\n$toolbar-btn-hover-bg: linear-gradient(hsl(0, 0%, 89%), hsl(0, 0%, 87%));\n", "@use \"../styles/variables\";\n\n.ObProgressBar-root {\n\theight: 1.5em;\n\twidth: 100%;\n\tappearance: none;\n\t-webkit-appearance: none;\n\tbackground-color: whiteSmoke;\n\tborder: none;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\n\t&::-webkit-progress-bar {\n\t\tbackground-color: whiteSmoke;\n\t\tborder-radius: 3px;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;\n\t}\n\n\t&::-webkit-progress-value {\n\t\tbackground-image: linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\tlinear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\tlinear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-image:\n\t\t\t-webkit-linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\t-webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\t-webkit-linear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-size:\n\t\t\t35px 20px,\n\t\t\t100% 100%,\n\t\t\t100% 100%;\n\t\tborder-radius: 3px;\n\t\tposition: relative;\n\t\ttransition: width 0.5s ease-out;\n\t}\n\n\t&::-webkit-progress-value:after {\n\t\tbackground-color: white;\n\t\tcontent: \"\";\n\n\t\tborder-radius: 100%;\n\t\theight: 5px;\n\n\t\tposition: absolute;\n\t\tright: 7px;\n\t\ttop: 7px;\n\t\twidth: 5px;\n\t}\n\n\t&::-moz-progress-bar {\n\t\tbackground-image: linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\tlinear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\tlinear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-image:\n\t\t\t-moz-linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\t-moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\t-moz-linear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-size:\n\t\t\t35px 20px,\n\t\t\t100% 100%,\n\t\t\t100% 100%;\n\t\tborder-radius: 3px;\n\t\ttransition: width 0.5s ease-out;\n\t}\n}\n", ".ObSidebar-root {\n\tposition: fixed;\n\tbottom: 0;\n\tleft: 0;\n\ttop: 0;\n\tz-index: 2;\n\n\tbackground-color: white;\n\n\ttransform: translateX(-100%);\n\ttransition: transform 0.2s ease-out;\n\twill-change: transform;\n\n\t&.Ob-right {\n\t\tleft: unset;\n\t\tright: 0;\n\t\ttransform: translateX(100%);\n\t}\n\n\toverflow-y: auto;\n\n\t&.Ob-open {\n\t\ttransform: translateX(0);\n\t}\n\n\t&.ObSidebar-shadow {\n\t\tbox-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);\n\n\t\t&.Ob-right {\n\t\t\tbox-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);\n\t\t}\n\t}\n}\n\n.ObSidebar-overlay {\n\tposition: fixed;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\ttop: 0;\n\tz-index: 1;\n\n\topacity: 0;\n\tvisibility: hidden;\n\n\ttransition:\n\t\topacity 0.3s ease-out,\n\t\tvisibility 0.3s ease-out;\n\tbackground-color: rgba(0, 0, 0, 0.3);\n\n\t&.Ob-open {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n", "\n.ObSpinner-wrapper, .ObSpinner-fullPage {\n\t--bullet-size: 0.5em;\n}\n\n.ObSpinner-root {\n\tdisplay: inline-block;\n}\n\n.ObSpinner-fullPage {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\theight: 100vh;\n\twidth: 100vw;\n}\n\n.ObSpinner-spinner {\n\tdisplay: inline-block;\n\theight: calc(var(--bullet-size) * 1.5);\n\tposition: relative;\n\twidth: calc(var(--bullet-size) * 5);\n}\n\n.ObSpinner-bullet {\n\tanimation-timing-function: cubic-bezier(0, 1, 1, 0);\n\tbackground: #666;\n\tborder-radius: 50%;\n\theight: var(--bullet-size);\n\tposition: absolute;\n\ttop: 0.2rem;\n\twidth: var(--bullet-size);\n\n\t&:nth-child(1) {\n\t\tanimation: scaleAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 0.5);\n\t}\n\n\t&:nth-child(2) {\n\t\tanimation: translateAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 0.5);\n\t}\n\n\t&:nth-child(3) {\n\t\tanimation: translateAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 2.4);\n\t}\n\n\t&:nth-child(4) {\n\t\tanimation: scaleAnimation 0.6s infinite ease-in-out reverse;\n\t\tleft: calc(var(--bullet-size) * 4);\n\t}\n}\n\n@keyframes scaleAnimation {\n\tfrom {\n\t\ttransform: scale(0);\n\t}\n\n\tto {\n\t\ttransform: scale(1);\n\t}\n}\n\n@keyframes translateAnimation {\n\tfrom {\n\t\ttransform: translate(0, 0);\n\t}\n\n\tto {\n\t\ttransform: translate(calc(var(--bullet-size) * 1.65), 0);\n\t}\n}\n", "/**\nHacky solution to sass output for some reason getting a zero-width space at the beginning, which breaks the first selector\n*/\n.😖 {\n\tdisplay: initial;\n}\n\n.ObSplitContainer-root {\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 100%;\n\twidth: 100%;\n\n\t&.horizontal {\n\t\tflex-direction: row;\n\t}\n}\n\n.ObSplitContainer-panel {\n\toverflow: hidden;\n}\n\n.ObSplitContainer-divider {\n\tflex: 0 0 0.5rem;\n\tbackground-color: transparent;\n\tline-height: 0.75;\n\tcursor: ns-resize;\n\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t&:focus {\n\t\tbackground-color: rgba(0, 0, 0, 0.3);\n\t}\n\n\t.ObSplitContainer-root.horizontal > & {\n\t\tcursor: ew-resize;\n\t\twriting-mode: vertical-lr;\n\t}\n}\n\n.ObSplitContainer-panel.dragging {\n\tpointer-events: none;\n}\n", ".ObValueToggleGroup {\n\tpadding: 0.25rem;\n\tborder: 2px solid rgb(0 0 0 / 0.2);\n\tborder-radius: 4px;\n\n display: flex;\n gap: 0.25rem;\n flex-wrap: wrap;\n\n &.vertical {\n flex-direction: column;\n align-items: center;\n\n\t\t& .ObValueToggleOption {\n\t\t\twidth: 100%;\n\n\t\t\t& .ObValueToggleLabel {\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n }\n\n &:focus-within {\n border-color: rgb(0 0 0 / 0.8);\n }\n}\n\n.ObValueToggleOption {\n display: flex;\n align-items: center;\n margin: 0;\n position: relative;\n}\n\n.ObValueToggleOption input {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.ObValueToggleLabel {\n font-size: 0.8em;\n margin: 0 0.2em;\n padding: 0.3em 0.5em;\n text-transform: uppercase;\n transition: background 0.2s ease, color 0.2s ease;\n border-radius: 4px;\n}\n\n.ObValueToggleOption:hover input:not(:disabled) + .ObValueToggleLabel {\n cursor: pointer;\n background: #ccc;\n}\n\n.ObValueToggleOption input:checked + .ObValueToggleLabel {\n --color-bg: var(--brand-dark);\n background-color: var(--color-bg);\n color: white;\n cursor: default;\n}\n\n.ObValueToggleOption input:disabled + .ObValueToggleLabel {\n color: rgb(0 0 0 / 0.5);\n}\n\n.ObValueToggleOption input:checked:focus-visible + .ObValueToggleLabel {\n --color-bg: var(--brand-light);\n outline: 2px solid var(--brand-light);\n}\n\n.ObValueToggleOption input:checked:hover + .ObValueToggleLabel {\n background-color: var(--color-bg);\n}"],
|
|
5
|
-
"mappings": "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",
|
|
3
|
+
"sources": ["../../src/index.scss", "../../src/ColorCard/index.css", "../../src/DateNavigator/index.css", "../../src/index.scss", "../../src/index.scss", "../../styles/_variables.scss", "../../src/index.scss", "../../src/index.scss", "../../src/Spinner/index.css", "../../src/index.scss", "../../src/ValueToggleGroup/index.css"],
|
|
4
|
+
"sourcesContent": [".ObCheckbox-root {\n\t--check-width: 2rem;\n\t--bg-color: var(--brand-dark, rgba(42, 65, 50, 0.5));\n\t--bg-color-hover: var(--brand-primary, rgba(42, 65, 50, 0.8));\n\t--bg-color-selected: var(--brand-light);\n\n\tdisplay: inline-block;\n\theight: var(--check-width);\n\tmargin-bottom: 0;\n\n\t&:focus-within .ObCheckbox-box {\n\t\tborder: 0.1rem solid black;\n\t}\n\n\t&.Ob-disabled {\n\t\t--bg-color: rgba(150, 150, 150, 0.5);\n\t\t--bg-color-hover: var(--bg-color);\n\t}\n}\n\n.ObCheckbox-box {\n\tposition: relative;\n\n\tbackground: var(--bg-color);\n\ttransition: background 300ms ease;\n\n\toverflow: hidden;\n\n\tborder-radius: calc(var(--check-width) / 15);\n\theight: var(--check-width);\n\twidth: var(--check-width);\n\n\t&:hover {\n\t\tbackground: var(--bg-color-hover);\n\t}\n}\n\n.ObCheckbox-label {\n\tposition: relative;\n\tmargin-bottom: 0;\n\toverflow: hidden;\n\n\t&:focus {\n\t\toutline: none;\n\t}\n}\n\n.ObCheckbox-mark {\n\tcolor: #fff;\n\tdisplay: inline-block;\n\tfont-size: calc(var(--check-width) * 0.4);\n\tleft: 50%;\n\topacity: 0;\n\tpointer-events: none;\n\tposition: absolute;\n\ttop: 50%;\n\ttransition: all 300ms ease-in-out;\n\ttransition-delay: 0ms;\n\ttransform: translate(-50%, -50%) scale(6);\n}\n\n.ObCheckbox-input {\n\tclip: rect(0 0 0 0);\n\tclip-path: inset(50%);\n\theight: 1px;\n\toverflow: hidden;\n\tposition: absolute;\n\twhite-space: nowrap;\n\twidth: 1px;\n\n\t&:focus {\n\t\toutline: none;\n\t}\n}\n\n.ObCheckbox-label {\n\tdisplay: flex;\n\tgap: 0.5rem;\n\talign-items: center;\n\n\toverflow: visible;\n}\n\n.ObCheckbox-root.Ob-reverse .ObCheckbox-label {\n\tflex-direction: row-reverse;\n}\n\n.ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {\n\tanimation: animOn 600ms 1 forwards;\n}\n\n.ObCheckbox-input:checked:not(:disabled) + .ObCheckbox-label .ObCheckbox-box {\n\tbackground: var(--bg-color-selected);\n}\n\n.ObCheckbox-input:checked + .ObCheckbox-label .ObCheckbox-box .ObCheckbox-mark {\n\ttransform: translate(-50%, -50%) scale(1);\n\ttransition-delay: 200ms;\n\topacity: 1;\n}\n\n.ObCheckbox-root.Ob-disabled .ObCheckbox-box {\n\tcursor: not-allowed;\n}\n\n@keyframes animOn {\n\t40% {\n\t\ttransform: scaleY(0.4) scaleX(2);\n\t}\n\n\t50% {\n\t\ttransform: scaleY(1.2) scaleX(0.6);\n\t}\n\n\t60% {\n\t\ttransform: scaleY(0.8) scaleX(1.4);\n\t}\n\n\t70% {\n\t\ttransform: scaleY(1.1) scaleX(0.9);\n\t}\n\n\t100% {\n\t\ttransform: scaleY(1) scaleX(1);\n\t}\n}\n", ".ObColorCard-root {\n\t--bg-color-border: black;\n\t--bg-color-main: white;\n\t--bg-size: 0.75rem;\n\t--card-color: rgb(0, 0, 0);\n\n\tdisplay: flex;\n\talign-items: stretch;\n\tmin-height: 10rem;\n\toverflow: hidden;\n\tborder-radius: 0.25rem;\n\tbox-shadow: 0 1px 12px rgba(0, 0, 0, 0.15), 0 1px 6px rgba(0, 0, 0, 0.25);\n\tcolor: #666;\n\tbackground-image: linear-gradient(\n\t\tto right,\n\t\tvar(--bg-color-border),\n\t\tvar(--bg-color-border) var(--bg-size),\n\t\tvar(--bg-color-main) var(--bg-size),\n\t\tvar(--bg-color-main)\n\t);\n\tfont-family:\n\t\t\"Variable Bahnschrift\",\n\t\t\"Bahnschrift\",\n\t\t\"Open Sans\",\n\t\t-apple-system,\n\t\tBlinkMacSystemFont,\n\t\t\"Segoe UI\",\n\t\tRoboto,\n\t\t\"Helvetica Neue\",\n\t\tArial,\n\t\tsans-serif,\n\t\t\"Apple Color Emoji\",\n\t\t\"Segoe UI Emoji\",\n\t\t\"Segoe UI Symbol\";\n\tfont-size: 1rem;\n\ttransition: all ease-in-out 300ms;\n\tcursor: pointer;\n\n\t&:nth-of-type(5n + 1) {\n\t\t--bg-color-border: rgb(178, 108, 190);\n\t}\n\t&:nth-of-type(5n + 2) {\n\t\t--bg-color-border: rgb(79, 164, 61);\n\t}\n\t&:nth-of-type(5n + 3) {\n\t\t--bg-color-border: rgb(246, 170, 23);\n\t}\n\t&:nth-of-type(5n + 4) {\n\t\t--bg-color-border: rgb(218, 93, 83);\n\t}\n\t&:nth-of-type(5n + 5) {\n\t\t--bg-color-border: rgb(23, 162, 184);\n\t}\n\n\t&:hover,\n\t&:focus {\n\t\t--bg-color-main: #f5f5f5;\n\t\tbox-shadow: 0 3px 18px rgba(0, 0, 0, 0.15), 0 3px 12px rgba(0, 0, 0, 0.25);\n\t\ttext-decoration: none;\n\t}\n\n\t@media screen and (min-width: 48rem) {\n\t\tfont-size: 1.2rem;\n\t}\n}\n\n.ObColorCard-column {\n\tdisplay: flex;\n\tflex: 1 1 100%;\n\tflex-direction: column;\n\tjustify-content: space-between;\n\tmargin: 1rem 0;\n\tpadding: 0.5rem 1.5rem 0.5rem 1rem;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n\n\t&:first-child {\n\t\tmargin-left: var(--bg-size, 0.75rem);\n\t}\n\n\t&.ObColorCard-minor {\n\t\tflex: 0 0 4rem;\n\t\tborder-right: 1px solid #e3e3e3;\n\t\ttransition: margin ease-in-out 300ms;\n\n\t\t@media screen and (min-width: 48rem) {\n\t\t\tflex: 0 0 8rem;\n\t\t}\n\t}\n}\n\n.ObColorCard-detailLabel {\n\tcolor: #696969;\n\tfont-size: 0.8rem;\n\ttext-transform: uppercase;\n}\n\n.ObColorCard-detail {\n\t&:not(:last-child) {\n\t\tmargin-right: 1.5rem;\n\t}\n\n\t&.ObColorCard-primary,\n\t&.ObColorCard-primary .ObColorCard-detailValue {\n\t\tfont-size: 1.25rem;\n\t\tfont-weight: 300;\n\t}\n\n\t&.ObColorCard-primary .ObColorCard-detailValue {\n\t\tcolor: unset;\n\t}\n\n\t@media screen and (min-width: 48rem) {\n\t\tfont-size: 1rem;\n\t}\n}\n\n.ObColorCard-detailValue {\n\tcolor: #555555;\n}\n\n.ObColorCard-stepList {\n\tdisplay: flex;\n\tflex-direction: column;\n\tgap: 1rem;\n}\n\n.ObColorCard-step {\n\tposition: relative;\n\ttext-box-trim: trim-both;\n\n\tdisplay: flex;\n\talign-items: flex-start;\n\tgap: 0.5rem;\n}\n\n.ObColorCard-step::before {\n\tflex: 0.6em 0 0;\n\tcontent: \"\";\n\n\tposition: relative;\n\ttop: 0.25em; /* half the height difference of text and the circle */\n\n\twidth: 0.6em;\n\theight: 0.6em;\n\tbackground: white;\n\tborder: 2px solid var(--bg-color-border, #999);\n\tborder-radius: 50%;\n\tbox-sizing: border-box;\n\tz-index: 1;\n}\n\n.ObColorCard-step:not(:last-child)::after {\n\tcontent: \"\";\n\tposition: absolute;\n\ttop: calc(0.25em + 0.6em + 0.15em); /* dot top + dot height + 0.15em spacing */\n\tleft: calc(0.3em - 1px); /* half of the circle width minus half the border width */\n\theight: calc(100% - 0.95em + 1rem + 0.0625em); /* height of container - top + gap */\n\tborder-left: 2px dotted #999;\n\tz-index: 0;\n}\n", ":root {\n\t--ob-datenavigator-height: 3rem;\n}\n\n.ObDateNavigator-icon {\n\tdisplay: inline-block;\n\n\tsvg {\n\t\twidth: 0.625em;\n\t\tposition: relative;\n\t\ttop: -1px;\n\t}\n}\n\n.ObDateNavigator-root {\n\tbackground-color: hsl(220, 20%, 96%);\n\tbackground-color: var(--block-header-color-bg);\n\tdisplay: flex;\n\tfont-size: 1rem;\n\toutline: none;\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--brand-dark, #336699);\n\t\toutline-offset: 2px;\n\t}\n}\n\n.ObDateNavigator-arrow {\n\tdisplay: flex;\n\talign-items: center;\n\tflex: 0 0 var(--ob-datenavigator-height);\n\tjustify-content: center;\n\n\theight: var(--ob-datenavigator-height);\n\n\tcursor: pointer;\n\ttext-align: center;\n\n\t&:hover:not(:disabled) {\n\t\tbackground-color: #e3e3e3;\n\t\tbackground-color: var(--block-header-button-hover);\n\t}\n\n\t&:disabled {\n\t\tcursor: not-allowed;\n\t\tcolor: rgba(0 0 0 / 0.2);\n\t}\n}\n\n.ObDateNavigator-arrowLeft {\n\tborder-right: 1px solid #dddddd;\n\torder: 1;\n}\n\n.ObDateNavigator-arrowRight {\n\tborder-left: 1px solid #dddddd;\n\torder: 3;\n}\n\n.ObDateNavigator-date {\n\tdisplay: flex;\n\tflex: 1 1 100%;\n\tflex-direction: column;\n\tjustify-content: center;\n\torder: 2;\n\n\theight: var(--ob-datenavigator-height);\n\n\ttext-align: center;\n}\n\n.ObDateNavigator-today {\n\torder: 4;\n\tpadding: 0 1rem;\n\theight: var(--ob-datenavigator-height);\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tfont-size: 0.875rem;\n\tcolor: var(--brand-dark, #336699);\n\ttext-transform: uppercase;\n\tcursor: pointer;\n\n\ttext-wrap: nowrap;\n\n\tborder-left: 1px solid #dddddd;\n\n\t&:hover:not(:disabled) {\n\t\tbackground-color: var(--block-header-button-hover);\n\t}\n\n\t&:focus-visible {\n\t\toutline: 2px solid var(--brand-dark, #336699);\n\t\toutline-offset: 2px;\n\t}\n}\n", "@use \"../styles/variables\";\n\n$bullet-size: 0.7em;\n$line-width: 0.2em;\n\n:root {\n\t--ob-linked-list-bullet-size: 0.7em;\n\t--ob-linked-list-line-width: 0.2em;\n}\n\n.ObLinkedList-root {\n\t\n\tlist-style-type: none;\n\tmargin-left: 0;\n\tpadding-left: 0;\n}\n\n.ObLinkedList-item {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: row;\n}\n\n.ObLinkedList-leftColumn {\n\tflex: 1 1 4em;\n\tfont-size: 0.75em;\n\tpadding: 0 1em;\n\ttext-align: center;\n}\n\n.ObLinkedList-rightColumn {\n\tflex: 1 1 100%;\n\tpadding: 1em 1em 1em 1.5em;\n}\n\n.ObLinkedList-line {\n\tdisplay: flex;\n\talign-self: stretch;\n\tflex: 0 0 $line-width;\n\tbackground: white;\n\tposition: relative;\n}\n\n.ObLinkedList-bullet {\n\tbackground: white;\n\n\tborder: 1px solid rgba(50, 50, 50, 0.25);\n\tborder-radius: 0.55em;\n\theight: $bullet-size;\n\twidth: $bullet-size;\n\n\tposition: absolute;\n\tleft: 0;\n\ttop: 50%;\n\n\ttransform: translate(calc(-1 * (var(--ob-linked-list-bullet-size) / 2) + (var(--ob-linked-list-line-width) / 2)), -50%);\n}\n\n.ObLinkedList-card {\n\tdisplay: block;\n\tbackground: white;\n\tborder: 1px solid;\n\tborder-color: variables.$color-border-top variables.$color-border-side variables.$color-border-bottom;\n\tborder-radius: 0.1875em;\n\tcolor: inherit;\n\tcursor: pointer;\n\tflex: 100% 1 1;\n\tposition: relative;\n}\n\n.ObLinkedList-card::before {\n\tborder-bottom: 0.5em solid transparent;\n\tborder-right: 1em solid white;\n\tborder-top: 0.5em solid transparent;\n\tcontent: \" \";\n\tfilter: drop-shadow(-1px 0px 1px rgba(50, 50, 50, 0.2));\n\theight: 1em;\n\tleft: -1em;\n\tmargin-top: -0.5em;\n\tposition: absolute;\n\ttop: 50%;\n\twidth: 1em;\n}\n\n.ObLinkedList-card:hover {\n\tbackground-color: variables.$block-color-bg-hover !important;\n\tcolor: inherit;\n\ttext-decoration: inherit;\n}\n\n.ObLinkedList-card:hover::before {\n\tborder-right-color: variables.$block-color-bg-hover !important;\n}\n", "@use \"../styles/variables\";\n\n.ObPageBanner-root {\n\tbackground-color: variables.$brand-primary;\n\tbackground-color: var(--brand-dark);\n\tbox-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2);\n\tcolor: white;\n\n\ta {\n\t\tcolor: hsl(200, 50%, 80%);\n\t}\n}\n\n.ObPageBanner-inner {\n\tdisplay: flex;\n\talign-items: center;\n\tflex-direction: column;\n\n\t@media screen and (min-width: variables.$screen-md) {\n\t\talign-items: flex-start;\n\t\tflex-direction: row;\n\t}\n}\n\n.ObPageBanner-plantTitle {\n\tfont-size: 2rem;\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\tfont-size: 3rem;\n\t}\n}\n\n.ObPageBanner-bannerImage {\n\talign-self: stretch;\n\tbackground-color: #ddd;\n\tdisplay: inline-block;\n\theight: 20vh;\n\tobject-fit: cover;\n\tobject-position: center center;\n\twidth: 100%;\n\n\t@media screen and (min-width: variables.$screen-sm) {\n\t\talign-self: center;\n\t\tmargin: 0;\n\t\tmargin-right: 1rem;\n\t\tborder: 0.4rem solid white;\n\t\tborder-radius: 50%;\n\t\theight: 150px;\n\t\twidth: 150px;\n\t}\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\theight: 250px;\n\t\twidth: 250px;\n\t}\n}\n\n.ObPageBanner-bannerTitle {\n\tmargin-bottom: 1rem;\n\tmargin-top: 1rem;\n\tfont-size: 2rem;\n\n\t@media screen and (min-width: variables.$screen-md) {\n\t\tmargin-top: 0;\n\t}\n\n\t@media screen and (min-width: variables.$screen-lg) {\n\t\tfont-size: 3rem;\n\t}\n}\n\n.ObPageBanner-tabList {\n\t&.sticky {\n\t\tposition: -webkit-sticky;\n\t\tposition: sticky;\n\t\ttop: 0;\n\t\tz-index: 1000;\n\t}\n}\n\n.ObPageBanner-tabListInner {\n\toverflow-x: auto;\n\tscrollbar-width: thin;\n\twhite-space: nowrap;\n}\n\n.ObPageBanner-tab {\n\tborder-bottom: 0.25rem solid transparent;\n\tdisplay: inline-block;\n\tmargin-top: 0.5rem;\n\tmin-width: 8rem;\n\tpadding: 0.5rem 1rem;\n\ttext-align: center;\n\ttext-transform: capitalize;\n\n\t&.active {\n\t\tborder-color: white;\n\t}\n}\n", "$brand-primary: hsl(186, 72%, 24%);\n$brand-light: hsl(186, 72%, 37%);\n$brand-dark: hsl(186, 74%, 20%);\n$brand-tertiary: rgb(68, 69, 84);\n\n$link-color: $brand-primary;\n$link-color-hover: $brand-dark;\n\n$line-height: 1.4;\n\n$color-bg-hover: hsla(186, 72%, 37%, 0.6);\n$color-bg-active: hsla(95, 49%, 71%, 0.2);\n$color-fg-active: black;\n\n$color-border-top: #e5e6e9;\n$color-border-side: #dfe0e4;\n$color-border-bottom: #d0d1d5;\n\n$navbar-height: 40px;\n\n$screen-xs: 0;\n$screen-sm: 576px;\n$screen-md: 768px;\n$screen-lg: 992px;\n$screen-xl: 1200px;\n\n$block-header-color-bg: hsl(220, 20%, 96%);\n$block-header-color-bg-hover: hsl(220, 20%, 92%);\n$block-header-color-fg: hsl(0, 0%, 20%);\n$block-color-bg-alt: hsl(220, 20%, 98%);\n$block-color-bg-hover: hsl(220, 20%, 94%);\n$block-color-border: #e5e5e5;\n\n$block-header-button-hover: hsl(220, 20%, 92%);\n$block-header-button-border: hsl(220, 7%, 82%);\n$block-header-button-active: hsl(220, 20%, 86%);\n\n$sidebar-padding: 0.9375rem;\n$sidebar-width: 18rem;\n$sidebar-fg-color: hsl(0, 0%, 90%);\n$sidebar-bg-color: hsl(186, 74%, 13%);\n$sidebar-header-color: hsl(220, 6%, 70%);\n$sidebar-link-fg-color: white;\n$sidebar-link-fg-active: white;\n$sidebar-link-bg-color: transparent;\n$sidebar-link-bg-hover: hsla(0, 0%, 100%, 0.1);\n$sidebar-link-bg-active: hsl(142, 13%, 13%);\n\n$padding-xs: 0.75rem;\n$padding-sm: 0.9375rem;\n$padding-lg: 1.5rem;\n\n$grid-gutter-width: 30px;\n\n$container-tablet: (720px + $grid-gutter-width);\n$container-sm: $container-tablet;\n$container-desktop: (940px + $grid-gutter-width);\n$container-md: $container-desktop;\n$container-large-desktop: (1140px + $grid-gutter-width);\n$container-lg: $container-large-desktop;\n\n$toolbar-background: linear-gradient(#fefefe, #fafafa); //white;\n$toolbar-height: 3.125rem;\n$toolbar-border-color: #dedede;\n$toolbar-border-width: 1px;\n\n$toolbar-btn-color: hsla(0, 0%, 60%, 0.8);\n$toolbar-btn-hover-color: hsla(0, 0%, 40%, 0.8);\n$toolbar-btn-bg: transparent;\n$toolbar-btn-hover-bg: linear-gradient(hsl(0, 0%, 89%), hsl(0, 0%, 87%));\n", "@use \"../styles/variables\";\n\n.ObProgressBar-root {\n\theight: 1.5em;\n\twidth: 100%;\n\tappearance: none;\n\t-webkit-appearance: none;\n\tbackground-color: whiteSmoke;\n\tborder: none;\n\tborder-radius: 3px;\n\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;\n\tcolor: royalblue;\n\tposition: relative;\n\n\t&::-webkit-progress-bar {\n\t\tbackground-color: whiteSmoke;\n\t\tborder-radius: 3px;\n\t\tbox-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;\n\t}\n\n\t&::-webkit-progress-value {\n\t\tbackground-image: linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\tlinear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\tlinear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-image:\n\t\t\t-webkit-linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\t-webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\t-webkit-linear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-size:\n\t\t\t35px 20px,\n\t\t\t100% 100%,\n\t\t\t100% 100%;\n\t\tborder-radius: 3px;\n\t\tposition: relative;\n\t\ttransition: width 0.5s ease-out;\n\t}\n\n\t&::-webkit-progress-value:after {\n\t\tbackground-color: white;\n\t\tcontent: \"\";\n\n\t\tborder-radius: 100%;\n\t\theight: 5px;\n\n\t\tposition: absolute;\n\t\tright: 7px;\n\t\ttop: 7px;\n\t\twidth: 5px;\n\t}\n\n\t&::-moz-progress-bar {\n\t\tbackground-image: linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\tlinear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\tlinear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-image:\n\t\t\t-moz-linear-gradient(\n\t\t\t\t135deg,\n\t\t\t\ttransparent,\n\t\t\t\ttransparent 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 33%,\n\t\t\t\trgba(0, 0, 0, 0.1) 66%,\n\t\t\t\ttransparent 66%\n\t\t\t),\n\t\t\t-moz-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),\n\t\t\t-moz-linear-gradient(left, var(--brand-primary), var(--brand-light));\n\t\tbackground-size:\n\t\t\t35px 20px,\n\t\t\t100% 100%,\n\t\t\t100% 100%;\n\t\tborder-radius: 3px;\n\t\ttransition: width 0.5s ease-out;\n\t}\n}\n", ".ObSidebar-root {\n\tposition: fixed;\n\tbottom: 0;\n\tleft: 0;\n\ttop: 0;\n\tz-index: 2;\n\n\tbackground-color: white;\n\n\ttransform: translateX(-100%);\n\ttransition: transform 0.2s ease-out;\n\twill-change: transform;\n\n\t&.Ob-right {\n\t\tleft: unset;\n\t\tright: 0;\n\t\ttransform: translateX(100%);\n\t}\n\n\toverflow-y: auto;\n\n\t&.Ob-open {\n\t\ttransform: translateX(0);\n\t}\n\n\t&.ObSidebar-shadow {\n\t\tbox-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);\n\n\t\t&.Ob-right {\n\t\t\tbox-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);\n\t\t}\n\t}\n}\n\n.ObSidebar-overlay {\n\tposition: fixed;\n\tbottom: 0;\n\tleft: 0;\n\tright: 0;\n\ttop: 0;\n\tz-index: 1;\n\n\topacity: 0;\n\tvisibility: hidden;\n\n\ttransition:\n\t\topacity 0.3s ease-out,\n\t\tvisibility 0.3s ease-out;\n\tbackground-color: rgba(0, 0, 0, 0.3);\n\n\t&.Ob-open {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n", "\n.ObSpinner-wrapper, .ObSpinner-fullPage {\n\t--bullet-size: 0.5em;\n}\n\n.ObSpinner-root {\n\tdisplay: inline-block;\n}\n\n.ObSpinner-fullPage {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\theight: 100vh;\n\twidth: 100vw;\n}\n\n.ObSpinner-spinner {\n\tdisplay: inline-block;\n\theight: calc(var(--bullet-size) * 1.5);\n\tposition: relative;\n\twidth: calc(var(--bullet-size) * 5);\n}\n\n.ObSpinner-bullet {\n\tanimation-timing-function: cubic-bezier(0, 1, 1, 0);\n\tbackground: #666;\n\tborder-radius: 50%;\n\theight: var(--bullet-size);\n\tposition: absolute;\n\ttop: 0.2rem;\n\twidth: var(--bullet-size);\n\n\t&:nth-child(1) {\n\t\tanimation: scaleAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 0.5);\n\t}\n\n\t&:nth-child(2) {\n\t\tanimation: translateAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 0.5);\n\t}\n\n\t&:nth-child(3) {\n\t\tanimation: translateAnimation 0.6s infinite ease-in-out;\n\t\tleft: calc(var(--bullet-size) * 2.4);\n\t}\n\n\t&:nth-child(4) {\n\t\tanimation: scaleAnimation 0.6s infinite ease-in-out reverse;\n\t\tleft: calc(var(--bullet-size) * 4);\n\t}\n}\n\n@keyframes scaleAnimation {\n\tfrom {\n\t\ttransform: scale(0);\n\t}\n\n\tto {\n\t\ttransform: scale(1);\n\t}\n}\n\n@keyframes translateAnimation {\n\tfrom {\n\t\ttransform: translate(0, 0);\n\t}\n\n\tto {\n\t\ttransform: translate(calc(var(--bullet-size) * 1.65), 0);\n\t}\n}\n", "/**\nHacky solution to sass output for some reason getting a zero-width space at the beginning, which breaks the first selector\n*/\n.😖 {\n\tdisplay: initial;\n}\n\n.ObSplitContainer-root {\n\tdisplay: flex;\n\tflex-direction: column;\n\theight: 100%;\n\twidth: 100%;\n\n\t&.horizontal {\n\t\tflex-direction: row;\n\t}\n}\n\n.ObSplitContainer-panel {\n\toverflow: hidden;\n}\n\n.ObSplitContainer-divider {\n\tflex: 0 0 0.5rem;\n\tbackground-color: transparent;\n\tline-height: 0.75;\n\tcursor: ns-resize;\n\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\n\t&:focus {\n\t\tbackground-color: rgba(0, 0, 0, 0.3);\n\t}\n\n\t.ObSplitContainer-root.horizontal > & {\n\t\tcursor: ew-resize;\n\t\twriting-mode: vertical-lr;\n\t}\n}\n\n.ObSplitContainer-panel.dragging {\n\tpointer-events: none;\n}\n", ".ObValueToggleGroup {\n\tpadding: 0.25rem;\n\tborder: 2px solid rgb(0 0 0 / 0.2);\n\tborder-radius: 4px;\n\n display: flex;\n gap: 0.25rem;\n flex-wrap: wrap;\n\n &.vertical {\n flex-direction: column;\n align-items: center;\n\n\t\t& .ObValueToggleOption {\n\t\t\twidth: 100%;\n\n\t\t\t& .ObValueToggleLabel {\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n }\n\n &:focus-within {\n border-color: rgb(0 0 0 / 0.8);\n }\n}\n\n.ObValueToggleOption {\n display: flex;\n align-items: center;\n margin: 0;\n position: relative;\n}\n\n.ObValueToggleOption input {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n.ObValueToggleLabel {\n font-size: 0.8em;\n margin: 0 0.2em;\n padding: 0.3em 0.5em;\n text-transform: uppercase;\n transition: background 0.2s ease, color 0.2s ease;\n border-radius: 4px;\n}\n\n.ObValueToggleOption:hover input:not(:disabled) + .ObValueToggleLabel {\n cursor: pointer;\n background: #ccc;\n}\n\n.ObValueToggleOption input:checked + .ObValueToggleLabel {\n --color-bg: var(--brand-dark);\n background-color: var(--color-bg);\n color: white;\n cursor: default;\n}\n\n.ObValueToggleOption input:disabled + .ObValueToggleLabel {\n color: rgb(0 0 0 / 0.5);\n}\n\n.ObValueToggleOption input:checked:focus-visible + .ObValueToggleLabel {\n --color-bg: var(--brand-light);\n outline: 2px solid var(--brand-light);\n}\n\n.ObValueToggleOption input:checked:hover + .ObValueToggleLabel {\n background-color: var(--color-bg);\n}"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|