123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- /**
- * ___ ___ _____ ______ __ __ _____ ______ __ __
- * | \/ |/ _ \ / __ \| \ | |_ _| ___| \ / |
- * | | / \ | | \__| \| | | | | |___ \ \/ /
- * | |\/| | |_| | | ___ | | | | ___| \ /
- * | | | | _ | \_/ | |\ |_| |_| | | |
- * |__| |__|__| |__|\____/|_|__| \__|_____|__| |__|
- *
- * magnify.css v0.1.0
- *
- * Copyright (c) 2017 nzbin
- *
- */
- .magnify-modal {
- position: absolute;
- width: 320px;
- height: 320px;
- background-color: #111;
- background-color: rgba(0, 0, 0, 0.85);
- -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
- box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
- z-index: 1090;
- }
- .magnify-header {
- position: relative;
- height: 40px;
- color: #fff;
- z-index: 2;
- }
- .magnify-header .magnify-toolbar {
- position: absolute;
- top: 0;
- right: 0;
- width: 80px;
- height: 40px;
- }
- .magnify-title {
- margin-right: 80px;
- padding: 13px 10px;
- font-size: 14px;
- line-height: 1;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- cursor: default;
- }
- .magnify-stage {
- position: absolute;
- top: 40px;
- left: 10px;
- bottom: 40px;
- right: 10px;
- border: 1px solid #ccc;
- overflow: hidden;
- z-index: 1;
- }
- .magnify-stage img {
- display: inline-block;
- position: relative;
- }
- .magnify-footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 40px;
- text-align: center;
- color: #fff;
- z-index: 2;
- }
- .magnify-footer .magnify-toolbar {
- display: inline-block;
- height: 40px;
- }
- .magnify-toolbar {
- font-size: 0;
- }
- .magnify-button {
- display: inline-block;
- width: 40px;
- height: 40px;
- margin: 0;
- padding: 10px;
- border-width: 0;
- border-radius: 0;
- text-align: center;
- font-size: 14px;
- background: none;
- color: #ccc;
- cursor: pointer;
- outline: none;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .magnify-button:hover {
- color: #fff;
- }
- .magnify-button.magnify-button-close:hover {
- background-color: #ff4545;
- }
- .magnify-button.magnify-button-maximize:hover {
- background-color: #525252;
- }
- .is-grab {
- cursor: move;
- cursor: -webkit-grab;
- cursor: grab;
- }
- .is-grabbing {
- cursor: move;
- cursor: -webkit-grabbing;
- cursor: grabbing;
- }
- .resizable-handle-e {
- position: absolute;
- top: 0;
- bottom: 0;
- right: -5px;
- left: auto;
- width: 10px;
- z-index: 10;
- cursor: e-resize;
- }
- .resizable-handle-s {
- position: absolute;
- top: auto;
- bottom: -5px;
- right: 0;
- left: 0;
- height: 10px;
- z-index: 10;
- cursor: s-resize;
- }
- .resizable-handle-w {
- position: absolute;
- top: 0;
- bottom: 0;
- left: -5px;
- right: auto;
- width: 10px;
- z-index: 10;
- cursor: w-resize;
- }
- .resizable-handle-n {
- position: absolute;
- top: -5px;
- bottom: auto;
- right: 0;
- left: 0;
- height: 10px;
- z-index: 10;
- cursor: n-resize;
- }
- .resizable-handle-se {
- position: absolute;
- width: 10px;
- height: 10px;
- bottom: -5px;
- right: -5px;
- top: auto;
- left: auto;
- z-index: 11;
- cursor: se-resize;
- }
- .resizable-handle-sw {
- position: absolute;
- width: 10px;
- height: 10px;
- bottom: -5px;
- right: auto;
- top: auto;
- left: -5px;
- z-index: 11;
- cursor: sw-resize;
- }
- .resizable-handle-nw {
- position: absolute;
- width: 10px;
- height: 10px;
- bottom: auto;
- right: auto;
- top: -5px;
- left: -5px;
- z-index: 11;
- cursor: nw-resize;
- }
- .resizable-handle-ne {
- position: absolute;
- width: 10px;
- height: 10px;
- bottom: auto;
- right: -5px;
- top: -5px;
- left: auto;
- z-index: 11;
- cursor: ne-resize;
- }
- :-webkit-full-screen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-webkit-full-screen .magnify-header,
- :-webkit-full-screen .magnify-footer,
- :-webkit-full-screen .resizable-handle {
- display: none;
- }
- :-webkit-full-screen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :-moz-full-screen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-moz-full-screen .magnify-header,
- :-moz-full-screen .magnify-footer,
- :-moz-full-screen .resizable-handle {
- display: none;
- }
- :-moz-full-screen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :-ms-fullscreen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-ms-fullscreen .magnify-header,
- :-ms-fullscreen .magnify-footer,
- :-ms-fullscreen .resizable-handle {
- display: none;
- }
- :-ms-fullscreen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :full-screen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :full-screen .magnify-header,
- :full-screen .magnify-footer,
- :full-screen .resizable-handle {
- display: none;
- }
- :full-screen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :-webkit-full-screen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-moz-full-screen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-ms-fullscreen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :fullscreen {
- width: 100% !important;
- height: 100% !important;
- top: 0 !important;
- left: 0 !important;
- }
- :-webkit-full-screen .magnify-header,
- :-webkit-full-screen .magnify-footer,
- :-webkit-full-screen .resizable-handle {
- display: none;
- }
- :-moz-full-screen .magnify-header,
- :-moz-full-screen .magnify-footer,
- :-moz-full-screen .resizable-handle {
- display: none;
- }
- :-ms-fullscreen .magnify-header,
- :-ms-fullscreen .magnify-footer,
- :-ms-fullscreen .resizable-handle {
- display: none;
- }
- :fullscreen .magnify-header,
- :fullscreen .magnify-footer,
- :fullscreen .resizable-handle {
- display: none;
- }
- :-webkit-full-screen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :-moz-full-screen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :-ms-fullscreen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- :fullscreen .magnify-stage {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-width: 0;
- }
- /*# sourceMappingURL=jquery.magnify.css.map */
|