Skip to content

Commit

Permalink
Merge pull request #19220 from Scroody/fix-removing-user-select
Browse files Browse the repository at this point in the history
Fix: Removing some inconvinient user selection from certain items
  • Loading branch information
ramonlsouza committed Jan 9, 2024
2 parents c04e6d1 + 13bdd6a commit 8393425
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
background-color:#333333;
padding: .25rem .5rem;
border-radius: 4px;
user-select: none;
}

.tippy-tooltip.bbbtip-theme>.tippy-svg-arrow{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const RecordingIndicatorIcon = styled.span<RecordingIndicatorIconProps>`
width: ${fontSizeLarge};
height: ${fontSizeLarge};
font-size: ${fontSizeBase};
user-select: none;
${({ titleMargin }) => titleMargin && `
[dir="ltr"] & {
Expand All @@ -40,6 +41,7 @@ const RecordingIndicatorIcon = styled.span<RecordingIndicatorIconProps>`
const RecordingControl = styled.div<RecordingIndicatorProps>`
display: flex;
align-items: center;
user-select: none;
span {
border: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { fontSizeSmaller } from '/imports/ui/stylesheets/styled-components/typog
import Button from '/imports/ui/components/common/button/component';

const DropdownTrigger = styled(DivElipsis)`
user-select: none;
position: relative;
// Keep the background with 0.5 opacity, but leave the text with 1
background-color: rgba(0, 0, 0, 0.5);
Expand Down

0 comments on commit 8393425

Please sign in to comment.