UNPKG

turnilo

Version:

Business intelligence, data exploration and visualization web application for Druid, formerly known as Swiv and Pivot

1 lines 13.6 kB
{"version":3,"sources":["webpack:///./src/client/components/grid-lines/grid-lines.scss","webpack:///./src/client/utils/styles/_css-variable.scss","webpack:///./src/client/components/color-legend/color-legend.scss","webpack:///./src/client/utils/styles/_module.scss","webpack:///./src/client/utils/styles/_variables.scss","webpack:///./src/client/visualizations/scatterplot/scatterplot.scss","webpack:///./src/client/components/segment-bubble/segment-bubble.scss","webpack:///./src/client/utils/styles/_menu-cont.scss","webpack:///./src/client/components/measure-bubble-content/measure-bubble-content.scss","webpack:///./src/client/components/tooltip-within-stage/tooltip-within-stage.scss"],"names":[],"mappings":"AAmBA,iBCjBE,cAAU,CACV,6BAA0B,CDmBxB,mBAAoB,CEJxB,sECAE,eCCU,CDAV,qCCEU,CFHZ,mCDhBE,UAAU,CACV,uBAA0B,CCmBxB,iBAAkB,CAClB,WAAY,CACZ,iBAAkB,CAClB,gBAAiB,CACjB,cAAe,CACf,wBAAyB,CAT7B,mCAcI,iBAAkB,CAClB,iBAAkB,CAftB,oHAqBI,WAAY,CACZ,gBAAiB,CAtBrB,8EA2BI,SAAU,CG3Bd,oCAEI,YAAa,CACb,qBAAsB,CACtB,0BAA2B,CAC3B,kBAAmB,CACnB,iBAAkB,CANtB,mBAUI,mBAAoB,CAVxB,4DAiBM,WDbK,CCJX,0BJhBE,SAAU,CACV,uBAA0B,CIqCtB,cAAe,CACf,eAAgB,CAvBtB,uCA0BQ,kBAAmB,CA1B3B,yBAgCI,iBAAkB,CAClB,eD0CM,CC3EV,yDAuCQ,oBAAqB,CACrB,eDmCE,CClCF,iBAAkB,CCxC1B,gBCDE,eHCU,CGAV,iBHsFU,CGrFV,kEDCA,iBAAkB,CAClB,WAAY,CACZ,6BFJU,CEKV,+BCJ2E,CDD7E,wBAQI,QAAS,CACT,QAAS,CACV,qBAID,WAAY,CACZ,iBAAkB,CAClB,eAAgB,CAHlB,4BAMI,UAAW,CACX,gBAAiB,CACjB,aAAc,CACd,kBAAmB,CACnB,eAAgB,CAChB,oBAAqB,CAXzB,8BAeI,kBAAmB,CE7BvB,eACE,gBAAiB,CACjB,eAAiB,CAClB,gBPnBC,aAAU,CACV,4BAA0B,COsB1B,gBAAiB,CCPnB,sBRNE,kCAA6G,CAC7G,oDAA8F,CQO9F,iBAAkB,CAClB,iBAAkB,CAClB,WAAY,CACZ,eLJU,CKMV,WAAY","file":"scatterplot.css","sourcesContent":["/*\n * Copyright 2015-2016 Imply Data, Inc.\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.grid-lines {\n line {\n @include css-variable(stroke, grid-line-color);\n pointer-events: none;\n }\n}\n","// sass-lint:disable no-duplicate-properties\n@mixin css-variable($prop, $var) {\n #{$prop}: #{map-get($theme-colors, $var)};\n #{$prop}: var(--#{$var});\n}\n\n@mixin border-css-variable($prop, $width, $style, $var) {\n #{$prop}: #{$width} #{$style} #{map-get($theme-colors, $var)};\n #{$prop}: #{$width} #{$style} var(--#{$var});\n}\n\n@mixin box-shadow-css-variable($offset-x, $offset-y, $blur-radius, $spread-radius, $var) {\n box-shadow: inset #{$offset-x} #{$offset-y} #{$blur-radius} #{$spread-radius} #{map-get($theme-colors, $var)};\n box-shadow: inset #{$offset-x} #{$offset-y} #{$blur-radius} #{$spread-radius} var(--#{$var});\n}\n","/*\n * Copyright 2017-2022 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.color-legend {\n .color-legend-header {\n @extend %module;\n @include css-variable(color, text-light);\n margin-bottom: 1px;\n height: 36px;\n padding-left: 14px;\n padding-top: 12px;\n font-size: 12px;\n text-transform: uppercase;\n }\n\n .color-legend-stripe {\n @extend %module;\n margin-bottom: 1px;\n padding: 10px 14px;\n }\n\n .color-legend-stripe-axis,\n .color-lower-bound-tick,\n .color-upper-bound-tick {\n stroke: #444;\n stroke-width: 1px;\n }\n\n .color-lower-bound-value,\n .color-upper-bound-value {\n fill: #444;\n }\n}\n","/*\n * Copyright 2015-2016 Imply Data, Inc.\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n%module {\n background: $white;\n box-shadow: 0 1px 1px 0 rgba($black, 0.1);\n}\n\n%module-h-title {\n .title {\n @include pin-left($bar-title-width);\n @include css-variable(color, text-light);\n padding: 12px 5px 0 0;\n font-size: 12px;\n text-transform: uppercase;\n text-align: right;\n }\n}\n","/*\n * Copyright 2015-2016 Imply Data, Inc.\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n// Base Colors\n\n$white: #fff;\n$red: #f00;\n$black: #000;\n$gray: #ccc;\n\n// Theme Colors\n\n$brand: hsl(21, 100%, 50%);\n$background-base: #e1e1e1;\n$error: hsla(0, 72%, 59%, 1.00);\n$hover: lighten($brand, 40%);\n$text-standard: hsl(0, 0%, 13%);\n$item-dimension: hsl(21, 100%, 80%);\n$item-measure: hsl(205, 60%, 77%);\n\n$theme-colors: (\n background-base: $background-base,\n background-brand-light: hsl(21, 100%, 70%),\n background-brand-text: #fff,\n background-brand: $brand,\n background-dark: hsl(0, 0%, 55%),\n background-light: hsl(0, 0%, 93%),\n background-lighter: hsl(0, 0%, 95%),\n background-lightest: hsl(0, 0%, 96%),\n background-medium: hsl(0, 0%, 87%),\n border-darker: hsl(0, 0%, 40%),\n border-extra-light: hsl(0, 0%, 87%),\n border-light: hsl(0, 0%, 82%),\n border-medium: hsl(0, 0%, 73%),\n border-super-light: #e6e6e6,\n brand-hover: rgba($brand, 0.12),\n brand-selected: rgba($brand, 0.14),\n brand: $brand,\n button-primary-active: darken($brand, 10%),\n button-primary-hover: darken($brand, 5%),\n button-secondary-active: rgba($brand, 0.38),\n button-secondary-hover: rgba($brand, 0.3),\n button-secondary: rgba($brand, 0.22),\n button-warn-active: darken($error, 10%),\n button-warn-hover: darken($error, 5%),\n button-warn: $error,\n danger: #e24c4c,\n dark: #004584,\n date-range-picker-selected: rgba($brand, 0.26),\n drop-area-indicator: hsla(0, 0%, 40%, 0.14),\n error: $error,\n grid-line-color: hsl(0, 0%, 92%),\n highlight-border: darken($hover, 15%),\n highlight: darken($hover, 10%),\n hover: $hover,\n icon-hover: #888,\n icon-light: #bbb,\n item-dimension-hover: darken($item-dimension, 6%),\n item-dimension-text: $text-standard,\n item-dimension: $item-dimension,\n item-measure-hover: darken($item-measure, 6%),\n item-measure-text: $text-standard,\n item-measure: $item-measure,\n negative: #e14040,\n pinboard-icon: darken($background-base, 5%),\n positive: #08b157,\n text-default-color: #444,\n text-light: #999,\n text-lighter: hsl(0, 0%, 73%),\n text-lighterish: #a6a6a6,\n text-lightest: hsl(0, 0%, 85%),\n text-link: $brand,\n text-medium: hsl(0, 0%, 40%),\n text-standard: $text-standard,\n);\n\n// Fonts -------------------\n\n\n$bold: 600;\n\n// other\n\n$input-height: 30px;\n$input-height-mini: 28px;\n$form-spacing-compact: 14px;\n\n\n// Transitions ----------------\n\n$duration: .2s;\n$corner: 2px;\n","/*\n * Copyright 2017-2022 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.scatterplot {\n .scatterplot-container {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n position: relative;\n }\n\n .axis {\n pointer-events: none;\n\n line.border {\n stroke: $gray;\n }\n\n line.tick {\n stroke: $gray;\n }\n\n .label {\n @include css-variable(fill, text-medium);\n font-size: 12px;\n font-weight: 400;\n\n &.axis-label-x {\n text-anchor: middle;\n }\n }\n }\n\n .axis-title {\n position: absolute;\n font-weight: $bold;\n }\n\n .segment-bubble-text {\n .content {\n .series-title {\n display: inline-block;\n font-weight: $bold;\n margin-bottom: 4px;\n }\n }\n }\n}\n","/*\n * Copyright 2015-2016 Imply Data, Inc.\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.segment-bubble {\n @extend %menu-cont;\n position: absolute;\n padding: 5px;\n background: rgba($white, 0.9);\n transform: translate(-50%, -100%);\n\n .shpitz {\n left: 50%;\n top: 100%;\n }\n}\n\n.segment-bubble-text {\n padding: 5px;\n text-align: center;\n max-width: 400px;\n\n .title {\n color: #999;\n line-height: 17px;\n display: block;\n padding-bottom: 9px;\n overflow: hidden;\n word-wrap: break-word;\n }\n\n .content {\n white-space: nowrap;\n }\n}\n","/*\n * Copyright 2015-2016 Imply Data, Inc.\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n%menu-cont {\n background: $white;\n border-radius: $corner;\n box-shadow: 0 3px 10px 0 hsla(0, 0, 0, 0.26), 0 0 3px 0 hsla(0, 0, 0, 0.16);\n}\n","/*\n * Copyright 2017-2019 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.current-value {\n margin-right: 8px;\n font-weight: bold;\n}\n\n.previous-value {\n @include css-variable(color, text-lighterish);\n margin-right: 8px;\n}\n\n","/*\n * Copyright 2017-2018 Allegro.pl\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n@import '../../imports';\n\n.tooltip-within-stage {\n @include box-shadow-css-variable(0, 0, 0, 1px, border-extra-light);\n position: absolute;\n border-radius: 3px;\n padding: 6px;\n background: $white;\n // TODO: we need some solution for z-indexes\n z-index: 800;\n}\n"],"sourceRoot":""}