Files
pathfinder/sass/layout/_system-info.scss
Mark Friedrich e01f299d2b v1.1.1 (#233)
* 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
2016-07-05 20:44:12 +02:00

177 lines
3.3 KiB
SCSS

// system info module ======================================================
.pf-system-info-module{
// breadcrumb
h5{
text-transform: capitalize;
line-height: 16px;
}
// dynamic area specific for the description field
.pf-system-info-description-area{
min-height: 123px;
// textarea system description
.pf-system-info-description{
width: 330px;
}
}
// system info table
.pf-system-info-table{
font-size: 11px;
white-space: nowrap;
}
}
// signature table module ==================================================
.pf-sig-table-module{
// delete signature button
.pf-sig-table-clear-button{
will-change: opacity, transform;
display: none;
}
.pf-sig-table{
font-size: 10px;
.pf-sig-table-edit-desc-text{
white-space: normal;
&.editable-empty{
border-bottom: none;
@extend .pf-dialog-icon-button;
}
}
.fa-plus{
@extend .pf-dialog-icon-button;
}
// textarea field
.pf-editable-description{
background-color: $gray-darker;
max-height: 50px;
}
.pf-sig-table-edit-name-input{
text-transform: uppercase;
}
}
}
// system graph module =====================================================
.pf-system-graph-module{
.pf-system-graph{
width: 100%;
height: 100px;
}
}
// route module ============================================================
.pf-system-route-module{
.pf-system-route-table{
width: 100%;
font-size: 11px;
td{
text-transform: capitalize;
& > .fa{
font-size: 10px;
}
.fa-refresh{
@extend .pf-dialog-icon-button;
}
}
}
}
// killboard module ========================================================
.pf-system-killboard-module{
.pf-system-killboard-graph-kills{
width: 100%;
height: 100px;
position: relative;
margin-bottom: 30px;
}
.pf-system-killboard-list{
padding-bottom: 10px;
border-bottom: 1px solid $gray-darker;
li{
margin-left: 0;
overflow: visible;
min-height: 50px;
will-change: margin-left;
@include transition( margin-left 0.12s cubic-bezier(0.30, 0.80, 0.80, 1.70));
// character headline
h5{
white-space: nowrap;
}
// ISK headline
h3{
width: 120px;
display: inline-block;
}
.pf-system-killboard-img-corp{
margin-right: 10px;
width: 16px;
}
.pf-system-killboard-img-ship{
width: 50px;
margin-right: 10px;
border: 1px solid $gray-darker;
transform: translateZ(1px);
will-change: border-color;
@include border-radius(25px);
@include transition( border-color 0.12s ease-out);
}
&:before{
content: "\f054";
font-family: FontAwesome;
position: absolute;
z-index: 10;
left: -25px;
top: 15px;
color: $teal;
opacity: 0;
will-change: opacity, left;
@include transition(all 0.12s ease-out);
}
&:hover{
margin-left: 20px;
.pf-system-killboard-img-ship{
border-color: $teal-lighter;
}
&:before{
opacity: 1;
left: -20px;
}
}
}
}
}