summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-common/client/app/styles/buttons.less
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE-common/client/app/styles/buttons.less')
-rw-r--r--ecomp-portal-FE-common/client/app/styles/buttons.less54
1 files changed, 54 insertions, 0 deletions
diff --git a/ecomp-portal-FE-common/client/app/styles/buttons.less b/ecomp-portal-FE-common/client/app/styles/buttons.less
new file mode 100644
index 00000000..dd11101c
--- /dev/null
+++ b/ecomp-portal-FE-common/client/app/styles/buttons.less
@@ -0,0 +1,54 @@
+.ecomp-btn {
+ .white14m;
+ border-style: solid;
+ border-width: 1px;
+ border-radius: 6px;
+ box-shadow: 0px 1px 0.99px 0.01px rgba(2, 60, 89, 0.004);
+ height: 29px;
+ line-height: 29px;
+ cursor: pointer;
+ text-align: center;
+
+ &:disabled {
+ opacity: .5;
+ cursor: default;
+ }
+ &:focus {
+ outline: 0;
+ border: 1px solid @funcRed;
+ }
+}
+.btn-green {
+ .ecomp-btn;
+ border-color: @green-border;
+ background: @green-active;
+ &:hover {
+ &:disabled {
+ background: @green-active;
+ }
+ background: @green-hover;
+ }
+}
+.btn-blue {
+ .ecomp-btn;
+ //border-color: @blue-border;
+ background: @blue-active;
+
+ &:hover {
+ -webkit-transition: background-color .3s ease-out;
+ -moz-transition: background-color .3s ease-out;
+ transition: background-color .3s ease-out;
+ background: @blue-hover;
+ color : @funcBkgGray;
+ &.disabled {
+ background: @blue-active;
+ opacity: 0.5;
+ cursor: default;
+ }
+ }
+
+ &.disabled {
+ opacity: 0.5;
+ cursor: default;
+ }
+} \ No newline at end of file