Skip to content

Commit

Permalink
Switch all instances of user-select to be only user-select and -webki…
Browse files Browse the repository at this point in the history
…t-user-select
  • Loading branch information
kommunarr committed Aug 26, 2023
1 parent 1e2437c commit 6e27a14
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 18 deletions.
3 changes: 3 additions & 0 deletions src/renderer/components/ft-icon-button/ft-icon-button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
flex-flow: row wrap;
justify-content: space-evenly;
position: relative;

-webkit-user-select: none;
user-select: none;
}

Expand Down Expand Up @@ -84,6 +86,7 @@
list-style-type: none;
position: absolute;
text-align: center;
-webkit-user-select: none;
user-select: none;
z-index: 3;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ pure-checkbox input[type="checkbox"], .pure-radiobutton input[type="checkbox"],
position: relative;
padding-left: 2em;
vertical-align: middle;
-webkit-user-select: none;
user-select: none;
cursor: pointer;
display: block;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,7 @@
}

.sectionTitle {
/* iOS Safari */
-webkit-touch-callout: none;
/* Safari */
-webkit-user-select: none;
/* Konqueror HTML */
/* Firefox */
-moz-user-select: none;
/* Internet Explorer/Edge */
-ms-user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
user-select: none;
margin-left: 2%;
}
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/top-nav/top-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
color: gray;
opacity: 0.5;
pointer-events: none;
-webkit-user-select: none;
user-select: none;
}

Expand Down
11 changes: 2 additions & 9 deletions src/renderer/videoJS.css
Original file line number Diff line number Diff line change
Expand Up @@ -1091,17 +1091,10 @@ body.vjs-full-window {
cursor: pointer;
padding: 0;
margin: 0 0.45em 0 0.45em;
/* iOS Safari */
-webkit-touch-callout: none;
/* Safari */

-webkit-user-select: none;
/* Konqueror HTML */
/* Firefox */
-moz-user-select: none;
/* Internet Explorer/Edge */
-ms-user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
user-select: none;

background-color: #73859f;
background-color: rgba(115, 133, 159, 0.5);
}
Expand Down

0 comments on commit 6e27a14

Please sign in to comment.