diff --git a/400-SOURCECODE/AIAHTML5.Web/Web.config b/400-SOURCECODE/AIAHTML5.Web/Web.config index d92fcca..dff2b3c 100644 --- a/400-SOURCECODE/AIAHTML5.Web/Web.config +++ b/400-SOURCECODE/AIAHTML5.Web/Web.config @@ -20,8 +20,9 @@ - - + . + + @@ -42,6 +43,7 @@ + diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/AIController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/AIController.js index 37b2cf8..67944b0 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/AIController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/AIController.js @@ -222,6 +222,16 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout } $scope.ApplySearch = function (SearchText) { + var currentSearchtext = $rootScope.getLocalStorageValue("AIImageId"); + localStorage.setItem("AIImageId", ''); + if (currentSearchtext == "undefined" || (currentSearchtext == null || currentSearchtext == "")) + { + if (SearchText == "undefined" || (SearchText == null || SearchText == "")) + { + alert("Please enter the text !") + return false; + } + } $rootScope.isLoading = true; $('#spinner').css('visibility', 'visible'); @@ -279,7 +289,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout if (selectimg === true) { $scope.imagePath = "~/../content/images/ai/thumbnails/" + value._ThumbnailImage; - var $el = $('
' + var $el = $('
' + '
' + '' + '

' + value._Title + '

').appendTo('#grid-view'); @@ -328,9 +338,10 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout $scope.ApplySearchByAlphabet = function (SearchText) { - $rootScope.isLoading = true; + $('ul li a').removeAttr("style"); $('#spinner').css('visibility', 'visible'); + $('#' + SearchText).css({"color": "white", "background-color" : "#1B92D0"}); $scope.filterstring = true; @@ -341,6 +352,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout + if (typeof (SearchText) !== "undefined" && (SearchText !== null && SearchText !== "")) { localStorage.setItem("AIImageId", SearchText); @@ -386,7 +398,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout if (selectimg === true) { $scope.imagePath = "~/../content/images/ai/thumbnails/" + value._ThumbnailImage; - var $el = $('
' + var $el = $('
' + '
' + '' + '

' + value._Title + '

').appendTo('#grid-view'); @@ -479,7 +491,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout var counter = 1; var tittle = $rootScope.getLocalStorageValue("currentImageTitleFromJson"); - localStorage.setItem("currentImageTitle", tittle); + localStorage.setItem("currentViewTitle", tittle); var promise = DataService.getJson('~/../content/data/json/ai/ai_dat_contentlist.json') promise.then( @@ -509,7 +521,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout //ajax: { // url: 'app/views/ci/ci-view-detail.html' //}, - title: $rootScope.getLocalStorageValue("currentImageTitle"), + title: $rootScope.getLocalStorageValue("currentViewTitle"), position: { top: 70, left: 20, @@ -535,8 +547,8 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout }); - $("#aiImagePanel .img-thumbnail").css("height", $("#aiImagePanel .jsPanel-content").height()); - var jspContentHeight = $('.jsPanel-content').height(); + //$("#aiImagePanel .img-thumbnail").css("height", $("#aiImagePanel .jsPanel-content").height()); + var jspContentHeight = $('.jsPanel-content').css('overflow','auto !important').height(); } diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js index 3aa10de..cd703b3 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js @@ -1324,6 +1324,9 @@ function ($rootScope, $scope, Modules, $log, $location, $timeout, DataService, A if ($('#ciImagePanel').length > 0) $('#ciImagePanel').remove(); + if ($('#aiImagePanel').length > 0) + $('#aiImagePanel').remove(); + if ($('#caVideoPanel').length > 0) $('#caVideoPanel').remove(); @@ -5507,6 +5510,7 @@ function ($rootScope, $scope, Modules, $log, $location, $timeout, DataService, A function OpenJSPanel() { $("#daImagePanel").css({ "pointer-events": "none", "opacity": ".5" }); $("#ciImagePanel").css({ "pointer-events": "none", "opacity": ".5" }); + $("#aiImagePanel").css({ "pointer-events": "none", "opacity": ".5" }); $("#ImagePanel").css({ "pointer-events": "none", "opacity": ".5" }); $.jsPanel({ id: 'jsPanel-1', @@ -5647,6 +5651,7 @@ function ($rootScope, $scope, Modules, $log, $location, $timeout, DataService, A $(document).on('click', '#jsPanel-1 .jsglyph-remove', function () { $("#daImagePanel").css({ "pointer-events": "auto", "opacity": "1" }); $("#ciImagePanel").css({ "pointer-events": "auto", "opacity": "1" }); + $("#aiImagePanel").css({ "pointer-events": "auto", "opacity": "1" }); $("#ImagePanel").css({ "pointer-events": "auto", "opacity": "1" }); $("#annotationButton").parent().removeClass("disableMenuannotation"); $("#annotationToolBarOptions").removeClass("disableMenuoption"); diff --git a/400-SOURCECODE/AIAHTML5.Web/app/views/ai/adam-images-detail.html b/400-SOURCECODE/AIAHTML5.Web/app/views/ai/adam-images-detail.html index 3615bb6..39a5414 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/views/ai/adam-images-detail.html +++ b/400-SOURCECODE/AIAHTML5.Web/app/views/ai/adam-images-detail.html @@ -1,6 +1,4 @@ 
-
- - +
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/views/ai/ai-view.html b/400-SOURCECODE/AIAHTML5.Web/app/views/ai/ai-view.html index c252b82..4f115f2 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/views/ai/ai-view.html +++ b/400-SOURCECODE/AIAHTML5.Web/app/views/ai/ai-view.html @@ -16,32 +16,32 @@ diff --git a/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.css b/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.css index b6edb82..2d1b7e3 100644 --- a/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.css +++ b/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.css @@ -1,657 +1,657 @@ -/* jquery.jspanel.css version 2.5.3 - 2015-05-16 22:21 */ -@font-face { - font-family: 'jsglyphregular'; - src: url('fonts/jsglyph.eot'); - src: url('fonts/jsglyph.eot?#iefix') format('embedded-opentype'), - url('fonts/jsglyph.woff2') format('woff2'), - url('fonts/jsglyph.woff') format('woff'), - url('fonts/jsglyph.ttf') format('truetype'), - url('fonts/jsglyph.svg#jsglyphregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.jsglyph{ font-family: "jsglyphregular"; } - -.jsglyph-minimize:before{ content: "\e001"; } /* unicode  */ -.jsglyph-maximize:before{ content: "\e002"; } -.jsglyph-chevron-up:before{ content: "\e003"; } -.jsglyph-chevron-down:before{ content: "\e004"; } -.jsglyph-normalize:before{ content: "\e005"; } -.jsglyph-tick:before{ content: "\e006"; } -.jsglyph-remove:before{ content: "\e007"; } -.jsglyph-chevron-right:before{ content: "\e008"; } -.jsglyph-chevron-left:before{ content: "\e009"; } -.jsglyph-plus:before{ content: "\e00a"; } -.jsglyph-minus:before{ content: "\e00b"; } -.jsglyph-trashcan:before{ content: "\e00c"; } -.jsglyph-square-info:before{ content: "\e00d"; } -.jsglyph-square-exclamationmark:before{ content: "\e00e"; } -.jsglyph-delete:before{ content: "\e00f"; } -.jsglyph-mail:before{ content: "\e010"; } -.jsglyph-envelope:before{ content: "\e011"; } -.jsglyph-play:before{ content: "\e012"; } -.jsglyph-forward:before{ content: "\e013"; } -.jsglyph-backward:before{ content: "\e014"; } -.jsglyph-step-forward:before{ content: "\e015"; } -.jsglyph-step-backward:before{ content: "\e016"; } -.jsglyph-fast-forward:before{ content: "\e017"; } -.jsglyph-fast-backward:before{ content: "\e018"; } -.jsglyph-eject:before{ content: "\e019"; } -.jsglyph-stop:before{ content: "\e01a"; } -.jsglyph-pause:before{ content: "\e01b"; } -.jsglyph-arrow-right:before{ content: "\e01c"; } -.jsglyph-arrow-left:before{ content: "\e01d"; } -.jsglyph-arrow-up:before{ content: "\e01e"; } -.jsglyph-arrow-down:before{ content: "\e01f"; } -.jsglyph-star-halffull:before{ content: "\e020"; } -.jsglyph-star:before{ content: "\e021"; } -.jsglyph-star-empty:before{ content: "\e022"; } -.jsglyph-arrow-right-hollow:before{ content: "\e023"; } -.jsglyph-arrow-left-hollow:before{ content: "\e024"; } -.jsglyph-arrow-up-hollow:before{ content: "\e025"; } -.jsglyph-arrow-down-hollow:before{ content: "\e026"; } -.jsglyph-square-questionmark:before{ content: "\e027"; } -.jsglyph-circle-info:before{ content: "\e028"; } -.jsglyph-circle-exclamationmark:before{ content: "\e029"; } -.jsglyph-circle-questionmark:before{ content: "\e02a"; } -.jsglyph-circle2-info:before{ content: "\e02b"; } -.jsglyph-circle2-exclamationmark:before{ content: "\e02c"; } -.jsglyph-circle2-questionmark:before{ content: "\e02d"; } -.jsglyph-resize-handle:before{ content: "\e02e"; } -.jsglyph-resize-handle-2:before{ content: "\e02f"; } -.jsglyph-pencil:before{ content: "\e030"; } -.jsglyph-refresh:before{ content: "\e031"; } -.jsglyph-volume-off:before{ content: "\e032"; } -.jsglyph-volume-up:before{ content: "\e033"; } -.jsglyph-volume-down:before{ content: "\e034"; } -.jsglyph-link:before{ content: "\e035"; } -.jsglyph-eye-open:before{ content: "\e036"; } -.jsglyph-eye-slash:before{ content: "\e037"; } -.jsglyph-power-on:before{ content: "\e038"; } -.jsglyph-cog:before{ content: "\e039"; } -.jsglyph-cog2:before{ content: "\e03a"; } -.jsglyph-torso:before{ content: "\e03b"; } -.jsglyph-people:before{ content: "\e03c"; } -.jsglyph-torso-female:before{ content: "\e03d"; } -.jsglyph-people-female:before{ content: "\e03e"; } -.jsglyph-torso-male-female:before{ content: "\e03f"; } -.jsglyph-torso-female-male:before{ content: "\e040"; } -.jsglyph-torso-hollow:before{ content: "\e041"; } -.jsglyph-cog3:before{ content: "\e042"; } -.jsglyph-tools:before{ content: "\e043"; } -.jsglyph-home:before{ content: "\e044"; } -.jsglyph-login:before{ content: "\e045"; } -.jsglyph-logout:before{ content: "\e046"; } -.jsglyph-download:before{ content: "\e047"; } -.jsglyph-upload:before{ content: "\e048"; } -.jsglyph-reload:before{ content: "\e049"; } -.jsglyph-lock:before{ content: "\e04a"; } -.jsglyph-unlock:before{ content: "\e04b"; } -.jsglyph-save:before{ content: "\e04c"; } -.jsglyph-wrench:before{ content: "\e04d"; } -.jsglyph-search:before{ content: "\e04e"; } -.jsglyph-zoom-in:before{ content: "\e04f"; } -.jsglyph-zoom-out:before{ content: "\e050"; } -.jsglyph-bars:before{ content: "\e051"; } -.jsglyph-marker:before{ content: "\e052"; } -.jsglyph-resize-handle-left:before{ content: "\e053"; } -.jsglyph-resize-handle-2-left:before{ content: "\e054"; } -.jsglyph-edit:before{ content: "\e055"; } - - -.jsPanel, .jsPanel-hdr-r, .jsPanel-hdr-l, .jsPanel-hdr-r span img, .jsPanel-content{ - margin: 0; padding: 0; border: 0; font-size: 100%; line-height: 1.5em; vertical-align: baseline; -} -.jsPanel{ - box-sizing: border-box; - /*overflow: hidden;*/ - position: absolute; - border-radius: 0px; - /*z-index: 100;*/ -} -.jsPanel-hdr{ - box-sizing: border-box; - min-height: 30px; - padding: 2px 0 4px 2px; -} -.jsPanel-hdr *{ - font-size: 16px; -} -.jsPanel-hdr-r{ - position: absolute; - top: 0; - right: 0; -} -h3.jsPanel-title{ - float: left; - width: calc(100% - 90px); - white-space: nowrap; - overflow: hidden; - text-align: left; - text-overflow: ellipsis; - margin: 0 5px; - font-variant: normal; - font-weight: bold; - cursor: move; - min-height: 20px; - padding: 0 10px; - font-size:25px; - font-variant-caps:all-petite-caps; -} -.jsPanel-hdr-r div{ - float: right; - cursor: pointer; - margin-left: 1px; - width: auto; - height: auto; - min-width: 20px; - min-height: 20px; - overflow: hidden; -} - -.jsPanel-btn-close{ background: url("images/icon-sprite-20x20.jpg") 20px 0 repeat no-repeat; } -.jsPanel-btn-max{ background: url("images/icon-sprite-20x20.jpg") 40px 0 repeat no-repeat; } -.jsPanel-btn-norm{ background: url("images/icon-sprite-20x20.jpg") 60px 0 repeat no-repeat; display: none; } -.jsPanel-btn-min{ background: url("images/icon-sprite-20x20.jpg") 80px 0 repeat no-repeat; } -.jsPanel-btn-small{ background: url("images/icon-sprite-20x20.jpg") 100px 0 repeat no-repeat; } -.jsPanel-btn-smallrev{ background: url("images/icon-sprite-20x20.jpg") 120px 0 repeat no-repeat; display: none; } - - -.jsPanel-hdr-toolbar { - box-sizing: border-box; - clear: both; - font-size: 16px; - margin-top: 23px; - height: auto; - padding: 0 5px; - width: auto; -} -.jsPanel-hdr-toolbar img{ - cursor: pointer; - margin-bottom: 4px; - margin-right: 5px; -} -.jsPanel-content { - font-size: 12px; - position: relative; - width: 100%; - overflow: hidden; - box-sizing: border-box; -} -.jsPanel-ftr{ - box-sizing: border-box; - cursor: move; - display: none; - font-size: 12px; - height: auto; - padding: 2px 2px 2px 5px; - text-align: right; -} -.jsPanel-ftr button{ - margin: 5px; -} - -/* clearfix */ -.jsPanel-clearfix:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} - -/* container that takes the minified jsPanels */ -#jsPanel-min-container{ - position:fixed; - left:0; - bottom:0; - width:auto; - height:28px; - background:transparent; - z-index:9999; -} - -/* css for the modal backdrop --------------------------- */ -.jsPanel-backdrop{ - position:absolute; - top:0; - left:0; - z-index:10000; - width:100%; - background:rgba(0,0,0,0.7); -} -.jsPanel-backdrop-inner{ - position:absolute; - width:100%; -} -/* THEMES ------------------------------------------------------------------------- */ - -/* default ------------------------------------------- */ -.jsPanel.jsPanel-theme-default{ - background: none repeat scroll 0 0 #fff; - box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); -} -.jsPanel-hdr.jsPanel-theme-default{ - color: #000; - font-family: tahoma,arial,verdana,sans-serif; - font-weight: normal; -} -.jsPanel-hdr.jsPanel-theme-default h3{ - color: #000; -} -.jsPanel-hdr.jsPanel-theme-default h3 small{ - color: #000; - font-size: 65%; -} -.jsPanel-content.jsPanel-theme-default{ - background: none repeat scroll 0 0 #FFFFFF; - color: #000; - font-family: tahoma,arial,verdana,sans-serif; - outline: 1px solid #bbb; -} -.jsPanel-ftr.jsPanel-theme-default{ - font-size: 12px; - height: auto; - padding: 2px 2px 2px 5px; - text-align: right; -} -.jsPanel-theme-default .ui-icon-gripsmall-diagonal-se{ - color: #000; -} - - -/* light ------------------------------------------- */ -.jsPanel.jsPanel-theme-light{ background: #f1f1f1; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-light{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #f1f1f1; } -.jsPanel-hdr.jsPanel-theme-light h3{ color: #000; } -.jsPanel-hdr.jsPanel-theme-light h3 small{ color: #000; font-size: 65%; } -.jsPanel-content.jsPanel-theme-light { background: none repeat scroll 0 0 #FFFFFF; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-light{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #f1f1f1; } -.jsPanel-theme-light .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* medium -------------------------------------------- */ -.jsPanel.jsPanel-theme-medium{ background: #c2c2c2; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-medium{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #c2c2c2; } -.jsPanel-hdr.jsPanel-theme-medium h3{ color: #000; } -.jsPanel-hdr.jsPanel-theme-medium h3 small{ color: #000; font-size: 65%; } -.jsPanel-content.jsPanel-theme-medium { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-medium{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #c2c2c2; } -.jsPanel-theme-medium .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* dark ---------------------------------------------- */ -.jsPanel.jsPanel-theme-dark{ background: #828282; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-dark{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #828282; } -.jsPanel-hdr.jsPanel-theme-dark h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-dark h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-dark { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-dark{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #828282; } -.jsPanel-theme-dark .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* black ---------------------------------------------- */ -.jsPanel.jsPanel-theme-black{ background: linear-gradient(#4a4a4a 0px, black 100%) repeat scroll 0 0 #4a4a4a; background: -ms-linear-gradient(#4a4a4a 0px, black 100%) repeat scroll 0 0 #4a4a4a; box-shadow: 0 0 3px #333; } -.jsPanel-hdr.jsPanel-theme-black{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: transparent; } -.jsPanel-hdr.jsPanel-theme-black h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-black h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-black { background: transparent; color: #c3c3c3; } -.jsPanel-ftr.jsPanel-theme-black{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: transparent; } -.jsPanel-theme-black .ui-icon-gripsmall-diagonal-se{ color: #fff; } - -/* primary ---------------------------------------------- */ -.jsPanel.jsPanel-theme-primary{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-primary{ color: #ffffff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #2FA4E7; } -.jsPanel-hdr.jsPanel-theme-primary h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-primary h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-primary { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-primary{} -.jsPanel-theme-primary .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* success --------------------------------------------- */ -.jsPanel.jsPanel-theme-success{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4);background-color:#222222 } -.jsPanel-hdr.jsPanel-theme-success{ color: #fff; font-family: Open Sans, Helvetica,tahoma,arial,verdana,sans-serif; font-weight: bold; font-size:15px; background: #818D43; height:20px;} -.jsPanel-hdr.jsPanel-theme-success h3{ color: #fff;font-size:20px;font-weight: bold } -.jsPanel-hdr.jsPanel-theme-success h3 small{ color: #fff; font-size: 65%; font-weight: bold} -.jsPanel-content.jsPanel-theme-success { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb;background-color:#222222 } -.jsPanel-ftr.jsPanel-theme-success{} -.jsPanel-theme-successt .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* info ---------------------------------------------- */ -.jsPanel.jsPanel-theme-info{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-info{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #033C73; } -.jsPanel-hdr.jsPanel-theme-info h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-info h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-info { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-info{} -.jsPanel-theme-info .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* warning ----------------------------------------------- */ -.jsPanel.jsPanel-theme-warning{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-warning{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #DD5600; } -.jsPanel-hdr.jsPanel-theme-warning h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-warning h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-warning { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-warning{} -.jsPanel-theme-warning .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* danger ----------------------------------------------- */ -.jsPanel.jsPanel-theme-danger{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-danger{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #C71C22; } -.jsPanel-hdr.jsPanel-theme-danger h3{ color: #fff; } -.jsPanel-hdr.jsPanel-theme-danger h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-danger { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-danger{} -.jsPanel-theme-danger .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* autumngreen ------------------------------------------- */ -.jsPanel.jsPanel-theme-autumngreen{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-autumngreen{ color: rgb(196, 189, 142); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(125, 126, 81); } -.jsPanel-hdr.jsPanel-theme-autumngreen h3{ color: rgb(196, 189, 142); } -.jsPanel-hdr.jsPanel-theme-autumngreen h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-autumngreen { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-autumngreen{ background: linear-gradient(to bottom, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } -.jsPanel-theme-autumngreen .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* autumnbrown ------------------------------------------- */ -.jsPanel.jsPanel-theme-autumnbrown{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-autumnbrown{ color: rgb(233, 206, 135); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(138, 91, 51); } -.jsPanel-hdr.jsPanel-theme-autumnbrown h3{ color: rgb(233, 206, 135); } -.jsPanel-hdr.jsPanel-theme-autumnbrown h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-autumnbrown { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-autumnbrown{ background: linear-gradient(to bottom, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } -.jsPanel-theme-autumnbrown .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* autumnred ------------------------------------------- */ -.jsPanel.jsPanel-theme-autumnred{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } -.jsPanel-hdr.jsPanel-theme-autumnred{ color: rgb(233, 206, 135); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(198, 113, 10); } -.jsPanel-hdr.jsPanel-theme-autumnred h3{ color: rgb(233, 206, 135); } -.jsPanel-hdr.jsPanel-theme-autumnred h3 small{ color: #fff; font-size: 65%; } -.jsPanel-content.jsPanel-theme-autumnred { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } -.jsPanel-ftr.jsPanel-theme-autumnred{ background: linear-gradient(to bottom, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } -.jsPanel-theme-autumnred .ui-icon-gripsmall-diagonal-se{ color: #000; } - -/* bootstrap adjustments */ -.jsPanel.panel-default, .jsPanel.panel-primary, .jsPanel.panel-info, .jsPanel.panel-success, .jsPanel.panel-warning, .jsPanel.panel-danger{ - box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); -} - -/* jQuery-UI adjustments */ -.ui-icon-gripsmall-diagonal-se { - background: none repeat scroll 0 0 rgba(0, 0, 0, 0); - color: #000; - font-family: jsglyphregular; - font-size: 16px; - line-height: 16px; -} -.ui-icon-gripsmall-diagonal-se:before { - content: "\e02f"; -} -.ui-resizable-handle.ui-resizable-se.ui-icon.ui-icon-gripsmall-diagonal-se{ - text-indent: 0; - bottom: 2px; -} -/* uncomment to show a lower left resize icon -.ui-resizable-handle.ui-resizable-sw{ - background: none repeat scroll 0 0 rgba(0, 0, 0, 0); - color: #000; - font-family: jsglyphregular; - font-size: 16px; - line-height: 16px; - text-indent: 7px; - bottom: 2px; - width: 16px; - height: 16px; -} -.ui-resizable-handle.ui-resizable-sw:before{ - content: "\e054"; -} -*/ - -/* css for the tooltip wrapper ---------------------------- */ -.jsPanel-tooltip-wrapper{ - position: relative; - display: inline-block; /* do not change !!! inline würde gehen -> offsets neu berechnen */ - margin: 0; - padding: 0; - border: none; - background: transparent; -} -.jsPanel-tooltip-wrapper .jsPanel{ - border-radius: 4px; -} - -/* css for tooltip corners */ -.jsPanel-corner-top, .jsPanel-corner-right, .jsPanel-corner-bottom, .jsPanel-corner-left{ - width: 0; - height: 0; - border: 12px solid transparent; - position: absolute; -} -.jsPanel-corner-top{ - border-top-width: 10px; -} -.jsPanel-corner-right{ - border-right-width: 10px; -} -.jsPanel-corner-bottom{ - border-bottom-width: 10px; -} -.jsPanel-corner-left{ - border-left-width: 10px; -} - - - - -/* css for the hints ----------------------------------------------------------- */ -.jsPanel-hint{ - margin-bottom: 4px; -} -.jsPanel-hint-close{ - float: right; - font-size: 1.5em; - margin: 4px 5px 0 0; - cursor: pointer; -} -.jsPanel-hint-content.jsPanel-hint-default{ - background: #fff none repeat scroll 0 0; - border: 2px solid #222; - color: #222; - text-shadow: 1px 1px 1px #789; -} -.jsPanel-hint-content.jsPanel-hint-light{ - background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%); - color: #000; -} -.jsPanel-hint-content.jsPanel-hint-medium{ - background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(130, 130, 130, 1) 100%); background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(130, 130, 130, 1) 100%); - color: #fff; -} -.jsPanel-hint-content.jsPanel-hint-dark{ - background: linear-gradient(to bottom, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); background: -ms-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); - color: #fff; -} -.jsPanel-hint-content.jsPanel-hint-autumngreen{ - background: linear-gradient(to bottom, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); - color: #fff; -} -.jsPanel-hint-content.jsPanel-hint-autumnbrown{ - background: linear-gradient(to bottom, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); - color: #fff; -} -.jsPanel-hint-content.jsPanel-hint-autumnred{ - background: linear-gradient(to bottom, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); - color: #fff; -} -.jsPanel-hint-content.jsPanel-hint-primary{ - background: #82C8F1 none repeat scroll 0 0; - border: 5px solid #02436A; - color: #02436A; - text-shadow: 2px 2px 2px #fff; -} -.jsPanel-hint-content.jsPanel-hint-info{ - background: #4594c3 none repeat scroll 0 0; - border: 5px solid #033c73; - color: #fff; - text-shadow: 2px 2px 2px #033c73; -} -.jsPanel-hint-content.jsPanel-hint-success{ - background: #C3EA99 none repeat scroll 0 0; - border: 5px solid #034E26; - color: #356304; - text-shadow: 2px 2px 2px #aaa; -} -.jsPanel-hint-content.jsPanel-hint-warning{ - background: #FFC7A3 none repeat scroll 0 0; - border: 5px solid #DD5600; - color: #AD6537; - text-shadow: 2px 2px 2px #fff; -} -.jsPanel-hint-content.jsPanel-hint-danger{ - background: #fc7073 none repeat scroll 0 0; - border: 5px solid #c71c22; - color: #fff; - text-shadow: 2px 2px 2px #c71c22; -} - -/** - * CSS3 Tips v1.0.1 - * A stylesheet for creating tooltips without using anything other than CSS3. - * created by c.bavota released under GPL v2 March 21st, 2014 - * HTML example code for the tooltip - * http://cbavota.bitbucket.org/css3-tips/ - * bavotasan.com -*/ -[data-tips] { - position: relative; - text-decoration: none; -} -[data-tips]:after, -[data-tips]:before { - position: absolute; - z-index: 100; - opacity: 0; -} -[data-tips]:after { - content: attr(data-tips); - height: 25px; - line-height: 25px; - padding: 0 10px; - font-size: 12px; - text-align: center; - color: #fff; - background: #3276B1; - border-radius: 4px; - /*text-shadow: 0 0 5px #000;*/ - -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3); - -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); - box-shadow: 0 0 5px rgba(0,0,0,0.3); - white-space: nowrap; - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; -} -[data-tips]:before { - content: ""; - width: 0; - height: 0; - border-width: 6px; - border-style: solid; -} - -[data-tips]:hover:after, -[data-tips]:hover:before { - opacity: 1; -} -/* Top tips */ -[data-tips].top-tip:after, -[data-tips].top-tip:before { - -webkit-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; - -moz-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; - transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; - bottom: 90%; - left: -9999px; - margin-bottom: 12px; -} -[data-tips].top-tip:before { - border-color: #3276B1 transparent transparent transparent; - margin-bottom: 0; -} -[data-tips].top-tip:hover:after, -[data-tips].top-tip:hover:before { - bottom: 100%; - left: 0; -} -[data-tips].top-tip:hover:before { - left: 15px; -} -/* Bottom tip */ -[data-tips].bottom-tip:after, -[data-tips].bottom-tip:before { - -webkit-transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; - -moz-transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; - transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; - top: 90%; - left: -9999px; - margin-top: 12px; -} -[data-tips].bottom-tip:before { - border-color: transparent transparent #3276B1 transparent; - margin-top: 0; -} -[data-tips].bottom-tip:hover:after, -[data-tips].bottom-tip:hover:before { - top: 100%; - left: 0; -} -[data-tips].bottom-tip:hover:before { - left: 15px; -} -/* Right tip */ -[data-tips].right-tip:after, -[data-tips].right-tip:before { - -webkit-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; - -moz-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; - transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; - top: -9999px; - left: 96%; - margin-left: 12px; -} -[data-tips].right-tip:before { - border-color: transparent #3276B1 transparent transparent; - margin-left: 0; -} -[data-tips].right-tip:hover:after, -[data-tips].right-tip:hover:before { - left: 100%; - top: 0; -} - -[data-tips].right-tip:hover:before { - top: 7px; -} -/* Left tip */ -[data-tips].left-tip:after, -[data-tips].left-tip:before { - -webkit-transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; - -moz-transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; - transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; - top: -9999px; - right: 96%; - margin-right: 12px; -} -[data-tips].left-tip:before { - border-color: transparent transparent transparent #3276B1; - margin-right: 0; -} -[data-tips].left-tip:hover:after, -[data-tips].left-tip:hover:before { - right: 100%; - top: 0; -} -[data-tips].left-tip:hover:before { - top: 7px; -} - - -span#min { - background-image: url(/betatesting/wp-content/themes/dynamik/css/images/brunelwantsyou_hover.jpg); +/* jquery.jspanel.css version 2.5.3 - 2015-05-16 22:21 */ +@font-face { + font-family: 'jsglyphregular'; + src: url('fonts/jsglyph.eot'); + src: url('fonts/jsglyph.eot?#iefix') format('embedded-opentype'), + url('fonts/jsglyph.woff2') format('woff2'), + url('fonts/jsglyph.woff') format('woff'), + url('fonts/jsglyph.ttf') format('truetype'), + url('fonts/jsglyph.svg#jsglyphregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.jsglyph{ font-family: "jsglyphregular"; } + +.jsglyph-minimize:before{ content: "\e001"; } /* unicode  */ +.jsglyph-maximize:before{ content: "\e002"; } +.jsglyph-chevron-up:before{ content: "\e003"; } +.jsglyph-chevron-down:before{ content: "\e004"; } +.jsglyph-normalize:before{ content: "\e005"; } +.jsglyph-tick:before{ content: "\e006"; } +.jsglyph-remove:before{ content: "\e007"; } +.jsglyph-chevron-right:before{ content: "\e008"; } +.jsglyph-chevron-left:before{ content: "\e009"; } +.jsglyph-plus:before{ content: "\e00a"; } +.jsglyph-minus:before{ content: "\e00b"; } +.jsglyph-trashcan:before{ content: "\e00c"; } +.jsglyph-square-info:before{ content: "\e00d"; } +.jsglyph-square-exclamationmark:before{ content: "\e00e"; } +.jsglyph-delete:before{ content: "\e00f"; } +.jsglyph-mail:before{ content: "\e010"; } +.jsglyph-envelope:before{ content: "\e011"; } +.jsglyph-play:before{ content: "\e012"; } +.jsglyph-forward:before{ content: "\e013"; } +.jsglyph-backward:before{ content: "\e014"; } +.jsglyph-step-forward:before{ content: "\e015"; } +.jsglyph-step-backward:before{ content: "\e016"; } +.jsglyph-fast-forward:before{ content: "\e017"; } +.jsglyph-fast-backward:before{ content: "\e018"; } +.jsglyph-eject:before{ content: "\e019"; } +.jsglyph-stop:before{ content: "\e01a"; } +.jsglyph-pause:before{ content: "\e01b"; } +.jsglyph-arrow-right:before{ content: "\e01c"; } +.jsglyph-arrow-left:before{ content: "\e01d"; } +.jsglyph-arrow-up:before{ content: "\e01e"; } +.jsglyph-arrow-down:before{ content: "\e01f"; } +.jsglyph-star-halffull:before{ content: "\e020"; } +.jsglyph-star:before{ content: "\e021"; } +.jsglyph-star-empty:before{ content: "\e022"; } +.jsglyph-arrow-right-hollow:before{ content: "\e023"; } +.jsglyph-arrow-left-hollow:before{ content: "\e024"; } +.jsglyph-arrow-up-hollow:before{ content: "\e025"; } +.jsglyph-arrow-down-hollow:before{ content: "\e026"; } +.jsglyph-square-questionmark:before{ content: "\e027"; } +.jsglyph-circle-info:before{ content: "\e028"; } +.jsglyph-circle-exclamationmark:before{ content: "\e029"; } +.jsglyph-circle-questionmark:before{ content: "\e02a"; } +.jsglyph-circle2-info:before{ content: "\e02b"; } +.jsglyph-circle2-exclamationmark:before{ content: "\e02c"; } +.jsglyph-circle2-questionmark:before{ content: "\e02d"; } +.jsglyph-resize-handle:before{ content: "\e02e"; } +.jsglyph-resize-handle-2:before{ content: "\e02f"; } +.jsglyph-pencil:before{ content: "\e030"; } +.jsglyph-refresh:before{ content: "\e031"; } +.jsglyph-volume-off:before{ content: "\e032"; } +.jsglyph-volume-up:before{ content: "\e033"; } +.jsglyph-volume-down:before{ content: "\e034"; } +.jsglyph-link:before{ content: "\e035"; } +.jsglyph-eye-open:before{ content: "\e036"; } +.jsglyph-eye-slash:before{ content: "\e037"; } +.jsglyph-power-on:before{ content: "\e038"; } +.jsglyph-cog:before{ content: "\e039"; } +.jsglyph-cog2:before{ content: "\e03a"; } +.jsglyph-torso:before{ content: "\e03b"; } +.jsglyph-people:before{ content: "\e03c"; } +.jsglyph-torso-female:before{ content: "\e03d"; } +.jsglyph-people-female:before{ content: "\e03e"; } +.jsglyph-torso-male-female:before{ content: "\e03f"; } +.jsglyph-torso-female-male:before{ content: "\e040"; } +.jsglyph-torso-hollow:before{ content: "\e041"; } +.jsglyph-cog3:before{ content: "\e042"; } +.jsglyph-tools:before{ content: "\e043"; } +.jsglyph-home:before{ content: "\e044"; } +.jsglyph-login:before{ content: "\e045"; } +.jsglyph-logout:before{ content: "\e046"; } +.jsglyph-download:before{ content: "\e047"; } +.jsglyph-upload:before{ content: "\e048"; } +.jsglyph-reload:before{ content: "\e049"; } +.jsglyph-lock:before{ content: "\e04a"; } +.jsglyph-unlock:before{ content: "\e04b"; } +.jsglyph-save:before{ content: "\e04c"; } +.jsglyph-wrench:before{ content: "\e04d"; } +.jsglyph-search:before{ content: "\e04e"; } +.jsglyph-zoom-in:before{ content: "\e04f"; } +.jsglyph-zoom-out:before{ content: "\e050"; } +.jsglyph-bars:before{ content: "\e051"; } +.jsglyph-marker:before{ content: "\e052"; } +.jsglyph-resize-handle-left:before{ content: "\e053"; } +.jsglyph-resize-handle-2-left:before{ content: "\e054"; } +.jsglyph-edit:before{ content: "\e055"; } + + +.jsPanel, .jsPanel-hdr-r, .jsPanel-hdr-l, .jsPanel-hdr-r span img, .jsPanel-content{ + margin: 0; padding: 0; border: 0; font-size: 100%; line-height: 1.5em; vertical-align: baseline; +} +.jsPanel{ + box-sizing: border-box; + /*overflow: hidden;*/ + position: absolute; + border-radius: 0px; + /*z-index: 100;*/ +} +.jsPanel-hdr{ + box-sizing: border-box; + min-height: 30px; + padding: 2px 0 4px 2px; +} +.jsPanel-hdr *{ + font-size: 16px; +} +.jsPanel-hdr-r{ + position: absolute; + top: 0; + right: 0; +} +h3.jsPanel-title{ + float: left; + width: calc(100% - 90px); + white-space: nowrap; + overflow: hidden; + text-align: left; + text-overflow: ellipsis; + margin: 0 5px; + font-variant: normal; + font-weight: bold; + cursor: move; + min-height: 20px; + padding: 0 10px; + font-size:25px; + font-variant-caps:all-petite-caps; +} +.jsPanel-hdr-r div{ + float: right; + cursor: pointer; + margin-left: 1px; + width: auto; + height: auto; + min-width: 20px; + min-height: 20px; + overflow: hidden; +} + +.jsPanel-btn-close{ background: url("images/icon-sprite-20x20.jpg") 20px 0 repeat no-repeat; } +.jsPanel-btn-max{ background: url("images/icon-sprite-20x20.jpg") 40px 0 repeat no-repeat; } +.jsPanel-btn-norm{ background: url("images/icon-sprite-20x20.jpg") 60px 0 repeat no-repeat; display: none; } +.jsPanel-btn-min{ background: url("images/icon-sprite-20x20.jpg") 80px 0 repeat no-repeat; } +.jsPanel-btn-small{ background: url("images/icon-sprite-20x20.jpg") 100px 0 repeat no-repeat; } +.jsPanel-btn-smallrev{ background: url("images/icon-sprite-20x20.jpg") 120px 0 repeat no-repeat; display: none; } + + +.jsPanel-hdr-toolbar { + box-sizing: border-box; + clear: both; + font-size: 16px; + margin-top: 23px; + height: auto; + padding: 0 5px; + width: auto; +} +.jsPanel-hdr-toolbar img{ + cursor: pointer; + margin-bottom: 4px; + margin-right: 5px; +} +.jsPanel-content { + font-size: 12px; + position: relative; + width: 100%; + overflow: hidden; + box-sizing: border-box; +} +.jsPanel-ftr{ + box-sizing: border-box; + cursor: move; + display: none; + font-size: 12px; + height: auto; + padding: 2px 2px 2px 5px; + text-align: right; +} +.jsPanel-ftr button{ + margin: 5px; +} + +/* clearfix */ +.jsPanel-clearfix:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +/* container that takes the minified jsPanels */ +#jsPanel-min-container{ + position:fixed; + left:0; + bottom:0; + width:auto; + height:28px; + background:transparent; + z-index:9999; +} + +/* css for the modal backdrop --------------------------- */ +.jsPanel-backdrop{ + position:absolute; + top:0; + left:0; + z-index:10000; + width:100%; + background:rgba(0,0,0,0.7); +} +.jsPanel-backdrop-inner{ + position:absolute; + width:100%; +} +/* THEMES ------------------------------------------------------------------------- */ + +/* default ------------------------------------------- */ +.jsPanel.jsPanel-theme-default{ + background: none repeat scroll 0 0 #fff; + box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); +} +.jsPanel-hdr.jsPanel-theme-default{ + color: #000; + font-family: tahoma,arial,verdana,sans-serif; + font-weight: normal; +} +.jsPanel-hdr.jsPanel-theme-default h3{ + color: #000; +} +.jsPanel-hdr.jsPanel-theme-default h3 small{ + color: #000; + font-size: 65%; +} +.jsPanel-content.jsPanel-theme-default{ + background: none repeat scroll 0 0 #FFFFFF; + color: #000; + font-family: tahoma,arial,verdana,sans-serif; + outline: 1px solid #bbb; +} +.jsPanel-ftr.jsPanel-theme-default{ + font-size: 12px; + height: auto; + padding: 2px 2px 2px 5px; + text-align: right; +} +.jsPanel-theme-default .ui-icon-gripsmall-diagonal-se{ + color: #000; +} + + +/* light ------------------------------------------- */ +.jsPanel.jsPanel-theme-light{ background: #f1f1f1; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-light{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #f1f1f1; } +.jsPanel-hdr.jsPanel-theme-light h3{ color: #000; } +.jsPanel-hdr.jsPanel-theme-light h3 small{ color: #000; font-size: 65%; } +.jsPanel-content.jsPanel-theme-light { background: none repeat scroll 0 0 #FFFFFF; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-light{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #f1f1f1; } +.jsPanel-theme-light .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* medium -------------------------------------------- */ +.jsPanel.jsPanel-theme-medium{ background: #c2c2c2; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-medium{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #c2c2c2; } +.jsPanel-hdr.jsPanel-theme-medium h3{ color: #000; } +.jsPanel-hdr.jsPanel-theme-medium h3 small{ color: #000; font-size: 65%; } +.jsPanel-content.jsPanel-theme-medium { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-medium{ color: #000; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #c2c2c2; } +.jsPanel-theme-medium .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* dark ---------------------------------------------- */ +.jsPanel.jsPanel-theme-dark{ background: #828282; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-dark{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #828282; } +.jsPanel-hdr.jsPanel-theme-dark h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-dark h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-dark { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-dark{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #828282; } +.jsPanel-theme-dark .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* black ---------------------------------------------- */ +.jsPanel.jsPanel-theme-black{ background: linear-gradient(#4a4a4a 0px, black 100%) repeat scroll 0 0 #4a4a4a; background: -ms-linear-gradient(#4a4a4a 0px, black 100%) repeat scroll 0 0 #4a4a4a; box-shadow: 0 0 3px #333; } +.jsPanel-hdr.jsPanel-theme-black{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: transparent; } +.jsPanel-hdr.jsPanel-theme-black h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-black h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-black { background: transparent; color: #c3c3c3; } +.jsPanel-ftr.jsPanel-theme-black{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: transparent; } +.jsPanel-theme-black .ui-icon-gripsmall-diagonal-se{ color: #fff; } + +/* primary ---------------------------------------------- */ +.jsPanel.jsPanel-theme-primary{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-primary{ color: #ffffff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #2FA4E7; } +.jsPanel-hdr.jsPanel-theme-primary h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-primary h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-primary { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-primary{} +.jsPanel-theme-primary .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* success --------------------------------------------- */ +.jsPanel.jsPanel-theme-success{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4);background-color:#222222 } +.jsPanel-hdr.jsPanel-theme-success{ color: #fff; font-family: Open Sans, Helvetica,tahoma,arial,verdana,sans-serif; font-weight: bold; font-size:15px; background: #818D43; height:20px;} +.jsPanel-hdr.jsPanel-theme-success h3{ color: #fff;font-size:20px;font-weight: bold } +.jsPanel-hdr.jsPanel-theme-success h3 small{ color: #fff; font-size: 65%; font-weight: bold} +.jsPanel-content.jsPanel-theme-success { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb;background-color:#222222; overflow-y: auto !important; } +.jsPanel-ftr.jsPanel-theme-success{} +.jsPanel-theme-successt .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* info ---------------------------------------------- */ +.jsPanel.jsPanel-theme-info{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-info{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #033C73; } +.jsPanel-hdr.jsPanel-theme-info h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-info h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-info { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-info{} +.jsPanel-theme-info .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* warning ----------------------------------------------- */ +.jsPanel.jsPanel-theme-warning{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-warning{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #DD5600; } +.jsPanel-hdr.jsPanel-theme-warning h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-warning h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-warning { background: none repeat scroll 0 0 #fff; color: #000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-warning{} +.jsPanel-theme-warning .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* danger ----------------------------------------------- */ +.jsPanel.jsPanel-theme-danger{ background: none repeat scroll 0 0 #fff; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-danger{ color: #fff; font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: #C71C22; } +.jsPanel-hdr.jsPanel-theme-danger h3{ color: #fff; } +.jsPanel-hdr.jsPanel-theme-danger h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-danger { background: none repeat scroll 0 0 #ffffff; color: #000000; font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-danger{} +.jsPanel-theme-danger .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* autumngreen ------------------------------------------- */ +.jsPanel.jsPanel-theme-autumngreen{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-autumngreen{ color: rgb(196, 189, 142); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(125, 126, 81); } +.jsPanel-hdr.jsPanel-theme-autumngreen h3{ color: rgb(196, 189, 142); } +.jsPanel-hdr.jsPanel-theme-autumngreen h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-autumngreen { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-autumngreen{ background: linear-gradient(to bottom, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } +.jsPanel-theme-autumngreen .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* autumnbrown ------------------------------------------- */ +.jsPanel.jsPanel-theme-autumnbrown{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-autumnbrown{ color: rgb(233, 206, 135); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(138, 91, 51); } +.jsPanel-hdr.jsPanel-theme-autumnbrown h3{ color: rgb(233, 206, 135); } +.jsPanel-hdr.jsPanel-theme-autumnbrown h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-autumnbrown { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-autumnbrown{ background: linear-gradient(to bottom, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } +.jsPanel-theme-autumnbrown .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* autumnred ------------------------------------------- */ +.jsPanel.jsPanel-theme-autumnred{ background: none repeat scroll 0 0 #eee; box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); } +.jsPanel-hdr.jsPanel-theme-autumnred{ color: rgb(233, 206, 135); font-family: tahoma,arial,verdana,sans-serif; font-weight: normal; background: rgb(198, 113, 10); } +.jsPanel-hdr.jsPanel-theme-autumnred h3{ color: rgb(233, 206, 135); } +.jsPanel-hdr.jsPanel-theme-autumnred h3 small{ color: #fff; font-size: 65%; } +.jsPanel-content.jsPanel-theme-autumnred { background: none repeat scroll 0 0 #FFFFFF; color: rgb(110, 100, 73); font-family: tahoma,arial,verdana,sans-serif; outline: 1px solid #bbb; } +.jsPanel-ftr.jsPanel-theme-autumnred{ background: linear-gradient(to bottom, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); color: rgb(110, 100, 73); } +.jsPanel-theme-autumnred .ui-icon-gripsmall-diagonal-se{ color: #000; } + +/* bootstrap adjustments */ +.jsPanel.panel-default, .jsPanel.panel-primary, .jsPanel.panel-info, .jsPanel.panel-success, .jsPanel.panel-warning, .jsPanel.panel-danger{ + box-shadow: 0 0 6px rgba(0, 33, 50, 0.1), 0 7px 25px rgba(17, 38, 60, 0.4); +} + +/* jQuery-UI adjustments */ +.ui-icon-gripsmall-diagonal-se { + background: none repeat scroll 0 0 rgba(0, 0, 0, 0); + color: #000; + font-family: jsglyphregular; + font-size: 16px; + line-height: 16px; +} +.ui-icon-gripsmall-diagonal-se:before { + content: "\e02f"; +} +.ui-resizable-handle.ui-resizable-se.ui-icon.ui-icon-gripsmall-diagonal-se{ + text-indent: 0; + bottom: 2px; +} +/* uncomment to show a lower left resize icon +.ui-resizable-handle.ui-resizable-sw{ + background: none repeat scroll 0 0 rgba(0, 0, 0, 0); + color: #000; + font-family: jsglyphregular; + font-size: 16px; + line-height: 16px; + text-indent: 7px; + bottom: 2px; + width: 16px; + height: 16px; +} +.ui-resizable-handle.ui-resizable-sw:before{ + content: "\e054"; +} +*/ + +/* css for the tooltip wrapper ---------------------------- */ +.jsPanel-tooltip-wrapper{ + position: relative; + display: inline-block; /* do not change !!! inline würde gehen -> offsets neu berechnen */ + margin: 0; + padding: 0; + border: none; + background: transparent; +} +.jsPanel-tooltip-wrapper .jsPanel{ + border-radius: 4px; +} + +/* css for tooltip corners */ +.jsPanel-corner-top, .jsPanel-corner-right, .jsPanel-corner-bottom, .jsPanel-corner-left{ + width: 0; + height: 0; + border: 12px solid transparent; + position: absolute; +} +.jsPanel-corner-top{ + border-top-width: 10px; +} +.jsPanel-corner-right{ + border-right-width: 10px; +} +.jsPanel-corner-bottom{ + border-bottom-width: 10px; +} +.jsPanel-corner-left{ + border-left-width: 10px; +} + + + + +/* css for the hints ----------------------------------------------------------- */ +.jsPanel-hint{ + margin-bottom: 4px; +} +.jsPanel-hint-close{ + float: right; + font-size: 1.5em; + margin: 4px 5px 0 0; + cursor: pointer; +} +.jsPanel-hint-content.jsPanel-hint-default{ + background: #fff none repeat scroll 0 0; + border: 2px solid #222; + color: #222; + text-shadow: 1px 1px 1px #789; +} +.jsPanel-hint-content.jsPanel-hint-light{ + background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(250,250,250,0.65) 100%); + color: #000; +} +.jsPanel-hint-content.jsPanel-hint-medium{ + background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(130, 130, 130, 1) 100%); background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(130, 130, 130, 1) 100%); + color: #fff; +} +.jsPanel-hint-content.jsPanel-hint-dark{ + background: linear-gradient(to bottom, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); background: -ms-linear-gradient(top, rgba(181,189,200,1) 0%,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%); + color: #fff; +} +.jsPanel-hint-content.jsPanel-hint-autumngreen{ + background: linear-gradient(to bottom, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(125, 126, 81,0.65) 0%,rgba(0,0,0,0) 100%); + color: #fff; +} +.jsPanel-hint-content.jsPanel-hint-autumnbrown{ + background: linear-gradient(to bottom, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(138, 91, 51,0.65) 0%,rgba(0,0,0,0) 100%); + color: #fff; +} +.jsPanel-hint-content.jsPanel-hint-autumnred{ + background: linear-gradient(to bottom, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); background: -ms-linear-gradient(top, rgba(198, 113, 10,0.65) 0%,rgba(0,0,0,0) 100%); + color: #fff; +} +.jsPanel-hint-content.jsPanel-hint-primary{ + background: #82C8F1 none repeat scroll 0 0; + border: 5px solid #02436A; + color: #02436A; + text-shadow: 2px 2px 2px #fff; +} +.jsPanel-hint-content.jsPanel-hint-info{ + background: #4594c3 none repeat scroll 0 0; + border: 5px solid #033c73; + color: #fff; + text-shadow: 2px 2px 2px #033c73; +} +.jsPanel-hint-content.jsPanel-hint-success{ + background: #C3EA99 none repeat scroll 0 0; + border: 5px solid #034E26; + color: #356304; + text-shadow: 2px 2px 2px #aaa; +} +.jsPanel-hint-content.jsPanel-hint-warning{ + background: #FFC7A3 none repeat scroll 0 0; + border: 5px solid #DD5600; + color: #AD6537; + text-shadow: 2px 2px 2px #fff; +} +.jsPanel-hint-content.jsPanel-hint-danger{ + background: #fc7073 none repeat scroll 0 0; + border: 5px solid #c71c22; + color: #fff; + text-shadow: 2px 2px 2px #c71c22; +} + +/** + * CSS3 Tips v1.0.1 + * A stylesheet for creating tooltips without using anything other than CSS3. + * created by c.bavota released under GPL v2 March 21st, 2014 + * HTML example code for the tooltip + * http://cbavota.bitbucket.org/css3-tips/ + * bavotasan.com +*/ +[data-tips] { + position: relative; + text-decoration: none; +} +[data-tips]:after, +[data-tips]:before { + position: absolute; + z-index: 100; + opacity: 0; +} +[data-tips]:after { + content: attr(data-tips); + height: 25px; + line-height: 25px; + padding: 0 10px; + font-size: 12px; + text-align: center; + color: #fff; + background: #3276B1; + border-radius: 4px; + /*text-shadow: 0 0 5px #000;*/ + -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3); + -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3); + box-shadow: 0 0 5px rgba(0,0,0,0.3); + white-space: nowrap; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +[data-tips]:before { + content: ""; + width: 0; + height: 0; + border-width: 6px; + border-style: solid; +} + +[data-tips]:hover:after, +[data-tips]:hover:before { + opacity: 1; +} +/* Top tips */ +[data-tips].top-tip:after, +[data-tips].top-tip:before { + -webkit-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; + -moz-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; + transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out; + bottom: 90%; + left: -9999px; + margin-bottom: 12px; +} +[data-tips].top-tip:before { + border-color: #3276B1 transparent transparent transparent; + margin-bottom: 0; +} +[data-tips].top-tip:hover:after, +[data-tips].top-tip:hover:before { + bottom: 100%; + left: 0; +} +[data-tips].top-tip:hover:before { + left: 15px; +} +/* Bottom tip */ +[data-tips].bottom-tip:after, +[data-tips].bottom-tip:before { + -webkit-transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; + -moz-transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; + transition: top 0.25s ease-in-out, opacity 0.25s ease-in-out; + top: 90%; + left: -9999px; + margin-top: 12px; +} +[data-tips].bottom-tip:before { + border-color: transparent transparent #3276B1 transparent; + margin-top: 0; +} +[data-tips].bottom-tip:hover:after, +[data-tips].bottom-tip:hover:before { + top: 100%; + left: 0; +} +[data-tips].bottom-tip:hover:before { + left: 15px; +} +/* Right tip */ +[data-tips].right-tip:after, +[data-tips].right-tip:before { + -webkit-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; + -moz-transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; + transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out; + top: -9999px; + left: 96%; + margin-left: 12px; +} +[data-tips].right-tip:before { + border-color: transparent #3276B1 transparent transparent; + margin-left: 0; +} +[data-tips].right-tip:hover:after, +[data-tips].right-tip:hover:before { + left: 100%; + top: 0; +} + +[data-tips].right-tip:hover:before { + top: 7px; +} +/* Left tip */ +[data-tips].left-tip:after, +[data-tips].left-tip:before { + -webkit-transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; + -moz-transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; + transition: right 0.25s ease-in-out, opacity 0.25s ease-in-out; + top: -9999px; + right: 96%; + margin-right: 12px; +} +[data-tips].left-tip:before { + border-color: transparent transparent transparent #3276B1; + margin-right: 0; +} +[data-tips].left-tip:hover:after, +[data-tips].left-tip:hover:before { + right: 100%; + top: 0; +} +[data-tips].left-tip:hover:before { + top: 7px; +} + + +span#min { + background-image: url(/betatesting/wp-content/themes/dynamik/css/images/brunelwantsyou_hover.jpg); } \ No newline at end of file diff --git a/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.min.css b/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.min.css index e691788..e970e7a 100644 --- a/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.min.css +++ b/400-SOURCECODE/AIAHTML5.Web/libs/jquery/jquery_plugin/jsPanel/jspanel/jquery.jspanel.min.css @@ -1,2 +1,2 @@ -@font-face{font-family:jsglyphregular;src:url(fonts/jsglyph.eot);src:url(fonts/jsglyph.eot?#iefix) format('embedded-opentype'),url(fonts/jsglyph.woff2) format('woff2'),url(fonts/jsglyph.woff) format('woff'),url(fonts/jsglyph.ttf) format('truetype'),url(fonts/jsglyph.svg#jsglyphregular) format('svg');font-weight:400;font-style:normal}.jsglyph{font-family:jsglyphregular}.jsglyph-minimize:before{content:"\e001"}.jsglyph-maximize:before{content:"\e002"}.jsglyph-chevron-up:before{content:"\e003"}.jsglyph-chevron-down:before{content:"\e004"}.jsglyph-normalize:before{content:"\e005"}.jsglyph-tick:before{content:"\e006"}.jsglyph-remove:before{content:"\e007"}.jsglyph-chevron-right:before{content:"\e008"}.jsglyph-chevron-left:before{content:"\e009"}.jsglyph-plus:before{content:"\e00a"}.jsglyph-minus:before{content:"\e00b"}.jsglyph-trashcan:before{content:"\e00c"}.jsglyph-square-info:before{content:"\e00d"}.jsglyph-square-exclamationmark:before{content:"\e00e"}.jsglyph-delete:before{content:"\e00f"}.jsglyph-mail:before{content:"\e010"}.jsglyph-envelope:before{content:"\e011"}.jsglyph-play:before{content:"\e012"}.jsglyph-forward:before{content:"\e013"}.jsglyph-backward:before{content:"\e014"}.jsglyph-step-forward:before{content:"\e015"}.jsglyph-step-backward:before{content:"\e016"}.jsglyph-fast-forward:before{content:"\e017"}.jsglyph-fast-backward:before{content:"\e018"}.jsglyph-eject:before{content:"\e019"}.jsglyph-stop:before{content:"\e01a"}.jsglyph-pause:before{content:"\e01b"}.jsglyph-arrow-right:before{content:"\e01c"}.jsglyph-arrow-left:before{content:"\e01d"}.jsglyph-arrow-up:before{content:"\e01e"}.jsglyph-arrow-down:before{content:"\e01f"}.jsglyph-star-halffull:before{content:"\e020"}.jsglyph-star:before{content:"\e021"}.jsglyph-star-empty:before{content:"\e022"}.jsglyph-arrow-right-hollow:before{content:"\e023"}.jsglyph-arrow-left-hollow:before{content:"\e024"}.jsglyph-arrow-up-hollow:before{content:"\e025"}.jsglyph-arrow-down-hollow:before{content:"\e026"}.jsglyph-square-questionmark:before{content:"\e027"}.jsglyph-circle-info:before{content:"\e028"}.jsglyph-circle-exclamationmark:before{content:"\e029"}.jsglyph-circle-questionmark:before{content:"\e02a"}.jsglyph-circle2-info:before{content:"\e02b"}.jsglyph-circle2-exclamationmark:before{content:"\e02c"}.jsglyph-circle2-questionmark:before{content:"\e02d"}.jsglyph-resize-handle:before{content:"\e02e"}.jsglyph-resize-handle-2:before{content:"\e02f"}.jsglyph-pencil:before{content:"\e030"}.jsglyph-refresh:before{content:"\e031"}.jsglyph-volume-off:before{content:"\e032"}.jsglyph-volume-up:before{content:"\e033"}.jsglyph-volume-down:before{content:"\e034"}.jsglyph-link:before{content:"\e035"}.jsglyph-eye-open:before{content:"\e036"}.jsglyph-eye-slash:before{content:"\e037"}.jsglyph-power-on:before{content:"\e038"}.jsglyph-cog:before{content:"\e039"}.jsglyph-cog2:before{content:"\e03a"}.jsglyph-torso:before{content:"\e03b"}.jsglyph-people:before{content:"\e03c"}.jsglyph-torso-female:before{content:"\e03d"}.jsglyph-people-female:before{content:"\e03e"}.jsglyph-torso-male-female:before{content:"\e03f"}.jsglyph-torso-female-male:before{content:"\e040"}.jsglyph-torso-hollow:before{content:"\e041"}.jsglyph-cog3:before{content:"\e042"}.jsglyph-tools:before{content:"\e043"}.jsglyph-home:before{content:"\e044"}.jsglyph-login:before{content:"\e045"}.jsglyph-logout:before{content:"\e046"}.jsglyph-download:before{content:"\e047"}.jsglyph-upload:before{content:"\e048"}.jsglyph-reload:before{content:"\e049"}.jsglyph-lock:before{content:"\e04a"}.jsglyph-unlock:before{content:"\e04b"}.jsglyph-save:before{content:"\e04c"}.jsglyph-wrench:before{content:"\e04d"}.jsglyph-search:before{content:"\e04e"}.jsglyph-zoom-in:before{content:"\e04f"}.jsglyph-zoom-out:before{content:"\e050"}.jsglyph-bars:before{content:"\e051"}.jsglyph-marker:before{content:"\e052"}.jsglyph-resize-handle-left:before{content:"\e053"}.jsglyph-resize-handle-2-left:before{content:"\e054"}.jsglyph-edit:before{content:"\e055"} +@font-face{font-family:jsglyphregular;src:url(fonts/jsglyph.eot);src:url(fonts/jsglyph.eot?#iefix) format('embedded-opentype'),url(fonts/jsglyph.woff2) format('woff2'),url(fonts/jsglyph.woff) format('woff'),url(fonts/jsglyph.ttf) format('truetype'),url(fonts/jsglyph.svg#jsglyphregular) format('svg');font-weight:400;font-style:normal}.jsglyph{font-family:jsglyphregular}.jsglyph-minimize:before{content:"\e001"}.jsglyph-maximize:before{content:"\e002"}.jsglyph-chevron-up:before{content:"\e003"}.jsglyph-chevron-down:before{content:"\e004"}.jsglyph-normalize:before{content:"\e005"}.jsglyph-tick:before{content:"\e006"}.jsglyph-remove:before{content:"\e007"}.jsglyph-chevron-right:before{content:"\e008"}.jsglyph-chevron-left:before{content:"\e009"}.jsglyph-plus:before{content:"\e00a"}.jsglyph-minus:before{content:"\e00b"}.jsglyph-trashcan:before{content:"\e00c"}.jsglyph-square-info:before{content:"\e00d"}.jsglyph-square-exclamationmark:before{content:"\e00e"}.jsglyph-delete:before{content:"\e00f"}.jsglyph-mail:before{content:"\e010"}.jsglyph-envelope:before{content:"\e011"}.jsglyph-play:before{content:"\e012"}.jsglyph-forward:before{content:"\e013"}.jsglyph-backward:before{content:"\e014"}.jsglyph-step-forward:before{content:"\e015"}.jsglyph-step-backward:before{content:"\e016"}.jsglyph-fast-forward:before{content:"\e017"}.jsglyph-fast-backward:before{content:"\e018"}.jsglyph-eject:before{content:"\e019"}.jsglyph-stop:before{content:"\e01a"}.jsglyph-pause:before{content:"\e01b"}.jsglyph-arrow-right:before{content:"\e01c"}.jsglyph-arrow-left:before{content:"\e01d"}.jsglyph-arrow-up:before{content:"\e01e"}.jsglyph-arrow-down:before{content:"\e01f"}.jsglyph-star-halffull:before{content:"\e020"}.jsglyph-star:before{content:"\e021"}.jsglyph-star-empty:before{content:"\e022"}.jsglyph-arrow-right-hollow:before{content:"\e023"}.jsglyph-arrow-left-hollow:before{content:"\e024"}.jsglyph-arrow-up-hollow:before{content:"\e025"}.jsglyph-arrow-down-hollow:before{content:"\e026"}.jsglyph-square-questionmark:before{content:"\e027"}.jsglyph-circle-info:before{content:"\e028"}.jsglyph-circle-exclamationmark:before{content:"\e029"}.jsglyph-circle-questionmark:before{content:"\e02a"}.jsglyph-circle2-info:before{content:"\e02b"}.jsglyph-circle2-exclamationmark:before{content:"\e02c"}.jsglyph-circle2-questionmark:before{content:"\e02d"}.jsglyph-resize-handle:before{content:"\e02e"}.jsglyph-resize-handle-2:before{content:"\e02f"}.jsglyph-pencil:before{content:"\e030"}.jsglyph-refresh:before{content:"\e031"}.jsglyph-volume-off:before{content:"\e032"}.jsglyph-volume-up:before{content:"\e033"}.jsglyph-volume-down:before{content:"\e034"}.jsglyph-link:before{content:"\e035"}.jsglyph-eye-open:before{content:"\e036"}.jsglyph-eye-slash:before{content:"\e037"}.jsglyph-power-on:before{content:"\e038"}.jsglyph-cog:before{content:"\e039"}.jsglyph-cog2:before{content:"\e03a"}.jsglyph-torso:before{content:"\e03b"}.jsglyph-people:before{content:"\e03c"}.jsglyph-torso-female:before{content:"\e03d"}.jsglyph-people-female:before{content:"\e03e"}.jsglyph-torso-male-female:before{content:"\e03f"}.jsglyph-torso-female-male:before{content:"\e040"}.jsglyph-torso-hollow:before{content:"\e041"}.jsglyph-cog3:before{content:"\e042"}.jsglyph-tools:before{content:"\e043"}.jsglyph-home:before{content:"\e044"}.jsglyph-login:before{content:"\e045"}.jsglyph-logout:before{content:"\e046"}.jsglyph-download:before{content:"\e047"}.jsglyph-upload:before{content:"\e048"}.jsglyph-reload:before{content:"\e049"}.jsglyph-lock:before{content:"\e04a"}.jsglyph-unlock:before{content:"\e04b"}.jsglyph-save:before{content:"\e04c"}.jsglyph-wrench:before{content:"\e04d"}.jsglyph-search:before{content:"\e04e"}.jsglyph-zoom-in:before{content:"\e04f"}.jsglyph-zoom-out:before{content:"\e050"}.jsglyph-bars:before{content:"\e051"}.jsglyph-marker:before{content:"\e052"}.jsglyph-resize-handle-left:before{content:"\e053"}.jsglyph-resize-handle-2-left:before{content:"\e054"}.jsglyph-edit:before{content:"\e055"} .jsPanel,.jsPanel-hdr,.jsPanel-hdr-toolbar{box-sizing:border-box}.jsPanel.jsPanel-theme-dark,.jsPanel.jsPanel-theme-default,.jsPanel.jsPanel-theme-light,.jsPanel.jsPanel-theme-medium{box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.4)}.jsPanel-content.jsPanel-theme-autumnbrown,.jsPanel-content.jsPanel-theme-autumngreen,.jsPanel-content.jsPanel-theme-autumnred,.jsPanel-content.jsPanel-theme-danger,.jsPanel-content.jsPanel-theme-dark,.jsPanel-content.jsPanel-theme-default,.jsPanel-content.jsPanel-theme-info,.jsPanel-content.jsPanel-theme-light,.jsPanel-content.jsPanel-theme-medium,.jsPanel-content.jsPanel-theme-primary,.jsPanel-content.jsPanel-theme-warning{font-family:tahoma,arial,verdana,sans-serif;outline:#bbb solid 1px}.jsPanel,.jsPanel-content,.jsPanel-hdr-l,.jsPanel-hdr-r,.jsPanel-hdr-r span img{margin:0;padding:0;border:0;font-size:100%;line-height:1.5em;vertical-align:baseline}.jsPanel{overflow:hidden;position:absolute;border-radius:3px;z-index:100}.jsPanel-hdr{min-height:26px;padding:2px 0 4px 2px}.jsPanel-hdr *{font-size:16px}.jsPanel-hdr-r{position:absolute;top:0;right:0}h3.jsPanel-title{float:left;width:calc(100% - 90px);white-space:nowrap;overflow:hidden;text-align:left;text-overflow:ellipsis;margin:0;font-variant:small-caps;font-weight:400;cursor:move;min-height:20px;padding:0 5px}.jsPanel-hdr-r div{float:right;cursor:pointer;margin-left:1px;width:auto;height:auto;min-width:20px;min-height:20px;overflow:hidden}.jsPanel-btn-close{background:url(images/icon-sprite-20x20.jpg) 20px 0 repeat no-repeat}.jsPanel-btn-max{background:url(images/icon-sprite-20x20.jpg) 40px 0 repeat no-repeat}.jsPanel-btn-norm{background:url(images/icon-sprite-20x20.jpg) 60px 0 repeat no-repeat;display:none}.jsPanel-btn-min{background:url(images/icon-sprite-20x20.jpg) 80px 0 repeat no-repeat}.jsPanel-btn-small{background:url(images/icon-sprite-20x20.jpg) 100px 0 repeat no-repeat}.jsPanel-btn-smallrev{background:url(images/icon-sprite-20x20.jpg) 120px 0 repeat no-repeat;display:none}.jsPanel-hdr-toolbar{clear:both;font-size:16px;margin-top:23px;height:auto;padding:0 5px;width:auto}.jsPanel-content,.jsPanel-ftr{box-sizing:border-box;font-size:12px}.jsPanel-hdr-toolbar img{cursor:pointer;margin-bottom:4px;margin-right:5px}.jsPanel-content{position:relative;width:100%;overflow:hidden}.jsPanel-ftr{cursor:move;display:none;height:auto;padding:2px 2px 2px 5px;text-align:right}.jsPanel-ftr button{margin:5px}.jsPanel-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}#jsPanel-min-container{position:fixed;left:0;bottom:0;width:auto;height:28px;background:0 0;z-index:9999}.jsPanel-backdrop,.jsPanel-backdrop-inner{position:absolute;width:100%}.jsPanel-backdrop{top:0;left:0;z-index:10000;background:rgba(0,0,0,.7)}.jsPanel.jsPanel-theme-default{background:#fff}.jsPanel-hdr.jsPanel-theme-default{color:#000;font-family:tahoma,arial,verdana,sans-serif;font-weight:400}.jsPanel-hdr.jsPanel-theme-default h3{color:#000}.jsPanel-hdr.jsPanel-theme-default h3 small{color:#000;font-size:65%}.jsPanel-content.jsPanel-theme-default{background:#FFF;color:#000}.jsPanel-ftr.jsPanel-theme-default{font-size:12px;height:auto;padding:2px 2px 2px 5px;text-align:right}.jsPanel-theme-default .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-light{background:#f1f1f1}.jsPanel-hdr.jsPanel-theme-light{color:#000;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#f1f1f1}.jsPanel-hdr.jsPanel-theme-light h3{color:#000}.jsPanel-hdr.jsPanel-theme-light h3 small{color:#000;font-size:65%}.jsPanel-content.jsPanel-theme-light{background:#FFF;color:#000}.jsPanel-ftr.jsPanel-theme-light{color:#000;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#f1f1f1}.jsPanel-theme-light .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-medium{background:#c2c2c2}.jsPanel-hdr.jsPanel-theme-medium{color:#000;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#c2c2c2}.jsPanel-hdr.jsPanel-theme-medium h3{color:#000}.jsPanel-hdr.jsPanel-theme-medium h3 small{color:#000;font-size:65%}.jsPanel-content.jsPanel-theme-medium{background:#fff;color:#000}.jsPanel-ftr.jsPanel-theme-medium{color:#000;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#c2c2c2}.jsPanel-theme-medium .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-dark{background:#828282}.jsPanel-hdr.jsPanel-theme-dark{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#828282}.jsPanel-hdr.jsPanel-theme-dark h3{color:#fff}.jsPanel-hdr.jsPanel-theme-dark h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-dark{background:#fff;color:#000}.jsPanel-ftr.jsPanel-theme-dark{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#828282}.jsPanel-theme-dark .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-black{background:linear-gradient(#4a4a4a 0,#000 100%) #4a4a4a;background:-ms-linear-gradient(#4a4a4a 0,#000 100%) #4a4a4a;box-shadow:0 0 3px #333}.jsPanel.jsPanel-theme-autumnbrown,.jsPanel.jsPanel-theme-autumngreen,.jsPanel.jsPanel-theme-autumnred,.jsPanel.jsPanel-theme-danger,.jsPanel.jsPanel-theme-info,.jsPanel.jsPanel-theme-primary,.jsPanel.jsPanel-theme-success,.jsPanel.jsPanel-theme-warning,.jsPanel.panel-danger,.jsPanel.panel-default,.jsPanel.panel-info,.jsPanel.panel-primary,.jsPanel.panel-success,.jsPanel.panel-warning{box-shadow:0 0 6px rgba(0,33,50,.1),0 7px 25px rgba(17,38,60,.4)}.jsPanel-hdr.jsPanel-theme-black{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:0 0}.jsPanel-hdr.jsPanel-theme-black h3{color:#fff}.jsPanel-hdr.jsPanel-theme-black h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-black{background:0 0;color:#c3c3c3}.jsPanel-ftr.jsPanel-theme-black{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:0 0}.jsPanel-theme-black .ui-icon-gripsmall-diagonal-se{color:#fff}.jsPanel.jsPanel-theme-primary{background:#fff}.jsPanel-hdr.jsPanel-theme-primary{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#2FA4E7}.jsPanel-hdr.jsPanel-theme-primary h3{color:#fff}.jsPanel-hdr.jsPanel-theme-primary h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-primary{background:#fff;color:#000}.jsPanel-theme-primary .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-success{background:#fff}.jsPanel-hdr.jsPanel-theme-success{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#818D43}.jsPanel-hdr.jsPanel-theme-success h3{color:#fff}.jsPanel-hdr.jsPanel-theme-success h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-success{background:#fff;color:#000;font-family:tahoma,arial,verdana,sans-serif;outline:#bbb solid 1px}.jsPanel-theme-successt .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-info{background:#fff}.jsPanel-hdr.jsPanel-theme-info{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#033C73}.jsPanel-hdr.jsPanel-theme-info h3{color:#fff}.jsPanel-hdr.jsPanel-theme-info h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-info{background:#fff;color:#000}.jsPanel-theme-info .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-warning{background:#fff}.jsPanel-hdr.jsPanel-theme-warning{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#DD5600}.jsPanel-hdr.jsPanel-theme-warning h3{color:#fff}.jsPanel-hdr.jsPanel-theme-warning h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-warning{background:#fff;color:#000}.jsPanel-theme-warning .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-danger{background:#fff}.jsPanel-hdr.jsPanel-theme-danger{color:#fff;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#C71C22}.jsPanel-hdr.jsPanel-theme-danger h3{color:#fff}.jsPanel-hdr.jsPanel-theme-danger h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-danger{background:#fff;color:#000}.jsPanel-theme-danger .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-autumngreen{background:#eee}.jsPanel-hdr.jsPanel-theme-autumngreen{color:#c4bd8e;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#7d7e51}.jsPanel-hdr.jsPanel-theme-autumngreen h3{color:#c4bd8e}.jsPanel-hdr.jsPanel-theme-autumngreen h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-autumngreen{background:#FFF;color:#6e6449}.jsPanel-ftr.jsPanel-theme-autumngreen{background:linear-gradient(to bottom,rgba(125,126,81,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(125,126,81,.65) 0,rgba(0,0,0,0) 100%);color:#6e6449}.jsPanel-theme-autumngreen .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-autumnbrown{background:#eee}.jsPanel-hdr.jsPanel-theme-autumnbrown{color:#e9ce87;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#8a5b33}.jsPanel-hdr.jsPanel-theme-autumnbrown h3{color:#e9ce87}.jsPanel-hdr.jsPanel-theme-autumnbrown h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-autumnbrown{background:#FFF;color:#6e6449}.jsPanel-ftr.jsPanel-theme-autumnbrown{background:linear-gradient(to bottom,rgba(138,91,51,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(138,91,51,.65) 0,rgba(0,0,0,0) 100%);color:#6e6449}.jsPanel-theme-autumnbrown .ui-icon-gripsmall-diagonal-se{color:#000}.jsPanel.jsPanel-theme-autumnred{background:#eee}.jsPanel-hdr.jsPanel-theme-autumnred{color:#e9ce87;font-family:tahoma,arial,verdana,sans-serif;font-weight:400;background:#c6710a}.jsPanel-hdr.jsPanel-theme-autumnred h3{color:#e9ce87}.jsPanel-hdr.jsPanel-theme-autumnred h3 small{color:#fff;font-size:65%}.jsPanel-content.jsPanel-theme-autumnred{background:#FFF;color:#6e6449}.jsPanel-ftr.jsPanel-theme-autumnred{background:linear-gradient(to bottom,rgba(198,113,10,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(198,113,10,.65) 0,rgba(0,0,0,0) 100%);color:#6e6449}.jsPanel-theme-autumnred .ui-icon-gripsmall-diagonal-se{color:#000}.ui-icon-gripsmall-diagonal-se{background:rgba(0,0,0,0);color:#000;font-family:jsglyphregular;font-size:16px;line-height:16px}.ui-icon-gripsmall-diagonal-se:before{content:"\e02f"}.ui-resizable-handle.ui-resizable-se.ui-icon.ui-icon-gripsmall-diagonal-se{text-indent:0;bottom:2px}.jsPanel-tooltip-wrapper{position:relative;display:inline-block;margin:0;padding:0;border:none;background:0 0}.jsPanel-tooltip-wrapper .jsPanel{border-radius:4px}.jsPanel-corner-bottom,.jsPanel-corner-left,.jsPanel-corner-right,.jsPanel-corner-top{width:0;height:0;border:12px solid transparent;position:absolute}.jsPanel-corner-top{border-top-width:10px}.jsPanel-corner-right{border-right-width:10px}.jsPanel-corner-bottom{border-bottom-width:10px}.jsPanel-corner-left{border-left-width:10px}.jsPanel-hint{margin-bottom:4px}.jsPanel-hint-close{float:right;font-size:1.5em;margin:4px 5px 0 0;cursor:pointer}.jsPanel-hint-content.jsPanel-hint-default{background:#fff;border:2px solid #222;color:#222;text-shadow:1px 1px 1px #789}.jsPanel-hint-content.jsPanel-hint-light{background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(250,250,250,.65) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(250,250,250,.65) 100%);color:#000}.jsPanel-hint-content.jsPanel-hint-medium{background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(130,130,130,1) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(130,130,130,1) 100%);color:#fff}.jsPanel-hint-content.jsPanel-hint-dark{background:linear-gradient(to bottom,rgba(181,189,200,1) 0,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%);background:-ms-linear-gradient(top,rgba(181,189,200,1) 0,rgba(130,140,149,1) 36%,rgba(40,52,59,1) 100%);color:#fff}.jsPanel-hint-content.jsPanel-hint-autumngreen{background:linear-gradient(to bottom,rgba(125,126,81,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(125,126,81,.65) 0,rgba(0,0,0,0) 100%);color:#fff}.jsPanel-hint-content.jsPanel-hint-autumnbrown{background:linear-gradient(to bottom,rgba(138,91,51,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(138,91,51,.65) 0,rgba(0,0,0,0) 100%);color:#fff}.jsPanel-hint-content.jsPanel-hint-autumnred{background:linear-gradient(to bottom,rgba(198,113,10,.65) 0,rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top,rgba(198,113,10,.65) 0,rgba(0,0,0,0) 100%);color:#fff}.jsPanel-hint-content.jsPanel-hint-primary{background:#82C8F1;border:5px solid #02436A;color:#02436A;text-shadow:2px 2px 2px #fff}.jsPanel-hint-content.jsPanel-hint-info{background:#4594c3;border:5px solid #033c73;color:#fff;text-shadow:2px 2px 2px #033c73}.jsPanel-hint-content.jsPanel-hint-success{background:#C3EA99;border:5px solid #034E26;color:#356304;text-shadow:2px 2px 2px #aaa}.jsPanel-hint-content.jsPanel-hint-warning{background:#FFC7A3;border:5px solid #DD5600;color:#AD6537;text-shadow:2px 2px 2px #fff}.jsPanel-hint-content.jsPanel-hint-danger{background:#fc7073;border:5px solid #c71c22;color:#fff;text-shadow:2px 2px 2px #c71c22}[data-tips]{position:relative;text-decoration:none}[data-tips]:after,[data-tips]:before{position:absolute;z-index:100;opacity:0}[data-tips]:after{content:attr(data-tips);height:25px;line-height:25px;padding:0 10px;font-size:12px;text-align:center;color:#fff;background:#3276B1;border-radius:4px;-moz-box-shadow:0 0 5px rgba(0,0,0,.3);-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3);white-space:nowrap;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}[data-tips]:before{content:"";width:0;height:0;border-width:6px;border-style:solid}[data-tips]:hover:after,[data-tips]:hover:before{opacity:1}[data-tips].top-tip:after,[data-tips].top-tip:before{-webkit-transition:bottom .25s ease-in-out,opacity .25s ease-in-out;-moz-transition:bottom .25s ease-in-out,opacity .25s ease-in-out;transition:bottom .25s ease-in-out,opacity .25s ease-in-out;bottom:90%;left:-9999px;margin-bottom:12px}[data-tips].top-tip:before{border-color:#3276B1 transparent transparent;margin-bottom:0}[data-tips].top-tip:hover:after,[data-tips].top-tip:hover:before{bottom:100%;left:0}[data-tips].top-tip:hover:before{left:15px}[data-tips].bottom-tip:after,[data-tips].bottom-tip:before{-webkit-transition:top .25s ease-in-out,opacity .25s ease-in-out;-moz-transition:top .25s ease-in-out,opacity .25s ease-in-out;transition:top .25s ease-in-out,opacity .25s ease-in-out;top:90%;left:-9999px;margin-top:12px}[data-tips].bottom-tip:before{border-color:transparent transparent #3276B1;margin-top:0}[data-tips].bottom-tip:hover:after,[data-tips].bottom-tip:hover:before{top:100%;left:0}[data-tips].bottom-tip:hover:before{left:15px}[data-tips].right-tip:after,[data-tips].right-tip:before{-webkit-transition:left .25s ease-in-out,opacity .25s ease-in-out;-moz-transition:left .25s ease-in-out,opacity .25s ease-in-out;transition:left .25s ease-in-out,opacity .25s ease-in-out;top:-9999px;left:96%;margin-left:12px}[data-tips].right-tip:before{border-color:transparent #3276B1 transparent transparent;margin-left:0}[data-tips].right-tip:hover:after,[data-tips].right-tip:hover:before{left:100%;top:0}[data-tips].right-tip:hover:before{top:7px}[data-tips].left-tip:after,[data-tips].left-tip:before{-webkit-transition:right .25s ease-in-out,opacity .25s ease-in-out;-moz-transition:right .25s ease-in-out,opacity .25s ease-in-out;transition:right .25s ease-in-out,opacity .25s ease-in-out;top:-9999px;right:96%;margin-right:12px}[data-tips].left-tip:before{border-color:transparent transparent transparent #3276B1;margin-right:0}[data-tips].left-tip:hover:after,[data-tips].left-tip:hover:before{right:100%;top:0}[data-tips].left-tip:hover:before{top:7px} \ No newline at end of file