{"version":3,"sources":["css/dygraph.css"],"names":[],"mappings":"AAoDA,oBAhDA,gBAmEE,SAAU,OAnEZ,gBACE,SAAU,SACV,UAAW,KACX,QAAS,GACT,MAAO,MAEP,WAKG,KACH,YAAa,OACb,WAAY,KAiBd,qBAZA,qBAaE,QAAS,aACT,SAAU,SACV,OAAQ,KACR,OAAQ,IACR,oBAAqB,IACrB,oBAAqB,MAlBvB,qBAIE,aAAc,IA0BhB,oBANA,gBAOE,SAAU,SAiCV,QAAS,GA1BX,4BACE,OAAQ,IAAI,MAAM,KAClB,iBAAkB,KAClB,WAAY,OAGd,oBAGE,QAA4nC,GAC5nC,YAAa,OACb,SAAU,OACV,MAAO,KAYT,eACE,YAAa,IACb,QAAS,GACT,WAAY,OAId,gBACE,WAAY,OAKd,2BACE,WAAY,OAEZ,UAA2xB,cAC3xB,kBAAmB,cACnB,eAAgB,cAChB,aAAc,cACd,cAAe,cAIjB,4BACE,WAAY,OAEZ,UAAm2B,eACn2B,kBAAmB,eACnB,eAAgB,eAChB,aAAc,eACd,cAAe","sourcesContent":["/**\n * Default styles for the dygraphs charting library.\n */\n\n.dygraph-legend {\n  position: absolute;\n  font-size: 14px;\n  z-index: 10;\n  width: 250px;  /* labelsDivWidth */\n  /*\n  dygraphs determines these based on the presence of chart labels.\n  It might make more sense to create a wrapper div around the chart proper.\n  top: 0px;\n  right: 2px;\n  */\n  background: white;\n  line-height: normal;\n  text-align: left;\n  overflow: hidden;\n}\n\n/* styles for a solid line in the legend */\n.dygraph-legend-line {\n  display: inline-block;\n  position: relative;\n  bottom: .5ex;\n  padding-left: 1em;\n  height: 1px;\n  border-bottom-width: 2px;\n  border-bottom-style: solid;\n  /* border-bottom-color is set based on the series color */\n}\n\n/* styles for a dashed line in the legend, e.g. when strokePattern is set */\n.dygraph-legend-dash {\n  display: inline-block;\n  position: relative;\n  bottom: .5ex;\n  height: 1px;\n  border-bottom-width: 2px;\n  border-bottom-style: solid;\n  /* border-bottom-color is set based on the series color */\n  /* margin-right is set based on the stroke pattern */\n  /* padding-left is set based on the stroke pattern */\n}\n\n.dygraph-roller {\n  position: absolute;\n  z-index: 10;\n}\n\n/* This class is shared by all annotations, including those with icons */\n.dygraph-annotation {\n  position: absolute;\n  z-index: 10;\n  overflow: hidden;\n}\n\n/* This class only applies to annotations without icons */\n/* Old class name: .dygraphDefaultAnnotation */\n.dygraph-default-annotation {\n  border: 1px solid black;\n  background-color: white;\n  text-align: center;\n}\n\n.dygraph-axis-label {\n  /* position: absolute; */\n  /* font-size: 14px; */\n  z-index: 10;\n  line-height: normal;\n  overflow: hidden;\n  color: black;  /* replaces old axisLabelColor option */\n}\n\n.dygraph-axis-label-x {\n}\n\n.dygraph-axis-label-y {\n}\n\n.dygraph-axis-label-y2 {\n}\n\n.dygraph-title {\n  font-weight: bold;\n  z-index: 10;\n  text-align: center;\n  /* font-size: based on titleHeight option */\n}\n\n.dygraph-xlabel {\n  text-align: center;\n  /* font-size: based on xLabelHeight option */\n}\n\n/* For y-axis label */\n.dygraph-label-rotate-left {\n  text-align: center;\n  /* See http://caniuse.com/#feat=transforms2d */\n  transform: rotate(90deg);\n  -webkit-transform: rotate(90deg);\n  -moz-transform: rotate(90deg);\n  -o-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n}\n\n/* For y2-axis label */\n.dygraph-label-rotate-right {\n  text-align: center;\n  /* See http://caniuse.com/#feat=transforms2d */\n  transform: rotate(-90deg);\n  -webkit-transform: rotate(-90deg);\n  -moz-transform: rotate(-90deg);\n  -o-transform: rotate(-90deg);\n  -ms-transform: rotate(-90deg);\n}\n"]}