Skip to content

Commit

Permalink
IE11 corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
schotman committed Aug 20, 2021
1 parent de333bf commit e378c36
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
Original file line number Diff line number Diff line change
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;
}
}
Original file line number Diff line number Diff line change
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 e378c36

Please sign in to comment.