Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFront <27463495+Frontesque@users.noreply.github.com>2021-12-03 05:44:11 +0300
committerFront <27463495+Frontesque@users.noreply.github.com>2021-12-03 05:44:11 +0300
commitb5c79b8c30cb94640cb3e7de39e8a279634a9ffa (patch)
tree0084ef940dacaaba6c0219f0e315e322598e2842
parentef24e9634b460038c02039a085a2961b6df1102e (diff)
add smoothing to button hover
-rw-r--r--Extensions/chrome/popup.css4
-rw-r--r--Extensions/firefox/popup.css3
2 files changed, 4 insertions, 3 deletions
diff --git a/Extensions/chrome/popup.css b/Extensions/chrome/popup.css
index e26cd1f..30c8a92 100644
--- a/Extensions/chrome/popup.css
+++ b/Extensions/chrome/popup.css
@@ -33,8 +33,8 @@ button {
border: none;
border-radius: 4px;
font-weight: 500;
- box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%),
- 0 1px 10px 0 rgb(0 0 0 / 12%);
+ box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
+ transition: .4s;
}
button:hover {
diff --git a/Extensions/firefox/popup.css b/Extensions/firefox/popup.css
index 1ff700d..6fe8d99 100644
--- a/Extensions/firefox/popup.css
+++ b/Extensions/firefox/popup.css
@@ -32,11 +32,12 @@ button {
border-radius: 4px;
font-weight: 500;
box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
+ transition: .4s;
}
button:hover {
background: #444;
- }
+}
#advancedToggle {
margin-top: 1em;