IGNITE-8817 Web Console: Changed default link color to blue.

Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e883b01d
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e883b01d
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e883b01d

Branch: refs/heads/ignite-8446
Commit: e883b01d5da86651e13de23c2d3165aa67f6752b
Parents: f092be5
Author: Ilya Borisov <klast...@gmail.com>
Authored: Mon Jun 25 15:43:42 2018 +0700
Committer: Alexey Kuznetsov <akuznet...@apache.org>
Committed: Mon Jun 25 15:43:42 2018 +0700

----------------------------------------------------------------------
 .../app/components/web-console-header/style.scss         | 11 +++++++++++
 .../frontend/app/primitives/datepicker/index.scss        |  6 ++++--
 .../frontend/app/primitives/timepicker/index.scss        |  6 ++++--
 .../frontend/app/primitives/ui-grid-settings/index.scss  |  6 ++++--
 .../public/stylesheets/_bootstrap-variables.scss         |  2 +-
 .../web-console/frontend/public/stylesheets/style.scss   |  4 ++--
 6 files changed, 26 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/app/components/web-console-header/style.scss
----------------------------------------------------------------------
diff --git 
a/modules/web-console/frontend/app/components/web-console-header/style.scss 
b/modules/web-console/frontend/app/components/web-console-header/style.scss
index abff216..8f92d8a 100644
--- a/modules/web-console/frontend/app/components/web-console-header/style.scss
+++ b/modules/web-console/frontend/app/components/web-console-header/style.scss
@@ -120,6 +120,17 @@ web-console-header {
             margin-right: $nav-item-margin;
         }
 
+        .dropdown-menu {
+            a {
+                &:hover, &:focus {
+                    color: inherit;
+                }
+            }
+            li.active a {
+                color: inherit;
+            }
+        }
+
         .user-name-wrapper {
             display: flex;
             align-items: center;

http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/app/primitives/datepicker/index.scss
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/primitives/datepicker/index.scss 
b/modules/web-console/frontend/app/primitives/datepicker/index.scss
index 1670704..b0c13e6 100644
--- a/modules/web-console/frontend/app/primitives/datepicker/index.scss
+++ b/modules/web-console/frontend/app/primitives/datepicker/index.scss
@@ -57,6 +57,8 @@
     }
 
     .ignite-form-field__control {
+        @import "./../../../public/stylesheets/variables.scss";
+
         width: auto;
 
         input {
@@ -72,13 +74,13 @@
             font-size: inherit;
             line-height: $height;
             text-align: left;
-            text-shadow: 0 0 0 #ee2b27;
+            text-shadow: 0 0 0 $ignite-brand-success;
 
             border: none;
             box-shadow: none;
 
             &:hover, &:focus {
-                text-shadow: 0 0 0 #a8110f;
+                text-shadow: 0 0 0 change-color($ignite-brand-success, 
$lightness: 26%);
             }
         }
     }

http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/app/primitives/timepicker/index.scss
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/primitives/timepicker/index.scss 
b/modules/web-console/frontend/app/primitives/timepicker/index.scss
index 361e949..5be534e 100644
--- a/modules/web-console/frontend/app/primitives/timepicker/index.scss
+++ b/modules/web-console/frontend/app/primitives/timepicker/index.scss
@@ -46,6 +46,8 @@
     }
 
     .ignite-form-field__control {
+        @import "./../../../public/stylesheets/variables.scss";
+
         width: auto;
 
         input {
@@ -61,14 +63,14 @@
             font-size: inherit;
             line-height: $height;
             text-align: left;
-            text-shadow: 0 0 0 #ee2b27;
+            text-shadow: 0 0 0 $ignite-brand-success;
 
             border: none;
             box-shadow: none;
             background: none;
 
             &:hover, &:focus {
-                text-shadow: 0 0 0 #a8110f;
+                text-shadow: 0 0 0 change-color($ignite-brand-success, 
$lightness: 26%);
             }
         }
     }

http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/app/primitives/ui-grid-settings/index.scss
----------------------------------------------------------------------
diff --git 
a/modules/web-console/frontend/app/primitives/ui-grid-settings/index.scss 
b/modules/web-console/frontend/app/primitives/ui-grid-settings/index.scss
index 56bab22..0a0d4a3 100644
--- a/modules/web-console/frontend/app/primitives/ui-grid-settings/index.scss
+++ b/modules/web-console/frontend/app/primitives/ui-grid-settings/index.scss
@@ -194,6 +194,8 @@
             }
 
             .ignite-form-field__control {
+                @import "./../../../public/stylesheets/variables.scss";
+
                 width: auto;
 
                 .input-tip {
@@ -213,13 +215,13 @@
                         font-size: inherit;
                         line-height: $height;
                         text-align: left;
-                        text-shadow: 0 0 0 #ee2b27;
+                        text-shadow: 0 0 0 $ignite-brand-success;
 
                         border: none;
                         box-shadow: none;
 
                         &:hover, &:focus {
-                            text-shadow: 0 0 0 #a8110f;
+                            text-shadow: 0 0 0 
change-color($ignite-brand-success, $lightness: 26%);
                         }
 
                         button {

http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/public/stylesheets/_bootstrap-variables.scss
----------------------------------------------------------------------
diff --git 
a/modules/web-console/frontend/public/stylesheets/_bootstrap-variables.scss 
b/modules/web-console/frontend/public/stylesheets/_bootstrap-variables.scss
index d1cbc0e..ded958e 100644
--- a/modules/web-console/frontend/public/stylesheets/_bootstrap-variables.scss
+++ b/modules/web-console/frontend/public/stylesheets/_bootstrap-variables.scss
@@ -49,7 +49,7 @@ $body-bg:               #f9f9f9 !default;
 $text-color:            #393939 !default;
 
 //** Global textual link color.
-$link-color:            $brand-primary !default;
+$link-color:            $brand-info !default;
 //** Link hover color set via `darken()` function.
 $link-hover-color:      darken($link-color, 15%) !default;
 //** Link hover decoration.

http://git-wip-us.apache.org/repos/asf/ignite/blob/e883b01d/modules/web-console/frontend/public/stylesheets/style.scss
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/public/stylesheets/style.scss 
b/modules/web-console/frontend/public/stylesheets/style.scss
index 1a47833..6bc652d 100644
--- a/modules/web-console/frontend/public/stylesheets/style.scss
+++ b/modules/web-console/frontend/public/stylesheets/style.scss
@@ -1206,12 +1206,12 @@ label {
 }
 
 .fa-chevron-circle-down {
-    color: $brand-primary;
+    color: $ignite-brand-success;
     margin-right: 5px;
 }
 
 .fa-chevron-circle-right {
-    color: $brand-primary;
+    color: $ignite-brand-success;
     margin-right: 5px;
 }
 

Reply via email to