* fixed #194 PHP 5.6 error

* - closed #102 added "set waypoint/destination" context menu to route finder module
- update "Select2" 4.0.0 -> 4.0.3
- update "Font Awesome" 4.6.1 -> 4.6.3

* - added *.js files for develop branch

* - closed #195 fixed "BASE" dir for subDir installations
- fixed "Home" menu link

* -  #195 improved js load path

* - added "clear cache" function for manually cache clearing to /setup #200 #105 #158
- added cache size information to /setup
- added current pathfinder  "VERSION" to /setup
- updated "requireJs" 2.1.20 ->2.2.0
- removed unnecessary page cache timings from static templates (page cache)

* - added "document_root", "port", "protocol" and "PHP framework version" to /setup page
- added new "shattered" wormhole types to "signature table", closed #182, #179

* - added new "delete old signatures" option to "signature reader" dialog, closed #95

* - added new housekeeping cronjob für cached files, closed #200
- added new cache size information to /setup page

* - fixed signature groupId/typeId "overwriting" for already known signatures. closed #207
- improved system search dialog. Added trim(); before "api/signatures-> search" request

* updated README.me

* fixed PHP error "default object from empty value", closed #209

* reduced image file size

* - added local storage (IndexedDB)
- added local storage for map scroll position. closed #69

* - added "notice" panel for upcoming release information
- improved layout for "release dialog" (GitHub API)
- improved pagespeed (removed render blocking javascripts)
- improved map scrollbar configuration
- improved Chrome browser custom scrollbar layout
- removed "sign up" buttons from "map panels", closed #214

* - fixed some session and cookie  bugs

* - added new requirement check for `max_input_vars` to /setup URL, closed #224

* - fixed isWormhole(); bug

* -v1.1.1 added js build files
This commit is contained in:
Mark Friedrich
2016-07-05 20:44:12 +02:00
committed by GitHub
parent e6cd694df6
commit e01f299d2b
120 changed files with 1547 additions and 807 deletions

View File

@@ -1,5 +1,5 @@
/*!
* Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/

View File

@@ -16,6 +16,7 @@
white-space: nowrap;
text-align: center;
background-color: $badge-bg;
text-indent: initial;
@include border-radius($badge-border-radius);

View File

@@ -33,7 +33,7 @@
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: ceil(($font-size-base * 1.125));
font-size: 13px;
color: inherit;
> a {

View File

@@ -28,6 +28,14 @@ input, select{
}
}
// "fake" button (no user interaction)
.btn-fake{
border: none;
text-align: left;
color: $gray-lighter !important;
background-color: $gray !important;
}
// drag&drop zone
.pf-form-dropzone{
border: 2px dashed $gray-darker;

View File

@@ -523,6 +523,7 @@
.slide-content{
border-radius: 5px;
pointer-events: none; // hide show "title" attr on hover
}
// title style
@@ -565,6 +566,11 @@
padding: 20px 15px;
min-height: 205px;
line-height: 22px;
.list-unstyled.text-left li{
text-indent: -1em;
padding-left: 1.5em;
}
}
// table

View File

@@ -47,7 +47,42 @@ em{
padding: 0 !important;
}
// help elements ====================================================
// scroll bar (webkit only) =======================================================================
::-webkit-scrollbar {
width: 16px;
height: 16px;
}
::-webkit-scrollbar-track {
background-color: $gray-darker;
border-left: 1px solid $gray-dark;
border-radius: 2px;
@include transition( background-color .5s );
}
::-webkit-scrollbar-thumb {
height: 6px;
border: 5px solid transparent;
background-clip: padding-box;
-webkit-border-radius: 8px;
background-color: lighten($gray, 30%);
&:hover{
background-color: lighten($gray, 40%);
}
}
::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
// help elements ==================================================================================
.pf-help{
cursor: pointer; // fallback
cursor: help;
@@ -60,7 +95,7 @@ em{
}
}
// icon buttons =====================================================
// icon buttons ===================================================================================
.pf-dialog-icon-button{
cursor: pointer;
margin-top: 2px;
@@ -81,12 +116,12 @@ em{
}
// alert messages ===================================================
// alert messages =================================================================================
.alert{
will-change: opacity, transform;
}
// form fields custom styles ========================================
// form fields custom styles ======================================================================
.editable-input{
optgroup[label]{
background-color: $gray;
@@ -108,8 +143,7 @@ select:active, select:hover {
outline-color: red
}
// select2 custom template ==========================================
// select2 custom template ========================================================================
.select2-results{
[class*="col-"]{
line-height: 22px;
@@ -132,7 +166,7 @@ select:active, select:hover {
}
}
// global datatable styles ==========================================
// global datatable styles ========================================================================
.dataTable{
th{
@@ -195,7 +229,7 @@ select:active, select:hover {
}
// table styles =====================================================
// table styles ===================================================================================
table{
tr{
&.collapsing{
@@ -228,7 +262,7 @@ table{
visibility: hidden;
}
// laoding indicator overlay =====================================
// landing indicator overlay ======================================================================
.pf-loading-overlay{
position: absolute;
width: 100%;
@@ -257,7 +291,7 @@ table{
}
}
// navbar li ====================================================
// navbar li =====================================================================================
.navbar-nav {
li{
&:hover, &.active{
@@ -289,7 +323,7 @@ table{
cursor: pointer;
}
// page menu =====================================================
// page menu ======================================================================================
.pf-site{
will-change: transform;
}
@@ -310,12 +344,12 @@ table{
}
}
// custom scrollbars =============================================
// custom scrollbars ==============================================================================
.mCSB_container, .mCSB_dragger{
will-change: top, left;
}
// log types =====================================================
// log types ======================================================================================
.pf-log-info{
@extend .txt-color-green;
}
@@ -328,7 +362,7 @@ table{
@extend .txt-color-red;
}
// map types =====================================================
// map types ======================================================================================
.pf-map-type-private{
color: $indigo;
}
@@ -345,7 +379,7 @@ table{
color: $teal-lighter;
}
// maps module ===================================================
// maps module ====================================================================================
#pf-map-module{
margin: 20px 10px 0 10px;
@@ -382,7 +416,7 @@ table{
}
}
// Tab Content Body Grid ========================================
// Tab Content Body Grid ==========================================================================
.pf-map-content-row{
margin-top: 10px;
padding-bottom: 40px; // space for footer
@@ -429,7 +463,7 @@ table{
}
// User status =================================================
// User status ====================================================================================
.pf-user-status{
color: $red-darker;
}
@@ -446,8 +480,7 @@ table{
color: $indigo;
}
// WH effects ==================================================
// WH effects =====================================================================================
.pf-system-effect{
display: none; // if effect is active it will be overwritten
cursor: default;
@@ -484,7 +517,7 @@ table{
display: inline-block;
}
// system info status ================================================
// system info status =============================================================================
.pf-system-info-rally{
.pf-system-head{
background-color: $pink-darker;
@@ -506,7 +539,7 @@ table{
}
// system security status ============================================
// system security status =========================================================================
.pf-system-security-0-0{
color: $system-color-sec-0-0;
@@ -552,7 +585,7 @@ table{
color: $system-color-sec-1-0;
}
// system security level =============================================
// system security level ==========================================================================
.pf-system-sec{
margin-right: 5px;
@@ -588,7 +621,7 @@ table{
color: $indigo;
}
// system status ======================================================
// system status ==================================================================================
.pf-system-status-friendly{
border-color: $blue !important;
@@ -643,7 +676,7 @@ table{
}
}
// system effect info dialog ==========================================
// system effect info dialog ======================================================================
.pf-system-effect-dialog-wrapper, .pf-jump-info-dialog{
.table{
margin: 15px 0;
@@ -731,7 +764,7 @@ table{
}
// global tooltip settings ======================================
// global tooltip settings ========================================================================
.tooltip-inner{
color: $green;
background-color: $gray;
@@ -743,7 +776,6 @@ table{
.modal{
// tooltips within modals
.tooltip{
// higher z-index
@@ -754,8 +786,6 @@ table{
background-color: $gray-lighter;
}
}
}
.tooltip.top .tooltip-arrow{
@@ -774,9 +804,8 @@ table{
border-left-color: $gray-light;
}
// global popover settings ======================================
// global popover settings ========================================================================
.popover{
// on top of modals even if they are attached to <body>
z-index: $zindex-modal + 10;
@@ -802,7 +831,62 @@ table{
}
}
// dynamic area (e.g. for loading animation) ====================
// specific "Pathfinder" Popover settings ---------------------------------------------------------
.pf-popover{
display: initial;
.popover-content{
padding: 0; // overwrite default popover padding
}
h6{
white-space: nowrap;
margin-right: 50px;
@include clearfix();
}
.well{
margin-top: 7px;
margin-bottom: 10px;
}
.list-group{
margin: 0;
.list-group-item{
color: $gray-dark;
&:hover{
color: $gray-darkest;
}
&.disabled{
background-color: $gray;
color: $gray-light;
cursor: not-allowed;
}
img{
width: 30px;
margin: -8px 10px -6px -8px;
border-radius: 0; // overwrite "global"
}
i{
margin-right: 20px;
}
}
}
}
// elements that are popover "triggers" (root elements) (e.g. open on right click)-----------------
td.pf-popover-trigger{
&:hover{
color: $teal;
}
}
// dynamic area (e.g. for loading animation) ======================================================
.pf-dynamic-area{
padding: 10px;
min-height: 100px;
@@ -820,12 +904,12 @@ table{
}
}
// svg logo =====================================================
// svg logo =======================================================================================
#pf-logo-wrapper{
display: block; // remove default height
}
// header =======================================================
// header =========================================================================================
#pf-head{
margin-bottom: 0px;
@@ -930,7 +1014,7 @@ table{
@include box-shadow(0 6px 12px rgba(0,0,0,.4));
}
// footer =======================================================
// footer =========================================================================================
#pf-footer{
position: absolute;
bottom: 0;

View File

@@ -1,54 +1,3 @@
// popover =================================================================
.pf-character-info-popover{
display: initial;
.popover-content{
padding: 0; // overwrite default popover padding
}
h6{
white-space: nowrap;
margin-right: 50px;
@include clearfix();
}
.well{
margin-top: 7px;
margin-bottom: 10px;
}
.list-group{
margin: 0;
.list-group-item{
color: $gray-dark;
&:hover{
color: $gray-darkest;
}
&.disabled{
background-color: $gray;
color: $gray-light;
cursor: not-allowed;
}
img{
width: 30px;
margin: -8px 10px -6px -8px;
border-radius: 0;
}
i{
margin-right: 20px;
}
}
}
}
// system info module ======================================================
.pf-system-info-module{

View File

@@ -58,6 +58,7 @@
padding: 8px;
position: relative;
background-color: $gray-dark;
font-size: 11px;
@include box-shadow(0 4px 10px rgba(0,0,0, 0.4));
@include border-radius(5px);
}

View File

@@ -438,7 +438,7 @@
.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; }
.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; }
.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; }
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }
.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; }
.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; }
.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; }
.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; }
@@ -488,6 +488,7 @@
.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; }
.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; }
.#{$fa-css-prefix}-ra:before,
.#{$fa-css-prefix}-resistance:before,
.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; }
.#{$fa-css-prefix}-ge:before,
.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; }
@@ -722,3 +723,11 @@
.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; }
.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; }
.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; }
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }
.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; }
.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; }
.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; }
.#{$fa-css-prefix}-google-plus-circle:before,
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; }
.#{$fa-css-prefix}-fa:before,
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; }

View File

@@ -4,9 +4,9 @@
$fa-font-path: "../fonts" !default;
$fa-font-size-base: 14px !default;
$fa-line-height-base: 1 !default;
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.1/fonts" !default; // for referencing Bootstrap CDN font files directly
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly
$fa-css-prefix: fa !default;
$fa-version: "4.6.1" !default;
$fa-version: "4.6.3" !default;
$fa-border-color: #eee !default;
$fa-inverse: #fff !default;
$fa-li-width: (30em / 14) !default;
@@ -240,6 +240,7 @@ $fa-var-external-link-square: "\f14c";
$fa-var-eye: "\f06e";
$fa-var-eye-slash: "\f070";
$fa-var-eyedropper: "\f1fb";
$fa-var-fa: "\f2b4";
$fa-var-facebook: "\f09a";
$fa-var-facebook-f: "\f09a";
$fa-var-facebook-official: "\f230";
@@ -274,6 +275,7 @@ $fa-var-filter: "\f0b0";
$fa-var-fire: "\f06d";
$fa-var-fire-extinguisher: "\f134";
$fa-var-firefox: "\f269";
$fa-var-first-order: "\f2b0";
$fa-var-flag: "\f024";
$fa-var-flag-checkered: "\f11e";
$fa-var-flag-o: "\f11d";
@@ -286,6 +288,7 @@ $fa-var-folder-o: "\f114";
$fa-var-folder-open: "\f07c";
$fa-var-folder-open-o: "\f115";
$fa-var-font: "\f031";
$fa-var-font-awesome: "\f2b4";
$fa-var-fonticons: "\f280";
$fa-var-fort-awesome: "\f286";
$fa-var-forumbee: "\f211";
@@ -317,6 +320,8 @@ $fa-var-glide-g: "\f2a6";
$fa-var-globe: "\f0ac";
$fa-var-google: "\f1a0";
$fa-var-google-plus: "\f0d5";
$fa-var-google-plus-circle: "\f2b3";
$fa-var-google-plus-official: "\f2b3";
$fa-var-google-plus-square: "\f0d4";
$fa-var-google-wallet: "\f1ee";
$fa-var-graduation-cap: "\f19d";
@@ -482,8 +487,9 @@ $fa-var-phone-square: "\f098";
$fa-var-photo: "\f03e";
$fa-var-picture-o: "\f03e";
$fa-var-pie-chart: "\f200";
$fa-var-pied-piper: "\f1a7";
$fa-var-pied-piper: "\f2ae";
$fa-var-pied-piper-alt: "\f1a8";
$fa-var-pied-piper-pp: "\f1a7";
$fa-var-pinterest: "\f0d2";
$fa-var-pinterest-p: "\f231";
$fa-var-pinterest-square: "\f0d3";
@@ -522,6 +528,7 @@ $fa-var-reorder: "\f0c9";
$fa-var-repeat: "\f01e";
$fa-var-reply: "\f112";
$fa-var-reply-all: "\f122";
$fa-var-resistance: "\f1d0";
$fa-var-retweet: "\f079";
$fa-var-rmb: "\f157";
$fa-var-road: "\f018";
@@ -636,6 +643,7 @@ $fa-var-text-width: "\f035";
$fa-var-th: "\f00a";
$fa-var-th-large: "\f009";
$fa-var-th-list: "\f00b";
$fa-var-themeisle: "\f2b2";
$fa-var-thumb-tack: "\f08d";
$fa-var-thumbs-down: "\f165";
$fa-var-thumbs-o-down: "\f088";
@@ -729,6 +737,7 @@ $fa-var-yc: "\f23b";
$fa-var-yc-square: "\f1d4";
$fa-var-yelp: "\f1e9";
$fa-var-yen: "\f157";
$fa-var-yoast: "\f2b1";
$fa-var-youtube: "\f167";
$fa-var-youtube-play: "\f16a";
$fa-var-youtube-square: "\f166";

View File

@@ -21,7 +21,7 @@
// load bootstrap with all its dependencies
@import "bootstrap";
// load Font Awesome 4.3 with all its dependencies
// load Font Awesome with all its dependencies
@import "font-awesome";
// Libraries (Remove if not needed)