From 26e04007a61d6da1854f8e1d78b6eea8f8a317ad Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 1 Sep 2021 15:13:13 -0400 Subject: [PATCH] move and style buttons on parts list --- manifest.json | 2 +- style.css | 18 ++++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index d0e5cee..a880282 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "ServiceHub Plus", - "version": "0.1.0", + "version": "0.1.1", "description": "Improvements for TRG Service Hub techs", "content_scripts": [ diff --git a/style.css b/style.css index 9c9df42..2baf957 100644 --- a/style.css +++ b/style.css @@ -13,13 +13,27 @@ input[type="button"] { text-decoration: none; cursor: pointer; border: none; - transition: background-color 200ms ease-in-out; + transition: background-color 250ms ease-in-out; } input[type="button"]:hover { - background-color: #535353; + background-color: #999799; } input[type="button"]:disabled { 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; +}