Skip to content

Commit

Permalink
Remove selection from ft-flex-box, ft-input placeholders, and profile…
Browse files Browse the repository at this point in the history
… icons
  • Loading branch information
kommunarr committed Aug 26, 2023
1 parent 316c87c commit 4df56fe
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/renderer/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

.flexBox {
display: block;
user-select: all;
-webkit-user-select: all;
}

#changeLogText {
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/components/ft-flex-box/ft-flex-box.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
user-select: none;
-webkit-user-select: none;
}
2 changes: 2 additions & 0 deletions src/renderer/components/ft-input/ft-input.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@

.ft-input-component ::-webkit-input-placeholder {
color: var(--tertiary-text-color);
user-select: none;
-webkit-user-select: none;
}

.forceTextColor .ft-input {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
line-height: 1em;
text-align: center;
padding: 17.5px 0;
user-select: none;
-webkit-user-select: none;
}

.profileName {
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/components/ft-profile-edit/ft-profile-edit.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
line-height: 1em;
text-align: center;
padding: 25px 0;
user-select: none;
-webkit-user-select: none;
}

@media only screen and (max-width: 680px) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
font-size: 20px;
line-height: 1em;
text-align: center;
user-select: none;
-webkit-user-select: none;
}

.profileList {
Expand Down

0 comments on commit 4df56fe

Please sign in to comment.