| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662 |
- /* Iris Base
- ---------------------------------------------------- */
- .fl-color-picker-ui {
- width: 300px;
- }
- .fl-color-picker-ui.fl-color-alpha-enabled {
- width: 238px;
- }
- .fl-color-picker-ui .iris-picker {
- float: left;
- width: 100%;
- height: 224px;
- display: block;
- position: relative;
- border-top: 1px solid rgba(0,0,0,0.1);
- }
- .fl-color-picker-ui .iris-picker, .iris-picker * {
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- }
- .fl-color-picker-ui .iris-error {
- background-color: #ffafaf;
- }
- .fl-color-picker-ui .iris-picker-inner{
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- }
- .fl-color-picker-ui .iris-picker .iris-square-inner {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- .fl-color-picker-ui .iris-picker .iris-square {
- width: 300px;
- height: 200px;
- }
- .fl-color-picker-ui .iris-picker .iris-slider,
- .fl-color-picker-ui .iris-picker .iris-square-inner,
- .fl-color-picker-ui .iris-picker .iris-palette {
- height: 100%;
- width: 12.5%;
- }
- .fl-color-picker-ui .iris-picker .iris-placeholder,
- .fl-color-picker-ui .iris-picker .iris-square {
- position: relative;
- }
- .fl-color-picker-ui .iris-picker .iris-square-inner {
- width: auto;
- margin: 0;
- }
- .fl-color-picker-ui .iris-ie-9 .iris-square,
- .fl-color-picker-ui .iris-ie-9 .iris-slider,
- .fl-color-picker-ui .iris-ie-9 .iris-square-inner,
- .fl-color-picker-ui .iris-ie-9 .iris-palette {
- box-shadow: none;
- border-radius: 0;
- }
- .fl-color-picker-ui .iris-ie-9 .iris-square,
- .fl-color-picker-ui .iris-ie-9 .iris-slider,
- .fl-color-picker-ui .iris-ie-9 .iris-palette {
- outline: 1px solid rgba(0,0,0,.1);
- }
- .fl-color-picker-ui .iris-ie-lt9 .iris-square,
- .fl-color-picker-ui .iris-ie-lt9 .iris-slider,
- .fl-color-picker-ui .iris-ie-lt9 .iris-square-inner,
- .fl-color-picker-ui .iris-ie-lt9 .iris-palette {
- outline: 1px solid #999;
- }
- .fl-color-picker-ui .iris-ie-lt9 .iris-square .ui-slider-handle {
- outline: 1px solid #999;
- background-color: #fff;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
- }
- .fl-color-picker-ui .iris-ie-lt9 .iris-square .iris-square-handle {
- background: none;
- border: 3px solid #fff;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
- }
- .fl-color-picker-ui .iris-picker .iris-strip {
- box-sizing: border-box;
- width: calc(300px - 12px);
- margin: 6px 6px;
- margin-top: 5px;
- border-radius: 4px;
- position: relative;
- height: 22px;
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .fl-color-picker-ui .iris-picker .iris-strip .ui-slider-handle {
- width: 6px;
- position: absolute;
- right: 0;
- top: -2px;
- bottom: -2px;
- margin: 0;
- border-radius: 3px;
- background: #fff;
- box-shadow: 0 0px 2px rgba(0,0,0,.5);
- z-index: 5;
- cursor: ew-resize;
- }
- .fl-color-picker-ui .iris-picker .iris-strip .ui-slider-handle:focus {
- outline: 2px solid #00a0d2;
- }
- .fl-color-picker-ui .iris-picker .iris-slider-offset {
- position: absolute;
- top: 0;
- left: 6px;
- right: 0;
- bottom: 0;
- width: auto;
- height: auto;
- background: transparent;
- border: none;
- border-radius: 0;
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .fl-color-picker-ui .iris-picker .iris-square-handle {
- background: transparent;
- border: 5px solid #999;
- border-radius: 50%;
- border-color: rgba(128,128,128,.5);
- box-shadow:none;
- width: 12px;
- height: 12px;
- position: absolute;
- left: -10px;
- top: -10px;
- cursor: move;
- opacity: 1;
- z-index: 10;
- }
- .fl-color-picker-ui .iris-picker .ui-state-focus .iris-square-handle {
- opacity: .8;
- }
- .fl-color-picker-ui .iris-picker .iris-square-handle:hover {
- border-color: #999;
- }
- .fl-color-picker-ui .iris-picker .iris-square-value:focus .iris-square-handle {
- box-shadow: 0 0 2px rgba(0,0,0,.75);
- opacity: .8;
- }
- .fl-color-picker-ui .iris-picker .iris-square-handle:hover::after {
- border-color: #fff;
- }
- .fl-color-picker-ui .iris-picker .iris-square-handle::after {
- position: absolute;
- bottom: -4px;
- right: -4px;
- left: -4px;
- top: -4px;
- border: 3px solid #f9f9f9;
- border-color: rgba(255,255,255,.8);
- border-radius: 50%;
- content: " ";
- }
- .fl-color-picker-ui .iris-picker .iris-square-value {
- width: 8px;
- height: 8px;
- position: absolute;
- }
- .iris-ie-lt9 .iris-square-value, .iris-mozilla .iris-square-value {
- width: 1px;
- height: 1px;
- }
- /* Beaver Picker
- ---------------------------------------------------- */
- .fl-color-picker-wrapper {
- position: relative;
- width: 48px;
- height: 32px;
- }
- .fl-color-picker {
- box-shadow: 0 2px 4px 0 rgba(0,0,0,0.12);
- background:white;
- border-radius: 4px;
- width: 120px;
- height:36px;
- display: flex;
- flex-direction: row;
- }
- .fl-color-picker-color {
- flex: 1 1 100%;
- box-sizing: border-box !important;
- position: relative;
- border-radius: 4px;
- background-color: transparent;
- cursor: pointer;
- border: 2px solid transparent;
- border-right: 2px solid rgba(0,0,0,0.1);
- padding:0;
- justify-content: center;
- display: flex;
- }
- .fl-color-picker-color:hover,
- .fl-color-picker-clear:hover {
- background:transparent;
- border: 2px solid transparent;
- }
- .fl-color-picker-color:focus,
- .fl-color-picker-color.fl-color-picker-empty:focus,
- .fl-color-picker-clear:focus {
- outline:none;
- top:0;
- border: 2px solid #00a0d2;
- background: transparent;
- }
- .fl-color-picker.fl-color-picker-has-reset .fl-color-picker-color:not(.fl-color-picker-empty) {
- border-top-right-radius: 0px;
- border-bottom-right-radius: 0px;
- }
- .fl-color-picker-icon {
- display:none;
- margin:auto;
- }
- .fl-color-picker-color.fl-color-picker-empty {
- border-color: transparent;
- }
- .fl-color-picker-color.fl-color-picker-empty svg.fl-color-picker-icon {
- display:block;
- }
- .fl-color-picker-color.fl-color-picker-empty svg.fl-color-picker-icon path {
- fill:inherit;
- }
- .fl-color-picker-clear {
- box-sizing: border-box;
- position: relative;
- display: flex;
- flex: 0 0 36px;
- justify-content: center;
- padding: 0;
- border: 2px solid transparent;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- background-color: #ffffff;
- border-color:transparent;
- cursor: pointer;
- }
- .fl-color-picker-color.fl-color-picker-empty + .fl-color-picker-clear {
- display: none;
- }
- .fl-color-picker-ui {
- display: inline-block;
- font-family: Helvetica, Verdana, sans-serif;
- z-index: 999999;
- position: fixed;
- overflow: hidden;
- padding-bottom: 45px;
- border: 1px solid rgba(0,0,0,0.1);
- color: #999;
- background-color: #FAFAFA;
- border-radius: 3px;
- -webkit-box-shadow: 0 9px 20px rgba(0, 0, 0, 0.17);
- box-shadow: 0 9px 20px rgba(0, 0, 0, 0.17);
- -webkit-transition: opacity .2s, visibility .2s;
- -moz-transition: opacity .2s, visibility .2s;
- -ms-transition: opacity .2s, visibility .2s;
- -o-transition: opacity .2s, visibility .2s;
- transition: opacity .2s, visibility .2s;
- visibility: hidden;
- opacity: 0;
- -webkit-transform: translate3d(0,0,0);
- }
- .fl-color-picker-ui.fl-color-picker-active{
- visibility: visible;
- opacity: 1;
- }
- .fl-color-picker-ui .fl-color-picker-input,
- .fl-color-picker-ui .fl-color-picker-input:focus{
- width: 100%;
- height: 30px;
- border: none !important;
- font-size: 14px !important;
- padding: 0 8px;
- vertical-align: middle;
- color: #656c6e;
- background-color: #fff;
- border-radius: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .fl-color-picker-ui .iris-square-value {
- -webkit-transition: none;
- -moz-transition: none;
- -ms-transition: none;
- -o-transition: none;
- transition: none;
- }
- .fl-color-picker-preset-add{
- position: absolute;
- top: 8px;
- right: 8px;
- width: 14px;
- height: 14px;
- background-color: #656c6e;
- border-radius: 50%;
- cursor: pointer;
- -webkit-transition: all .2s;
- -moz-transition: all .2s;
- -ms-transition: all .2s;
- -o-transition: all .2s;
- transition: all .2s;
- }
- .fl-color-picker-preset-add:hover{
- background-color: #333;
- }
- .fl-color-picker-preset-add:before,
- .fl-color-picker-preset-add:after{
- content: '';
- display: block;
- position: relative;
- background-color: #fff;
- }
- .fl-color-picker-preset-add:before{
- top: 6px;
- left: 3px;
- width: 8px;
- height: 2px;
- }
- .fl-color-picker-preset-add:after{
- left: 6px;
- top: 1px;
- width: 2px;
- height: 8px;
- }
- .fl-color-picker-presets{
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- z-index: 15;
- overflow: auto;
- border-top: 1px solid rgba(0,0,0,0.1);
- background-color: #FAFAFA;
- }
- .fl-color-picker-presets-toggle{
- position: relative;
- overflow: hidden;
- width: 100%;
- height: 35px;
- text-align: center;
- line-height: 35px;
- font-size: 12px;
- font-weight: bold;
- cursor: pointer;
- -webkit-transition: all .1s;
- -moz-transition: all .1s;
- -ms-transition: all .1s;
- -o-transition: all .1s;
- transition: all .1s;
- }
- .fl-color-picker-presets-toggle:hover{
- background-color: #EDEDED;
- }
- .fl-color-picker-presets-open-label,
- .fl-color-picker-presets-close-label{
- position: absolute;
- top: 50%;
- left: 50%;
- visibility: hidden;
- color: #999;
- -webkit-transition: all .5s;
- -moz-transition: all .5s;
- -ms-transition: all .5s;
- -o-transition: all .5s;
- transition: all .5s;
- -webkit-transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- -o-transform: translate(-50%,-50%);
- transform: translate(-50%,-50%);
- opacity: 0;
- width: 100%;
- }
- .fl-color-picker-presets-open-label.fl-color-picker-active,
- .fl-color-picker-presets-close-label.fl-color-picker-active{
- color: #656c6e;
- visibility: visible;
- opacity: 1;
- }
- .fl-color-picker-presets-list{
- width: 100%;
- list-style: none;
- margin: 0;
- padding: 0;
- overflow: auto;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset,
- .fl-color-picker-presets-list .fl-color-picker-no-preset{
- position: relative;
- padding: 5px;
- font-size: 12px;
- border-top: 1px solid rgba(0,0,0,0.1);
- -webkit-transition: all .1s;
- -moz-transition: all .1s;
- -ms-transition: all .1s;
- -o-transition: all .1s;
- transition: all .1s;
- }
- .fl-color-picker-presets-list .fl-color-picker-no-preset{
- padding: 18px 5px;
- text-align:center;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset:hover{
- background-color: #EDEDED;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset-color{
- display: inline-block;
- width: 40px;
- height: 20px;
- margin-right: 3px;
- vertical-align: middle;
- border: 1px solid rgba(0,0,0,0.1);
- border-radius: 2px;
- cursor: pointer;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset-label {
- vertical-align: middle;
- color: #333;
- cursor: pointer;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset-remove {
- position: absolute;
- top: 50%;
- cursor: pointer;
- -webkit-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .fl-color-picker-clear .fl-color-picker-icon-remove {
- right: auto;
- top: auto;
- margin:auto;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset-remove {
- right: 5px;
- }
- .fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:before,
- .fl-color-picker-presets-list .fl-color-picker-preset-remove:hover:after {
- background-color: #333;
- }
- .fl-color-picker-added{
- position: absolute;
- width: 100%;
- top: 0;
- left: 0;
- right: 0;
- bottom: 35px;
- z-index: 10;
- color: #fff;
- text-align: center;
- background-color: rgba(0,0,0,.8);
- }
- .fl-color-picker-added-text{
- position: absolute;
- top: 50%;
- left: 50%;
- width: 80%;
- font-size: 14px;
- color: #fff !important;
- -webkit-transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- -o-transform: translate(-50%,-50%);
- transform: translate(-50%,-50%);
- }
- /* Color Picker Icons
- ---------------------------------------------------- */
- .fl-color-picker-icon-check{
- position: relative;
- width: 50px;
- height: 50px;
- margin: 5px auto;
- }
- .fl-color-picker-icon-check:before{
- content: '';
- display: block;
- position: relative;
- width: 15px;
- height: 30px;
- margin-left: 14px;
- border: 7px solid #fff;
- border-left: none;
- border-top: none;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .fl-color-picker-icon-arrow-up,
- .fl-color-picker-icon-arrow-down{
- display: inline-block;
- position: relative;
- width: 10px;
- height: 10px;
- margin-left: 5px;
- }
- .fl-color-picker-icon-arrow-up:before,
- .fl-color-picker-icon-arrow-down:before{
- content: '';
- display: block;
- position: relative;
- width: 6px;
- height: 6px;
- border: 2px solid #999;
- border-left: none;
- border-top: none;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- .fl-color-picker-icon-arrow-up{
- top: 2px;
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .fl-color-picker-icon-remove{
- width: 15px;
- height: 15px;
- }
- .fl-color-picker-icon-remove:before,
- .fl-color-picker-icon-remove:after{
- content: '';
- display: block;
- position: relative;
- background-color: #6f7881;
- }
- .fl-color-picker-icon-remove:before{
- left: 6px;
- width: 2px;
- height: 10px;
- margin-top: 3px;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- }
- .fl-color-picker-icon-remove:after{
- left: 6px;
- width: 2px;
- height: 10px;
- margin-top: -10px;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- /* Color Picker Alpha / Opacity
- ---------------------------------------------------- */
- .fl-alpha-wrap {
- position: absolute;
- width: 35px;
- height: 215px;
- padding: 0 5px;
- right: 4px;
- border-top: none;
- }
- .fl-alpha-slider {
- height: 190px;
- position: absolute;
- top: 12px;
- width: 28px;
- }
- .fl-alpha-slider .ui-slider-handle {
- background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
- border-color: #aaa;
- border-radius: 4px;
- border-style: solid;
- border-width: 4px;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
- cursor: ns-resize;
- height: 12px;
- left: 0;
- opacity: 0.9;
- position: absolute;
- right: 0;
- width: 30px;
- z-index: 14;
- }
- .fl-alpha-slider .ui-slider-handle:before {
- content: " ";
- position: absolute;
- left: -2px;
- right: -2px;
- top: -3px;
- bottom: -3px;
- border: 2px solid #fff;
- border-radius: 3px;
- }
- .fl-alpha-slider-offset {
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAASCAYAAAAe/ZHXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NkNEQUQ0ODM4RUE0MTFFNEExOEJFN0E5M0VFOTg0QUQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NkNEQUQ0ODQ4RUE0MTFFNEExOEJFN0E5M0VFOTg0QUQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2Q0RBRDQ4MThFQTQxMUU0QTE4QkU3QTkzRUU5ODRBRCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2Q0RBRDQ4MjhFQTQxMUU0QTE4QkU3QTkzRUU5ODRBRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/r/N8AAAWYSURBVHjarFvvR3VBEN45JZGIPkREHyIiIhJJf3qUSERE9CGiDxERkcg9z9u92uucvTszz5z7xnHPj93Z2d359cxscn5+jpTS+EoiMr3/+51cZ2dn4+e29i2/u7y8RKf/pO3vc+o+n5ycoNK31+f6+jrfZ37yuG2mf3R01H3fa5N/b29vU6dP5qft0G4PDg5MGuPr/v4+jz1t27mfvN/b21P75+fHx8eZfiV/Ozs7rUJnSu/5+RlFv+m6ZJpbW1s1PnrvXl9fZ/qX89zY2LB4mfy+v7/nsdV1XltbK/dr5vnz87OcV5bJabuVlRVLBifjfX9/l/xkGtM+S0tLNXnu0szfU/P3IMn/k0678h6ddqjQFGccVL6hoCsVfsq+NZ5QtCv5rfFS41sq37W+UPhMyhxEWTetvce3NR8oewqD39qalXuGAK/WPltjajIC4x2c9Ye1f43SGcqGwRBeTZjhMNntL4pCWZMQYhE05RVl02EovRgC4RkCbUNSQAGhGB/GsKG4h6FQoigDa2i8fRBy3uLMXYIG3Vr3aZvRaCRdBYlYIMZywhBGCVhgzzOlgRuUSOvC0GMEWxOM/+EtQFh1OIIXtfwg1tRaayGjg5px0jyZKEaTle3e+AsLCygVRAh3FlEgKbReE3oYGj9EgIR00QiEgKw3ZBQbRGjBeAMtDETQmHiKDsezJNLgCTFGItZXlAgCSiQggblP+9c8SDI0lXWlFv5g3K63KZ51FOcZzthQ3LomoNHwJmKIQISI3vqzSpwIQ8liSjGMFQjDpoVgaQ6cWgvLhOC7qiAwiHrWbEg4JMSmeUrBuHoYwioOQNXmhmAcrs096s1gJCGi3hSEVU8DQxYElYHhKwUUGAa+NqOBMsSSAQJuhQhCAH4vxozExsxiihPuaIrjCVYKWlYEsjSM52G8Kxxryngl5j0j+EyGTIiED4s1Itm0ZGWxMFCLJaBAcEI6OBkmFgNBoc8Cait2ZnENE/6wQN8LJSJeSMNAjKVm+LUMAIt3PR5AQgIGp1Z5zxhE8PtXUYReYeXi4mKmOPNXBMzt2tPT07LIUtJqr66uusXEbkFnWiQ6Pj72ikrtzc1NKopuvbbj58PDwxqNHp27u7tuYWumUDV+v7+/Xyu6pc59+/DwUCsC9ujt7u6qRbt8//T01C3elbyN70fb29uZ/1FSincvLy/lPGb42tzc9IqJeHt7q61Pr2C6vr7u7tfHx8fMPhV0sLq6WhZtU0n36+uru8elPE7aLi8v1wqJPXn++fmZKYgX8ozFxcXJb0NaQTHClZT8+gBjsYdaFc+zWcUkGTCWENY66ta92oSVzo3WI6IZKGtukeyfBLFKBNAj6bUOBgaoe9wE4n04IBNkLMoC7+Skj630ZlTJMYdyMsU2T8AwpzALkVFilZgJcT2l9PCWDDSAMBSjVlJgZNk0lE1AIby0qCiCnBQNj6aBGQslZIZJ5hB6D/AzQHto5Z9Nk8tARdN4q2ExBnsyIJ311EymShyjan2rKk0zh1Ay1oQVWAZQRnkUA8RFw7TahjBnmNgMVMQrsCGZJezRtGlU0cUZ1zuaxGZPpbhApM+ZpFQqQ6xadoMtBrEKpBVo4GRXvNSxpaRixKiR+TChCYhsDwZkfFj8IkErjAHejcUI0XQrgwehhNSMHAz21E0wZ23FcCAmj8Sd/PXy2xLYLAuwRw4IMsqjFaWYOpMEhDySAPFCWyFkgAHrEcA+BNeJ4UE8HCzJPpCrerUmQIx1pWJkjqxJD8EikUo2c5aI8ZYgsAkM4WQtnHd0ns0ORgVTBghy5ISy928SGsbTMqYg523RUY8oNYG4FIYiyRyZCnFCJC87IoRAIMVOqQ7BKexxCS2hYVl9JhvlpYjnAe4MhmRPMWhhvLfXINaI9WKM0Zu0+SfAAFLE1EgfVSv7AAAAAElFTkSuQmCC);
- background-position: center;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
- -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
- -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
- width: 200px;
- height: 22px;
- -webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- -o-transform: rotate(-90deg);
- transform: rotate(-90deg);
- bottom: 48%;
- left: -80px;
- position: absolute;
- }
- .fl-alpha-text {
- width: 30px;
- font-size: 12px;
- text-align: center;
- color: #999;
- position: absolute;
- bottom: -5px;
- }
|