{"version":3,"sources":["blueprint-select.css"],"names":[],"mappings":"AAYA;EACE,eAAgB;AAClB;;AAEA;EACE,gBAAiB;EACjB,eAAgB;EAChB,aAAc;AAChB;AACA;EACE,UAAW;AACb;AACA;EACE,cAAe;EACf,WAAY;AACd;AAkDA;EACE,sBAAe;UAAf,cAAe;EACf,SAAU;EACV,wBAAyB;EACzB,iBAAkB;EAClB,0HAAmH;UAAnH,kHAAmH;EACnH,sBAAuB;EACvB,QAAS;EACT,WAAY;EACZ,UAAW;AACb;AACA;EACE,yBAAkB;UAAlB,iBAAkB;EAClB,SAAU;AACZ;AACA;EACE,sBAAe;UAAf,cAAe;EACf,SAAU;EACV,0BAAmB;UAAnB,kBAAmB;EACnB,iCAA0B;UAA1B,yBAA0B;EAC1B,mDAAoC;EAApC,2CAAoC;EAApC,mCAAoC;EAApC,mDAAoC;EAEpC,kEAA2D;UAA3D,0DAA2D;AAC7D;AACA;EACE,sBAAe;UAAf,cAAe;EACf,SAAU;AACZ;AACA;EACE,yBAAkB;UAAlB,iBAAkB;EAClB,SAAU;EACV,0BAAmB;UAAnB,kBAAmB;EACnB,iCAA0B;UAA1B,yBAA0B;EAC1B,mDAAoC;EAApC,2CAAoC;EAApC,mCAAoC;EAApC,mDAAoC;EAEpC,kEAA2D;UAA3D,0DAA2D;AAC7D;AACA;EACE,4BAA6B;EAC7B,eAAgB;AAClB;AACA;EACE,uBAAgB;UAAhB,eAAgB;AAClB;AACA;EACE,4BAA6B;EAC7B,eAAgB;EAChB,uDAAgD;UAAhD,+CAAgD;EAChD,4BAA6B;EAC7B,aAAc;AAChB;AACA;EACE,YAAa;AACf;AACA;EACE,wBAAyB;EACzB,mIAA4H;UAA5H,2HAA4H;AAC9H;;AAEA;EACE,sCAAuC;AACzC;AAQA;;EAEE,WAAY;AACd;AACA;EACE,eAAgB;AAClB;AACA;EACE,gBAAiB;EACjB,eAAgB;EAChB,aAAc;EACd,SAAU;AACZ;AACA;EACE,eAAgB;AAClB;AACA;EACE,UAAW;AACb;AACA;EACE,cAAe;EACf,WAAY;AACd;AAQA;EACE,gBAAiB;EACjB,eAAgB;EAChB,aAAc;AAChB;AACA;EACE,UAAW;AACb;AACA;EACE,cAAe;EACf,WAAY;AACd","file":"blueprint-select.css","sourcesContent":["/*\n\nCopyright 2017-present Palantir Technologies, Inc. All rights reserved.\nLicensed under the Apache License, Version 2.0.\n\n*/\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp4-multi-select {\n  min-width: 150px;\n}\n\n.bp4-multi-select-popover .bp4-menu {\n  max-height: 300px;\n  max-width: 400px;\n  overflow: auto;\n}\n.bp4-multi-select-popover.bp4-popover2-match-target-width {\n  width: 100%;\n}\n.bp4-multi-select-popover.bp4-popover2-match-target-width .bp4-menu {\n  max-width: none;\n  min-width: 0;\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\nA mixin to generate the classes for a React CSSTransition which animates any number of CSS\nproperties at once.\n\nTransitioned properties are specificed as a map of property names to lists of (inital value, final\nvalue). For enter & appear transitions, each property will transition from its initial to its final\nvalue. For exit transitions, each property will transition in reverse, from final to initial.\n\n**Simple example:**\n`@include react-transition(\"popover\", (opacity: 0 1), $before: \"&\");`\nTransition named \"popover\" moves opacity from 0 to 1. `\"&\"` indicates that the\nTransition classes are expected to be applied to this element, where the mixin is invoked.\n\n**Params:**\n$name: React transitionName prop\n$properties: map of CSS property to (initial, final) values\n$duration: transition duration\n$easing: transition easing function\n$delay: transition delay\n$before: selector text to insert before transition name (often to select self: &)\n$after: selector text to insert after transiton name (to select children)\n*/\n/*\nA mixin to generate the classes for one phase of a React CSSTransition.\n`$phase` must be `appear` or `enter` or `exit`.\nIf `enter` phase is given then `appear` phase will be generated at the same time.\nIf `exit` phase is given then property values are animated in reverse, from final to initial.\n\n**Example:**\n@include react-transition-phase(toast, enter, $enter-translate, $before: \"&\");\n@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: \"&\");\n*/\n/*\nGiven map of properties to values, set each property to the value at the given index.\n(remember that sass indices are 1-based).\n\nExample: `each-prop((opacity: 0 1), 2)` will print \"opacity: 1\"\n*/\n/*\nFormat transition class name with all the bits.\n\"enter\" phase will include \"appear\" phase in returned name.\n*/\n.bp4-omnibar {\n  filter: blur(0);\n  opacity: 1;\n  background-color: #ffffff;\n  border-radius: 2px;\n  box-shadow: 0 0 0 1px rgba(17, 20, 24, 0.1), 0 4px 8px rgba(17, 20, 24, 0.2), 0 18px 46px 6px rgba(17, 20, 24, 0.2);\n  left: calc(50% - 250px);\n  top: 20vh;\n  width: 500px;\n  z-index: 21;\n}\n.bp4-omnibar.bp4-overlay-enter, .bp4-omnibar.bp4-overlay-appear {\n  filter: blur(20px);\n  opacity: 0;\n}\n.bp4-omnibar.bp4-overlay-enter-active, .bp4-omnibar.bp4-overlay-appear-active {\n  filter: blur(0);\n  opacity: 1;\n  transition-delay: 0;\n  transition-duration: 200ms;\n  transition-property: filter, opacity;\n  /* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */\n  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);\n}\n.bp4-omnibar.bp4-overlay-exit {\n  filter: blur(0);\n  opacity: 1;\n}\n.bp4-omnibar.bp4-overlay-exit-active {\n  filter: blur(20px);\n  opacity: 0;\n  transition-delay: 0;\n  transition-duration: 200ms;\n  transition-property: filter, opacity;\n  /* stylelint-disable-next-line declaration-block-no-redundant-longhand-properties */\n  transition-timing-function: cubic-bezier(0.4, 1, 0.75, 0.9);\n}\n.bp4-omnibar .bp4-input {\n  background-color: transparent;\n  border-radius: 0;\n}\n.bp4-omnibar .bp4-input, .bp4-omnibar .bp4-input:focus {\n  box-shadow: none;\n}\n.bp4-omnibar .bp4-menu {\n  background-color: transparent;\n  border-radius: 0;\n  box-shadow: inset 0 1px 0 rgba(17, 20, 24, 0.15);\n  max-height: calc(60vh - 40px);\n  overflow: auto;\n}\n.bp4-omnibar .bp4-menu:empty {\n  display: none;\n}\n.bp4-dark .bp4-omnibar, .bp4-omnibar.bp4-dark {\n  background-color: #383e47;\n  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 8px rgba(17, 20, 24, 0.4), 0 18px 46px 6px rgba(17, 20, 24, 0.4);\n}\n\n.bp4-omnibar-overlay .bp4-overlay-backdrop {\n  background-color: rgba(17, 20, 24, 0.2);\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp4-select-popover .bp4-popover-content,\n.bp4-select-popover .bp4-popover2-content {\n  padding: 5px;\n}\n.bp4-select-popover .bp4-input-group {\n  margin-bottom: 0;\n}\n.bp4-select-popover .bp4-menu {\n  max-height: 300px;\n  max-width: 400px;\n  overflow: auto;\n  padding: 0;\n}\n.bp4-select-popover .bp4-menu:not(:first-child) {\n  padding-top: 5px;\n}\n.bp4-select-popover.bp4-popover2-match-target-width, .bp4-select-popover.bp4-select-match-target-width {\n  width: 100%;\n}\n.bp4-select-popover.bp4-popover2-match-target-width .bp4-menu, .bp4-select-popover.bp4-select-match-target-width .bp4-menu {\n  max-width: none;\n  min-width: 0;\n}\n\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n */\n.bp4-suggest-popover .bp4-menu {\n  max-height: 300px;\n  max-width: 400px;\n  overflow: auto;\n}\n.bp4-suggest-popover.bp4-popover2-match-target-width {\n  width: 100%;\n}\n.bp4-suggest-popover.bp4-popover2-match-target-width .bp4-menu {\n  max-width: none;\n  min-width: 0;\n}"]}