aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-09-16 03:42:35 +0800
committerkumavis <aaron@kumavis.me>2016-09-16 03:42:35 +0800
commit5005fc143bfe5d7840e96169ab3908557dade007 (patch)
tree4e8a82abd5c4963800c9469a460150cce3ddbfd7 /ui/app/css
parent8ea086290b6aa78c35a502dc6e81e4efab904430 (diff)
downloadtangerine-wallet-browser-5005fc143bfe5d7840e96169ab3908557dade007.tar.gz
tangerine-wallet-browser-5005fc143bfe5d7840e96169ab3908557dade007.tar.zst
tangerine-wallet-browser-5005fc143bfe5d7840e96169ab3908557dade007.zip
confTx - show disabled accept btn + add colors
Diffstat (limited to 'ui/app/css')
-rw-r--r--ui/app/css/index.css26
1 files changed, 21 insertions, 5 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index ba90aa551..8543960fe 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -36,24 +36,40 @@ button {
font-family: 'Montserrat Bold';
outline: none;
cursor: pointer;
- box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36);
- /*margin: 10px;*/
padding: 8px 12px;
border: none;
- background: #F7861C;
color: white;
transform-origin: center center;
transition: transform 50ms ease-in;
+ /* default orange */
+ background: rgba(247, 134, 28, 1);
+ box-shadow: 0px 3px 6px rgba(247, 134, 28, 0.36);
+}
+
+button.btn-green {
+ background: rgba(106, 195, 96, 1);
+ box-shadow: 0px 3px 6px rgba(106, 195, 96, 0.36);
+}
+
+button.btn-red {
+ background: rgba(254, 35, 17, 1);
+ box-shadow: 0px 3px 6px rgba(254, 35, 17, 0.36);
+}
+
+button[disabled] {
+ cursor: not-allowed;
+ background: rgba(197, 197, 197, 1);
+ box-shadow: 0px 3px 6px rgba(197, 197, 197, 0.36);
}
button.spaced {
margin: 2px;
}
-button:hover {
+button:not([disabled]):hover {
transform: scale(1.1);
}
-button:active {
+button:not([disabled]):active {
transform: scale(0.95);
}