Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
#11 - button hover cursor, made text unselectable
Browse files Browse the repository at this point in the history
  • Loading branch information
CullieM committed May 26, 2021
1 parent a909d6b commit 2f61fdd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/views/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ img {
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
/* border-bottom: 1px hidden var(--dividerColour); */
}

Expand Down Expand Up @@ -279,6 +284,14 @@ select{
background-color: var(--topSideEdit);
}

#workingFilesDetail > summary{
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
cursor: pointer;
}

#workingFilesDetail > div {
display: flex;
align-items: center;
Expand All @@ -293,6 +306,12 @@ select{
border: var(--dividerColour);
border-style: solid hidden hidden solid;
border-width: thin;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
cursor: pointer;

}

#workingFilesDetail > div:last-of-type {
Expand Down

0 comments on commit 2f61fdd

Please sign in to comment.