Fix: Removing some inconvinient user selection from certain items

This commit is contained in:
André 2023-11-27 13:34:38 -03:00
parent ba7400e604
commit 13bdd6aed1
3 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@
background-color:#333333;
padding: .25rem .5rem;
border-radius: 4px;
user-select: none;
}
.tippy-tooltip.bbbtip-theme>.tippy-svg-arrow{

View File

@ -29,6 +29,7 @@ const RecordingIndicatorIcon = styled.span<RecordingIndicatorIconProps>`
width: ${fontSizeLarge};
height: ${fontSizeLarge};
font-size: ${fontSizeBase};
user-select: none;
${({ titleMargin }) => titleMargin && `
[dir="ltr"] & {
@ -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;

View File

@ -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);