Skip to content

Commit

Permalink
Merge pull request #643 from a2batic/spell
Browse files Browse the repository at this point in the history
Fix incorrect spellings
  • Loading branch information
gnehapk authored Sep 28, 2017
2 parents 6bb4ee5 + 7d9384b commit 1cdc907
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/commons/scss/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
.dropdown-menu > li > a.disabled {
cursor: not-allowed;
pointer-events: none;
color: grey;
color: $color-light-grey;
}

.modal {
Expand Down
1 change: 1 addition & 0 deletions src/commons/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $color-night-rider: #333333;
$color-gray: #808080;
$color-light-grey: #D1D1D1;
$color-silver: #BDBDBD;
$color-nero-grey: #181818;

/* Hue: Red */
$color-red: #F00000;
Expand Down
6 changes: 3 additions & 3 deletions src/modules/base/navigation/navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.nav-pf-vertical .list-group-item sub-menu a {
background-color: transparent;
color: #d1d1d1;
color: $color-light-grey;
cursor: pointer;
display: block;
font-size: 14px;
Expand All @@ -26,8 +26,8 @@

.nav-pf-vertical .list-group-item.active sub-menu a,
.nav-pf-vertical .list-group-item:hover sub-menu a {
background-color: #393f44;
color: #fff;
background-color: $color-blackopaque;
color: $color-white;
font-weight: 600;
}

Expand Down
2 changes: 1 addition & 1 deletion src/modules/base/user-setting/user-setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@

});
}
Notifications.message("success", "", " Profile updated Succesfully.");
Notifications.message("success", "", " Profile updated Successfully.");
}).catch(function(e) {
var keys,
messages;
Expand Down
2 changes: 1 addition & 1 deletion src/modules/clusters/cluster-list/cluster-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@

/**
* @name showKababMenu
* @desc hide/show kabab menu
* @desc hide/show kebab menu
* @memberOf clusterController
*/
function showKababMenu($event, cluster) {
Expand Down
10 changes: 5 additions & 5 deletions src/modules/login/login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
.login-page {
background-image: url(../../images/bg-login.jpg);;
background-size: auto;
color: #fff;
color: $color-white;
}
@media (min-width: 768px) {
.login-page {
background-size: 100% auto;
}
}
.login-page .container {
background-color: #181818;
background-color: $color-nero-grey;
background-color: rgba(255, 255, 255, 0.055);
clear: right;
padding-bottom: 40px;
Expand Down Expand Up @@ -90,7 +90,7 @@
margin-bottom: 0;
}
.login-page .container {
color: #fff;
color: $color-white;
}
@media (min-width: 768px) {
.login-page .container .login {
Expand All @@ -108,10 +108,10 @@
left: 0;
}
.red-font {
color: red;
color: $color-red;
}
.text-heading {
color: white;
color: $color-white;
font-size: large;
}
#brand{
Expand Down

0 comments on commit 1cdc907

Please sign in to comment.