Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit f663cf5

Browse files
committed
Merge pull request #769 from appirio-tech/qa-integration
Qa integration
2 parents d0b04c1 + 4ce94fc commit f663cf5

File tree

5 files changed

+25
-11
lines changed

5 files changed

+25
-11
lines changed

app/layout/header/header.jade

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@
2323
.menu-item-header.show-large #[button.btn-expand-search.search-icon(type="button")]
2424

2525
.submenu
26-
input(type="text" placeholder="find members" ng-model="vm.searchTerm" ng-keyup="vm.checkSubmit($event)")
27-
// Suggestion list container
28-
// ul.suggestion-list(ng-if="main.searchTerm.length > 0")
29-
// li(ng-repeat="suggestion in main.suggestions | filter:main.searchTerm | limitTo:5")
30-
// a(href="javascript:;" class="menu-link") {{suggestion}}
26+
input(class="member-search-old-nav" type="text" placeholder="find members by username or skill" ng-model="vm.searchTerm" ng-keyup="vm.checkSubmit($event)")
3127

3228
li.menu-item.link-group.user-menu(ng-switch="vm.isAuth", ng-class="{'anonymous-menu': !vm.isAuth}")
3329
// Links for logged in user

app/profile/about/about.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import angular from 'angular'
3434

3535
profileVm.status.externalLinks = CONSTANTS.STATE_READY
3636
}).catch(function(err) {
37-
logger.error('Could retrive web links and external accounts', err)
37+
logger.error('Could not retrieve web links and external accounts', err)
3838

3939
profileVm.status.externalLinks = CONSTANTS.STATE_ERROR
4040
})

assets/css/layout/header.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
background-repeat: no-repeat;
2323
}
2424

25+
.search-wrapper .member-search-old-nav {
26+
box-shadow: none !important;
27+
}
28+
2529
.tc-text-logo {
2630
color: #B7B7B7;
2731
font-weight: bold;

assets/css/topcoder.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,4 +549,18 @@ $switch-inactive-color: $gray;
549549
.member-search-view {
550550
background-color: transparent;
551551
}
552+
553+
// Overrides old style guide
554+
a {
555+
cursor: auto !important;
556+
transition: none !important;
557+
text-decoration: none !important;
558+
color: inherit !important;
559+
560+
&:visited, &:hover, &:active {
561+
color: inherit !important;
562+
cursor: auto !important;
563+
text-decoration: none !important;
564+
}
565+
}
552566
}

assets/css/vendors/introjs.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@
6868

6969
// Refactor buttons when button mixins and/or style guide is done
7070
.introjs-button {
71-
@extend .tc-btn;
72-
@extend .tc-btn-s;
71+
@extend .tc-btn !optional;
72+
@extend .tc-btn-s !optional;
7373
}
7474

7575
.introjs-skipbutton {
76-
@extend .tc-btn-ghost;
76+
@extend .tc-btn-ghost !optional;
7777
float: left;
7878
}
7979

8080

8181
.introjs-disabled {
82-
@extend .tc-btn-s;
83-
@extend :disabled;
82+
@extend .tc-btn-s !optional;
83+
@extend :disabled !optional;
8484
}
8585

8686
.introjs-prevbutton {

0 commit comments

Comments
 (0)