- - New HTML editor for system description #698
- - New preview data section added to "new system" dialog #662
- - Fixed bugs with the signature table
- #690,
- #691
-
+ - New custom/editable jump log information #709
+ - New wormhole color codes added to signature table #703
- Many more improvements/fixes. Complete changelog
diff --git a/sass/layout/_dialogs.scss b/sass/layout/_dialogs.scss
index 28723ee6..3b5f06fd 100644
--- a/sass/layout/_dialogs.scss
+++ b/sass/layout/_dialogs.scss
@@ -244,6 +244,12 @@
}
}
+// system effect dialog =======================================================
+.pf-system-effect-dialog{
+ .dataTable{
+ border-collapse: collapse; // required vor column highlight (hover) -> prevents jumping when border gets attached
+ }
+}
// credits dialog =============================================================
.pf-credits-dialog{
.pf-credits-logo-background{
diff --git a/sass/layout/_landing.scss b/sass/layout/_landing.scss
index 01e44fd0..79f38098 100644
--- a/sass/layout/_landing.scss
+++ b/sass/layout/_landing.scss
@@ -433,8 +433,23 @@
background-image: url("#{$base-url}/landing/eve_sso_login_buttons_large_black_hover.png");
cursor: pointer;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
- @include transition(box-shadow 0.12s ease-out);
- will-change: box-shadow;
+
+ &:before{
+ content: ' ';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+
+ /* Create the box shadow at expanded size. */
+ box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
+
+ /* Hidden by default. */
+ opacity: 0;
+ @include transition(opacity 0.12s ease-in-out);
+ will-change: opacity;
+ }
&:after {
content: ' ';
@@ -449,7 +464,9 @@
}
&:hover {
- box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
+ &:before{
+ opacity: 1;
+ }
&:after{
opacity: 0;
diff --git a/sass/layout/_main.scss b/sass/layout/_main.scss
index 49d3f537..5a85e198 100644
--- a/sass/layout/_main.scss
+++ b/sass/layout/_main.scss
@@ -486,6 +486,29 @@ select:active, select:hover {
}
}
+ // column highlight cell class
+ thead{
+ th.colHighlight{
+ border-bottom: 1px solid $orange-dark;
+ }
+ }
+
+ tbody{
+ td.colHighlight{
+ border-left: 1px solid $orange-dark;
+ border-right: 1px solid $orange-dark;
+ background-color: rgba($orange-dark, .08);
+ }
+
+ tr:first-child td.colHighlight{
+ border-top: 1px solid $orange-dark;
+ }
+
+ tr:last-child td.colHighlight{
+ border-bottom: 1px solid $orange-dark;
+ }
+ }
+
}
// table styles ===================================================================================