Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix left panel glow in Safari (#7236)
Browse files Browse the repository at this point in the history
Add back removed CSS
  • Loading branch information
dbkr authored Nov 30, 2021
1 parent 5ff810b commit 347bbef
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions res/css/views/elements/_ResizeHandle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ limitations under the License.
z-index: 100;
}

// We'd like to remove this, but this makes matrixchat's resizehandle's
// negative margin & greater than its positive padding. If it's the same
// or less, Safari gets confused about overflows somehow and
// https://github.com/vector-im/element-web/issues/19863 happens.
.mx_MatrixChat > .mx_ResizeHandle.mx_ResizeHandle_horizontal {
margin: 0 -10px 0 0;
padding: 0 8px 0 0;
}

.mx_ResizeHandle.mx_ResizeHandle_horizontal {
margin: 0 -5px;
padding: 0 5px;
Expand Down

0 comments on commit 347bbef

Please sign in to comment.