Files
pathfinder/sass/layout/_dialogs.scss
Exodus4D ac1a746f12 closed #131 new "route search" algorithm, added current map systems to live search, added refresh/update functionality for each found route, added bulk route refresh function, added "meta map" route search (search on multiple maps), added route "filters" (restrict search on "stargates", "wormholes", "jumpbridges"), added route "filter" for wormholes (reduced/critical wormholes)
closed #89 fixed "loop connections" on same system
#84 added error messages for "invalid" CREST "Client ID"
added "bootboxjs" (customized styled checkboxes/radio buttons) CSS only
"Font Awesome" version upgrade 4.4.0 -> 4.61
"Bootbox.js" version upgrade 4.3.0 -> 4.4.0
fixed "system dialog" (added responsive layout)
2016-04-24 19:59:17 +02:00

147 lines
2.9 KiB
SCSS

.modal-content {
// dialog headline ==========================================================
h2 {
font-family: $font-family-sans-serif;
letter-spacing: 0px;
font-size: $font-size-h5;
margin: 20px 0;
line-height: normal;
}
h2, h4{
&.pf-dynamic-area{
min-height: 0;
margin: 10px 0;
}
}
// data tables ==============================================================
.dataTable, .table{
font-size: 10px;
font-family: $font-family-bold;
}
// horizontal line ==========================================================
hr{
margin: 5px 0 15px 0;
border-color: $gray-light;
}
// form wizard ==============================================================
.pf-wizard-navigation{
margin: 0;
li{
&:not(:last-child):before{
border-top: 1px solid $gray-light;
content: "";
display: block;
font-size: 0;
overflow: hidden;
position: relative;
top: 12px;
left: 71px;
right: 1px;
width: 100%;
}
&.finished{
&:before{
@include border-image( linear-gradient(to right, $teal-dark, $teal-dark) 1 1% );
border-bottom: 0;
}
}
&.active{
&:before{
@include border-image( linear-gradient(to right, $brand-success, $gray-light) 1 1% );
border-bottom: 0;
}
}
& > h6{
color: $gray-light;
font-size: 11px;
margin: 5px;
}
a:hover{
& + h6{
color: $gray-lighter;
}
}
&.active a:not(.btn-danger){
@extend .btn-success;
& + h6{
color: $gray-lighter;
}
}
}
}
}
// settings dialog ============================================================
#pf-settings-dialog{
// smaller buttons
.form-group .btn-sm{
padding: 4px 7px 3px;
}
// captcha image
#pf-dialog-captcha-wrapper{
margin: 0;
padding: 3px 0;
}
}
// map settings dialog ========================================================
#pf-map-dialog{
#pf-map-dialog-character-select,
#pf-map-dialog-corporation-select,
#pf-map-dialog-alliance-select{
width: 300px;
}
}
#pf-route-dialog{
#pf-route-dialog-map-select{
width: 300px !important;
}
}
// map manual dialog ==========================================================
#pf-manual-scrollspy{
position: relative;
height: 500px;
overflow: auto;
}
// ad system dialog ===========================================================
.pf-system-dialog-select{
width: 270px !important;
}
// credits dialog =============================================================
.pf-credits-dialog{
.pf-credits-logo-background{
overflow: visible;
background: url("#{$base-url}/logo_bg.png");
padding: 20px;
margin-bottom: 20px;
}
#pf-logo-container{
width: 355px;
height: 366px;
margin: 0 auto;
}
}