ARBO#67074 mouseover hersteld, ruimtenummer niet meer lowercase

svn path=/Website/trunk/; revision=51926
This commit is contained in:
2021-06-14 17:29:30 +00:00
parent 2d49d75117
commit f37bfc9965
3 changed files with 13 additions and 9 deletions

View File

@@ -210,6 +210,7 @@ table.planbord4 div.gepland { border-left: 0px solid #999; border-right: 0px sol
position: absolute; position: absolute;
margin: 0 0 0 2px; margin: 0 0 0 2px;
font-size: 0.95em; font-size: 0.95em;
line-height: 1.3em;
text-shadow: 1px 1px 1px #999; text-shadow: 1px 1px 1px #999;
} }

View File

@@ -362,7 +362,7 @@ function showOpmerking(remark_selector, evt)
this.dropDownHeight = element.outerHeight() + this.boxShadow; this.dropDownHeight = element.outerHeight() + this.boxShadow;
this.base = element.closest("td"); this.base = element.closest("td");
this.tdBottom = this.base.offset().top + this.base.outerHeight(); this.tdBottom = this.base.offset().top + this.base.outerHeight();
this.pageBottom = $("iframe.fcltmodal", window.parent.document).length ? $("body").height() : $("div.divrstable").height() || $("body").height(); this.pageBottom = $("iframe.fcltmodal", window.parent.document).length ? $("iframe.fcltmodal", window.parent.document).contents().height() : $("div.divrstable").height() || $("body").height();
this.dropDownBottom = this.tdBottom + this.dropDownHeight; this.dropDownBottom = this.tdBottom + this.dropDownHeight;
this.dissappearingBottom = this.dropDownBottom > (this.pageBottom || 0); this.dissappearingBottom = this.dropDownBottom > (this.pageBottom || 0);
this.positionFromBottom = (this.pageBottom - this.dropDownHeight) + "px"; this.positionFromBottom = (this.pageBottom - this.dropDownHeight) + "px";
@@ -372,5 +372,6 @@ function showOpmerking(remark_selector, evt)
if (p.dissappearingBottom) // Een negatieve waarde mag er niet uitkomen, anders verdwijnt het onderste gedeelte uit zicht. if (p.dissappearingBottom) // Een negatieve waarde mag er niet uitkomen, anders verdwijnt het onderste gedeelte uit zicht.
$rem.css("top", p.positionFromBottom); $rem.css("top", p.positionFromBottom);
$rem.show(); $rem.show();
FcltMgr.resized();
return; return;
} }

View File

@@ -17,6 +17,7 @@
@font-face { @font-face {
font-family: fclt-skolar-sans; font-family: fclt-skolar-sans;
src: url(../APPL/Fonts/SkolarSansPEWeb-Rg.woff) format("woff"); src: url(../APPL/Fonts/SkolarSansPEWeb-Rg.woff) format("woff");
font-weight: 400;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@@ -29,6 +30,7 @@
@font-face { @font-face {
font-family: fclt-skolar-sans; font-family: fclt-skolar-sans;
src: url(../APPL/Fonts/SkolarSansPEWeb-Bd.woff) format("woff"); src: url(../APPL/Fonts/SkolarSansPEWeb-Bd.woff) format("woff");
font-weight: 700;
font-weight: bold; font-weight: bold;
font-style: normal; font-style: normal;
} }
@@ -37,6 +39,7 @@
@font-face { @font-face {
font-family: fclt-skolar-sans; font-family: fclt-skolar-sans;
src: url(../APPL/Fonts/SkolarSansPEWeb-It.woff) format("woff"); src: url(../APPL/Fonts/SkolarSansPEWeb-It.woff) format("woff");
font-weight: 400;
font-weight: normal; font-weight: normal;
font-style: italic; font-style: italic;
} }
@@ -49,6 +52,7 @@
@font-face { @font-face {
font-family: fclt-skolar-sans; font-family: fclt-skolar-sans;
src: url(../APPL/Fonts/SkolarSansPEWeb-BdIt.woff) format("woff"); src: url(../APPL/Fonts/SkolarSansPEWeb-BdIt.woff) format("woff");
font-weight: 700;
font-weight: bold; font-weight: bold;
font-style: italic; font-style: italic;
} }
@@ -127,8 +131,6 @@ html {
body { body {
font-family: ==fontfamily==; font-family: ==fontfamily==;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 0.75em; font-size: 0.75em;
line-height: 1.8em; line-height: 1.8em;
text-align: left; text-align: left;
@@ -439,8 +441,6 @@ i.btn_disabled
border-radius: 2px; border-radius: 2px;
transition: color 0.2s, background-color 0.2s, background 0.2s; transition: color 0.2s, background-color 0.2s, background 0.2s;
text-decoration: none; text-decoration: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
will-change: background-color, color; will-change: background-color, color;
} }
#mobbutton:hover { #mobbutton:hover {
@@ -2732,13 +2732,15 @@ span.button,
font-weight: 500; font-weight: 500;
transition: color 0.2s, background-color 0.2s, background 0.2s; transition: color 0.2s, background-color 0.2s, background 0.2s;
text-decoration: none; text-decoration: none;
text-transform: lowercase; /* daredevil */ text-transform: lowercase;
-moz-osx-font-smoothing: grayscale; will-change: background-color, color;
-webkit-font-smoothing: antialiased;
will-change: background-color,color;
background-position: center !important; background-position: center !important;
} }
#sel_room {
text-transform: none;
}
span.bijlage, span.bijlage1, span.endicon { span.bijlage, span.bijlage1, span.endicon {
color: ==buttoncolor==; color: ==buttoncolor==;
} }