Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected some styling issues with IE11 #4790

Merged
merged 1 commit into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}