aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/static/style/popup.css
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-21 10:07:56 -0300
committerSebastian <sebasjm@gmail.com>2021-06-21 10:08:35 -0300
commit0d86f84dc004c9d22d5df83182a58199d3349071 (patch)
treed5cec9606533454ad5fc06ca400cad3e8dc470cf /packages/taler-wallet-webextension/static/style/popup.css
parentc7f0e483232a01c1165c8146285b915f766dba78 (diff)
downloadwallet-core-0d86f84dc004c9d22d5df83182a58199d3349071.tar.xz
fix some pixel and css classes and sync storybook
Diffstat (limited to 'packages/taler-wallet-webextension/static/style/popup.css')
-rw-r--r--packages/taler-wallet-webextension/static/style/popup.css46
1 files changed, 42 insertions, 4 deletions
diff --git a/packages/taler-wallet-webextension/static/style/popup.css b/packages/taler-wallet-webextension/static/style/popup.css
index 504400471..d0fd5d281 100644
--- a/packages/taler-wallet-webextension/static/style/popup.css
+++ b/packages/taler-wallet-webextension/static/style/popup.css
@@ -7,13 +7,25 @@
body {
/* min-height: 20em; */
/* width: 30em; */
+ /* max-height: 800px; */
margin: 0;
+ font-size: 100%;
padding: 0;
- /* max-height: 800px; */
overflow: hidden;
background-color: #f8faf7;
font-family: Arial, Helvetica, sans-serif;
}
+/* taler-popup {
+ min-height: 20em;
+ width: 30em;
+ height: 20rem;
+ margin: 0;
+ font-size: 100%;
+ padding: 0;
+ overflow: hidden;
+ background-color: #f8faf7;
+ font-family: Arial, Helvetica, sans-serif;
+} */
.nav {
background-color: #033;
@@ -286,6 +298,32 @@ table.detailsTable.pending {
background: white;
}
-button.danger {
- background-color: 'red';
-} \ No newline at end of file
+.button-success,
+.button-destructive,
+.button-warning,
+.button-secondary {
+ color: white;
+ border-radius: 4px;
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
+}
+
+.button-success {
+ background: rgb(28, 184, 65);
+}
+
+.button-destructive {
+ background: rgb(202, 60, 60);
+}
+
+.button-warning {
+ background: rgb(223, 117, 20);
+}
+
+.button-secondary {
+ background: rgb(66, 184, 221);
+}
+
+button {
+ font-size: 120%;
+ padding: 0.5em;
+}