Skip to content

Commit

Permalink
Merge pull request #4790 from schotman/issue_4787
Browse files Browse the repository at this point in the history
IE11 corrections fixes #4787
  • Loading branch information
mitchelsellers committed Sep 10, 2021
2 parents ea7f0db + e378c36 commit 1d6d67a
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
Expand Up @@ -194,4 +194,11 @@ body {

#editBarOptionsExtensionPoint {
margin-left: 7px;
}

/* IE10+ specific editbar styles go here */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.editbar {
background-color: #0b1c24;
}
}
Expand Up @@ -2369,4 +2369,55 @@ div.ui-dialog-titlebar>.ui-dialog-titlebar-close:hover {

.monaco-editor .view-lines * {
font-family: inherit;
}
}



/* IE10+ specific personabar styles go here */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.personabar {
background-color: #0e2936;
}

.personabar .personabarLogo {
background: url("../images/Logo.svg") no-repeat center center;
border-bottom: 1px solid #1e485e;
}

.personabar .personabarLogo:hover {
background-color: #0b1c24;
}

.personabarnav > li > span.icon-loader svg .back {
fill: #0b1c24;
}

.personabarnav > li > span.icon-loader svg .main {
fill: #3c7a9a;
}

.personabarnav > li:hover,
.personabarnav > li.active {
background-color: #0b1c24;
}

.personabarnav > li#Edit {
border-top: 1px solid #1e485e;
}

.hovermenu {
background-color: #0b1c24;
}

.hoverSummaryMenu {
background-color: #0b1c24;
}

.hoverSummaryMenu ul li.border {
border-left: 1px solid #3c7a9a;
}

.hoverSummaryMenu ul li label {
color: #3c7a9a;
}
}

0 comments on commit 1d6d67a

Please sign in to comment.