Path: blob/master/web-gui/buildyourownbotnet/assets/js/jcrop/jquery.Jcrop.css
1293 views
/* jquery.Jcrop.css v0.9.12 - MIT License */1/*2The outer-most container in a typical Jcrop instance3If you are having difficulty with formatting related to styles4on a parent element, place any fixes here or in a like selector56You can also style this element if you want to add a border, etc7A better method for styling can be seen below with .jcrop-light8(Add a class to the holder and style elements for that extended class)9*/10.jcrop-holder {11direction: ltr;12text-align: left;13/* IE10 touch compatibility */14-ms-touch-action: none;15}16/* Selection Border */17.jcrop-vline,18.jcrop-hline {19background: #ffffff url("Jcrop.gif");20font-size: 0;21position: absolute;22}23.jcrop-vline {24height: 100%;25width: 1px !important;26}27.jcrop-vline.right {28right: 0;29}30.jcrop-hline {31height: 1px !important;32width: 100%;33}34.jcrop-hline.bottom {35bottom: 0;36}37/* Invisible click targets */38.jcrop-tracker {39height: 100%;40width: 100%;41/* "turn off" link highlight */42-webkit-tap-highlight-color: transparent;43/* disable callout, image save panel */44-webkit-touch-callout: none;45/* disable cut copy paste */46-webkit-user-select: none;47}48/* Selection Handles */49.jcrop-handle {50background-color: #333333;51border: 1px #eeeeee solid;52width: 7px;53height: 7px;54font-size: 1px;55}56.jcrop-handle.ord-n {57left: 50%;58margin-left: -4px;59margin-top: -4px;60top: 0;61}62.jcrop-handle.ord-s {63bottom: 0;64left: 50%;65margin-bottom: -4px;66margin-left: -4px;67}68.jcrop-handle.ord-e {69margin-right: -4px;70margin-top: -4px;71right: 0;72top: 50%;73}74.jcrop-handle.ord-w {75left: 0;76margin-left: -4px;77margin-top: -4px;78top: 50%;79}80.jcrop-handle.ord-nw {81left: 0;82margin-left: -4px;83margin-top: -4px;84top: 0;85}86.jcrop-handle.ord-ne {87margin-right: -4px;88margin-top: -4px;89right: 0;90top: 0;91}92.jcrop-handle.ord-se {93bottom: 0;94margin-bottom: -4px;95margin-right: -4px;96right: 0;97}98.jcrop-handle.ord-sw {99bottom: 0;100left: 0;101margin-bottom: -4px;102margin-left: -4px;103}104/* Dragbars */105.jcrop-dragbar.ord-n,106.jcrop-dragbar.ord-s {107height: 7px;108width: 100%;109}110.jcrop-dragbar.ord-e,111.jcrop-dragbar.ord-w {112height: 100%;113width: 7px;114}115.jcrop-dragbar.ord-n {116margin-top: -4px;117}118.jcrop-dragbar.ord-s {119bottom: 0;120margin-bottom: -4px;121}122.jcrop-dragbar.ord-e {123margin-right: -4px;124right: 0;125}126.jcrop-dragbar.ord-w {127margin-left: -4px;128}129/* The "jcrop-light" class/extension */130.jcrop-light .jcrop-vline,131.jcrop-light .jcrop-hline {132background: #ffffff;133filter: alpha(opacity=70) !important;134opacity: .70!important;135}136.jcrop-light .jcrop-handle {137-moz-border-radius: 3px;138-webkit-border-radius: 3px;139background-color: #000000;140border-color: #ffffff;141border-radius: 3px;142}143/* The "jcrop-dark" class/extension */144.jcrop-dark .jcrop-vline,145.jcrop-dark .jcrop-hline {146background: #000000;147filter: alpha(opacity=70) !important;148opacity: 0.7 !important;149}150.jcrop-dark .jcrop-handle {151-moz-border-radius: 3px;152-webkit-border-radius: 3px;153background-color: #ffffff;154border-color: #000000;155border-radius: 3px;156}157/* Simple macro to turn off the antlines */158.solid-line .jcrop-vline,159.solid-line .jcrop-hline {160background: #ffffff;161}162/* Fix for twitter bootstrap et al. */163.jcrop-holder img,164img.jcrop-preview {165max-width: none;166}167168169