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

Commit

Permalink
Fix colour variable references in composer format bar (#7000)
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live authored Oct 20, 2021
1 parent c30029a commit abc5db5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions res/css/views/rooms/_MessageComposerFormatBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
position: absolute;
cursor: pointer;
border-radius: 8px;
background-color: $primary-bg-color;
background-color: $background;
border: 1px solid $input-border-color;
user-select: none;
// equal to z-index of mx_ReplyPreview and mx_RoomView_statusArea (1000)
Expand Down Expand Up @@ -61,11 +61,11 @@ limitations under the License.
width: 100%;
mask-repeat: no-repeat;
mask-position: center;
background-color: $secondary-fg-color;
background-color: $secondary-content;
}

.mx_MessageComposerFormatBar_button:hover::after {
background-color: $primary-fg-color;
background-color: $primary-content;
}

.mx_MessageComposerFormatBar_buttonIconBold::after {
Expand Down

0 comments on commit abc5db5

Please sign in to comment.