move and style buttons on parts list

This commit is contained in:
2021-09-01 15:13:13 -04:00
parent f62aae3da5
commit 26e04007a6
2 changed files with 17 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"manifest_version": 3, "manifest_version": 3,
"name": "ServiceHub Plus", "name": "ServiceHub Plus",
"version": "0.1.0", "version": "0.1.1",
"description": "Improvements for TRG Service Hub techs", "description": "Improvements for TRG Service Hub techs",
"content_scripts": [ "content_scripts": [
+16 -2
View File
@@ -13,13 +13,27 @@ input[type="button"] {
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;
border: none; border: none;
transition: background-color 200ms ease-in-out; transition: background-color 250ms ease-in-out;
} }
input[type="button"]:hover { input[type="button"]:hover {
background-color: #535353; background-color: #999799;
} }
input[type="button"]:disabled { input[type="button"]:disabled {
opacity: 0.3; opacity: 0.3;
} }
input[name="btnCancel"] + input[name="btnSave"] {
position: fixed;
top: 20px;
right: 20px;
}
input[name="btnCancel"] {
background-color: lightcoral;
color: white;
position: fixed;
top: 20px;
right: 80px;
}