Skip to content

Commit

Permalink
fix(ui): remove codemirror z-index on lines (#5014)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlt authored Feb 26, 2020
1 parent d21619b commit bfb8839
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions ui/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ a.disabled:hover {
.CodeMirror {
height: 100% !important;
max-height: 100%;
} // Code mirror
}

// Code mirror
.CodeMirror-scroll {
height: 100% !important;
max-height: 100%;
Expand All @@ -65,6 +67,7 @@ a.disabled:hover {
.CodeMirror {
max-height: 500px;
}

.CodeMirror-scroll {
max-height: 500px;
}
Expand Down Expand Up @@ -108,7 +111,7 @@ body ::-webkit-scrollbar-thumb {

// dropdown
.ui.buttons {
sm-dropdown > .ui.dropdown:last-child .menu {
sm-dropdown>.ui.dropdown:last-child .menu {
left: auto;
right: 0;
}
Expand Down Expand Up @@ -267,7 +270,7 @@ body ::-webkit-scrollbar-thumb {
width: auto;
}

.ui.card > .content > .description {
.ui.card>.content>.description {
overflow-wrap: break-word;
}

Expand Down Expand Up @@ -354,7 +357,7 @@ body ::-webkit-scrollbar-thumb {

padding-right: 1em;

> .text > .flag {
>.text>.flag {
margin-right: 0em;
}
}
Expand Down Expand Up @@ -462,3 +465,7 @@ sui-search {
position: relative;
top: -7px;
}

.CodeMirror pre.CodeMirror-line {
z-index: unset;
}

0 comments on commit bfb8839

Please sign in to comment.