Files
slider/examples/simple.css.map
T
2015-08-24 14:23:04 +08:00

1 line
6.5 KiB
Plaintext

{"version":3,"sources":["webpack:///assets/index.less"],"names":[],"mappings":"AAaA;EACE;EACA;CAZD;AAeD;;EAEE;CAbD;AAgBD;EACE;EACA;EACA;EACA;EACA;CAdD;AAgBC;EACE;EACA;EACA;EACA;EACA;EACA;CAdH;AAiBC;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CAfH;AAiBG;EACE;CAfL;AAkBK;EACE;EACA;CAhBP;AAqBC;EACE;EACA;EACA;EACA;EACA;EACA;CAnBH;AAsBC;EACE;EACA;EACA;EACA;EACA;EACA;CApBH;AAsBG;EACE;CApBL;AAwBC;EACE;EACA;EACA;EACA;EACA;CAtBH;AAyBC;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CAvBH;AAwBG;EACE;CAtBL;AAwBG;EACE;CAtBL;AAwBG;EACE;CAtBL;AA0BC;EACE;CAxBH;AAuBC;EAII;CAxBL;AAoBC;EAQI;EACA;EACA;CAzBL;AAeC;;EAcI;CAzBL;AA8BC;EACE;EACA;EACA;EACA;EACA;CA5BH;AA8BG;EACE;CA5BL;AA+BG;EACE;CA7BL;AAgCG;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CA9BL;AAiCG;EACE;EACA;EACA;EACA;EACA;CA/BL;AAkCG;EACE;EACA;EACA;EACA;EACA;CAhCL;AA4CC;;EANA;UAAA;EACA;UAAA;EACA;EAME;UAAA;CAvCH;AAyCC;EAVA;UAAA;EACA;UAAA;EACA;EAUE;UAAA;CArCH;AAuCC;;EACE;UAAA;EACA;UAAA;CApCH;AAsCC;EACE;UAAA;EACA;UAAA;CApCH;AAyCC;;EACE;MAAA;UAAA;EACA;UAAA;CAtCH;AAwCC;EACE;UAAA;CAtCH;AA2CD;EACE;IACE;IACA;YAAA;IACA;YAAA;GAzCD;EA2CD;IACE;YAAA;IACA;YAAA;GAzCD;CACF;AAgCD;EACE;IACE;IACA;YAAA;IACA;YAAA;GAzCD;EA2CD;IACE;YAAA;IACA;YAAA;GAzCD;CACF;AA4CD;EACE;IACE;YAAA;IACA;YAAA;GA1CD;EA4CD;IACE;IACA;YAAA;IACA;YAAA;GA1CD;CACF;AAiCD;EACE;IACE;YAAA;IACA;YAAA;GA1CD;EA4CD;IACE;IACA;YAAA;IACA;YAAA;GA1CD;CACF","file":"simple.css","sourcesContent":["@prefixClass: rc-slider;\n\n@disabledColor: #ccc;\n@border-radius-base: 6px;\n@primary-color: #2db7f5;\n@tooltip-color: #fff;\n@tooltip-bg: tint(#666, 4%);\n@tooltip-arrow-width: 4px;\n@tooltip-distance: @tooltip-arrow-width+4;\n@tooltip-arrow-color: @tooltip-bg;\n@ease-out-quint : cubic-bezier(0.23, 1, 0.32, 1);\n@ease-in-quint : cubic-bezier(0.755, 0.05, 0.855, 0.06);\n\n* {\n box-sizing: border-box;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); // remove tap highlight color for mobile safari\n}\n\n*:before,\n*:after {\n box-sizing: border-box;\n}\n\n.@{prefixClass} {\n position: relative;\n height: 4px;\n width: 100%;\n border-radius: @border-radius-base;\n background-color: #e9e9e9;\n\n &-track {\n position: absolute;\n left: 0;\n height: 4px;\n border-radius: @border-radius-base;\n background-color: tint(@primary-color, 60%);\n z-index: 1;\n }\n\n &-handle {\n position: absolute;\n margin-left: -7px;\n margin-top: -5px;\n width: 14px;\n height: 14px;\n cursor: pointer;\n border-radius: 50%;\n border: solid 2px tint(@primary-color, 50%);\n background-color: #fff;\n z-index: 2;\n\n &:hover {\n border-color: tint(@primary-color, 20%);\n }\n &-active {\n &:active {\n border-color: tint(@primary-color, 20%);\n box-shadow: 0 0 5px tint(@primary-color, 20%);\n }\n }\n }\n\n &-mark {\n position: absolute;\n top: 10px;\n left: 0;\n width: 100%;\n font-size: 12px;\n z-index: 3;\n }\n\n &-mark-text {\n position: absolute;\n display: inline-block;\n vertical-align: middle;\n text-align: center;\n cursor: pointer;\n color: #999;\n\n &-active {\n color: #666;\n }\n }\n\n &-step {\n position: absolute;\n width: 100%;\n height: 4px;\n background: transparent;\n z-index: 1;\n }\n\n &-dot {\n position: absolute;\n top: -2px;\n margin-left: -4px;\n width: 8px;\n height: 8px;\n border: 2px solid #e9e9e9;\n background-color: #fff;\n cursor: pointer;\n border-radius: 50%;\n vertical-align: middle;\n &:first-child {\n margin-left: -4px;\n }\n &:last-child {\n margin-left: -4px;\n }\n &-active {\n border-color: tint(@primary-color, 50%);\n }\n }\n\n &-disabled {\n background-color: #e9e9e9;\n\n .@{prefixClass}-track {\n background-color: @disabledColor;\n }\n\n .@{prefixClass}-handle {\n border-color: @disabledColor;\n background-color: #fff;\n cursor: not-allowed;\n }\n\n .@{prefixClass}-mark-text, .dot {\n cursor: not-allowed!important;\n }\n }\n\n // slider tooltip style\n &-tooltip {\n position: absolute;\n left: -9999px;\n top: -9999px;\n z-index: 4;\n visibility: visible;\n\n &-hidden {\n display: none;\n }\n\n &-placement-points-bc-tc {\n padding: @tooltip-arrow-width 0 @tooltip-distance 0;\n }\n\n &-inner {\n padding: 6px 0;\n width: 24px;\n height: 24px;\n font-size: 12px;\n line-height: 1;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n box-shadow: 0 0 4px #d9d9d9;\n }\n\n &-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n\n &-placement-points-bc-tc &-arrow {\n bottom: @tooltip-distance - @tooltip-arrow-width;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n }\n}\n\n.motion-common() {\n animation-duration: .3s;\n animation-fill-mode: both;\n display: block !important;\n}\n\n.make-motion(@className, @keyframeName) {\n .@{className}-enter, .@{className}-appear {\n .motion-common();\n animation-play-state: paused;\n }\n .@{className}-leave {\n .motion-common();\n animation-play-state: paused;\n }\n .@{className}-enter.@{className}-enter-active, .@{className}-appear.@{className}-appear-active {\n animation-name: ~\"@{keyframeName}In\";\n animation-play-state: running;\n }\n .@{className}-leave.@{className}-leave-active {\n animation-name: ~\"@{keyframeName}Out\";\n animation-play-state: running;\n }\n}\n.zoom-motion(@className, @keyframeName) {\n .make-motion(@className, @keyframeName);\n .@{className}-enter, .@{className}-appear {\n transform: scale(0, 0); // need this by yiminghe\n animation-timing-function: @ease-out-quint;\n }\n .@{className}-leave {\n animation-timing-function: @ease-in-quint;\n }\n}\n.zoom-motion(zoom-down, zoomDown);\n\n@keyframes zoomDownIn {\n 0% {\n opacity: 0;\n transform-origin: 50% 100%;\n transform: scale(0, 0);\n }\n 100% {\n transform-origin: 50% 100%;\n transform: scale(1, 1);\n }\n}\n\n@keyframes zoomDownOut {\n 0% {\n transform-origin: 50% 100%;\n transform: scale(1, 1);\n }\n 100% {\n opacity: 0;\n transform-origin: 50% 100%;\n transform: scale(0, 0);\n }\n}\n\n\n/** WEBPACK FOOTER **\n ** assets/index.less\n **/"],"sourceRoot":""}