summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/static/style/popup.css
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-webextension/static/style/popup.css')
-rw-r--r--packages/taler-wallet-webextension/static/style/popup.css57
1 files changed, 56 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/static/style/popup.css b/packages/taler-wallet-webextension/static/style/popup.css
index cca002399..c0201e584 100644
--- a/packages/taler-wallet-webextension/static/style/popup.css
+++ b/packages/taler-wallet-webextension/static/style/popup.css
@@ -6,7 +6,7 @@
body {
min-height: 20em;
- width: 30em;
+ /* width: 30em; */
margin: 0;
padding: 0;
max-height: 800px;
@@ -183,3 +183,58 @@ input[type="radio"] {
text-align: center;
padding-top: 2em;
}
+
+/**
+ pay html
+*/
+button.accept {
+ background-color: #5757d2;
+ border: 1px solid black;
+ border-radius: 5px;
+ margin: 1em 0;
+ padding: 0.5em;
+ font-weight: bold;
+ color: white;
+}
+button.linky {
+ background: none !important;
+ border: none;
+ padding: 0 !important;
+
+ font-family: arial, sans-serif;
+ color: #069;
+ text-decoration: underline;
+ cursor: pointer;
+}
+
+input.url {
+ width: 25em;
+}
+
+button.accept:disabled {
+ background-color: #dedbe8;
+ border: 1px solid white;
+ border-radius: 5px;
+ margin: 1em 0;
+ padding: 0.5em;
+ font-weight: bold;
+ color: #2c2c2c;
+}
+
+.errorbox {
+ border: 1px solid;
+ display: inline-block;
+ margin: 1em;
+ padding: 1em;
+ font-weight: bold;
+ background: #ff8a8a;
+}
+
+.okaybox {
+ border: 1px solid;
+ display: inline-block;
+ margin: 1em;
+ padding: 1em;
+ font-weight: bold;
+ background: #00fa9a;
+}