adding fix for normal dark theme

This commit is contained in:
Kibi Kelburton 2022-01-04 16:19:52 +01:00
parent 66f9a98dee
commit d2e25ba31f

View File

@ -16,10 +16,10 @@
opacity: 1!important; opacity: 1!important;
} }
/* make the file clipper appear on the left side, more intuitive for me */ /* make the file clipper appear on the left side, more intuitive for me */
/* .mx_AccessibleButton.mx_MessageComposer_button.mx_MessageComposer_upload { .mx_AccessibleButton.mx_MessageComposer_button.mx_MessageComposer_upload {
position: absolute!important; position: absolute!important;
left: 10px!important; left: 10px!important;
} */ }
/* remove the horrible and ugly padding from the right panel */ /* remove the horrible and ugly padding from the right panel */
.mx_MainSplit > .mx_RightPanel_ResizeWrapper { .mx_MainSplit > .mx_RightPanel_ResizeWrapper {
padding: 0!important; padding: 0!important;
@ -78,8 +78,7 @@
margin-bottom: 10px!important; margin-bottom: 10px!important;
} }
/* going back closer to vanilla */ .mx_MessageComposer_e2eIcon.mx_E2EIcon {
/* .mx_MessageComposer_e2eIcon.mx_E2EIcon {
position: absolute!important; position: absolute!important;
margin-right: 0!important; margin-right: 0!important;
margin-left: -5px!important; margin-left: -5px!important;
@ -88,7 +87,7 @@
top: 5px!important; top: 5px!important;
left: unset !important; left: unset !important;
z-index: 1!important; z-index: 1!important;
} */ }
.mx_EventTile:not([data-layout="bubble"]):hover.mx_EventTile_verified .mx_EventTile_line { .mx_EventTile:not([data-layout="bubble"]):hover.mx_EventTile_verified .mx_EventTile_line {
-webkit-box-shadow: inset 54px 0 0 -50px var(--accent)!important; -webkit-box-shadow: inset 54px 0 0 -50px var(--accent)!important;
@ -214,3 +213,8 @@ progress.mx_ProgressBar {
.mx_BackdropPanel, .mx_BackdropPanel--image { .mx_BackdropPanel, .mx_BackdropPanel--image {
display: none!important; display: none!important;
} }
/* fix in default dark theme the badge for notifications */
.mx_AccessibleButton.mx_NotificationBadge.mx_NotificationBadge_visible.mx_NotificationBadge_2char, .mx_NotificationBadge.mx_NotificationBadge_visible.mx_NotificationBadge_2char {
background: var(--alert, #61708b)!important;
}