-
Notifications
You must be signed in to change notification settings - Fork 1
#19 change application colors #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, check your branch because you have some changes that already are merged in the master branch
.prettierrc
Outdated
"semi": true, | ||
"bracketSpacing": true, | ||
"endOfLine": "lf" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that you are having problems getting master changes.. why do you have these changes.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
README.md
Outdated
- `TSLint` | ||
- `Prettier - Code formatter`. | ||
- Go to user settings (`settings.json`) and enable formatting on save: `"editor.formatOnSave": true`. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this changes already are in master branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
package.json
Outdated
"@angular-devkit/build-angular": "^0.900.5", | ||
"@angular/cli": "~9.0.4", | ||
"@angular-devkit/build-angular": "^0.901.0", | ||
"@angular/cli": "^9.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this your local update.?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
@@ -44,3 +44,8 @@ | |||
cursor: pointer; | |||
} | |||
} | |||
|
|||
.title-card { | |||
background-image: linear-gradient(to left top, #fc5630, #fe503a, #ff4a44, #ff444d, #ff3f56); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that it is better if we can define palette colors.
The problem is that it works with the last changes that were made in the branch that is not merged to be able to apply the changes of the styles to the functionalities that are not in master. All tests also run correctly, but github in the log shows two tests fail in time-entries.component.spec.ts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- You need to rebase this branch against master. Ask @macrisguncay for help, she can lend you a hand with this.
- Remove the search project implementation since this is part of another ticket and we don't want to include more than one ticket per PR
- There are some issues with the look and feel.
We are not using rounded corners for the components. Check the accepted design:
The username in the top right corner (no borders needed):
Menu items are rectangles with no rounded corners.
Your implementation looks like:
ioet colors don't have any green so button colors should not be green.
This is how clock-in button looks like:
Use this set of colors as reference:
You need to add some consistent colors for the texts here. The background-color should not be gray for sure.
These buttons can not be blue, FInd a consistent color for them:
This looks really weird, please fix the styles:
Feel free to ask @jorgecod for help. He knows a lot about styling.
@@ -44,14 +45,14 @@ describe('ProjectManagementComponent', () => { | |||
|
|||
beforeEach(async(() => { | |||
TestBed.configureTestingModule({ | |||
declarations: [ ProjectManagementComponent, CreateProjectComponent, ProjectListComponent ], | |||
providers: [ { provide: ProjectService, useValue: projectServiceStub }], | |||
declarations: [ProjectManagementComponent, CreateProjectComponent, ProjectListComponent, FilterProjectPipe], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR only needs to contain the required styles for the app. Please remove this pipe implementation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
|
||
import { SearchProjectComponent } from './search-project.component'; | ||
|
||
describe('SearchProjectComponent', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this code since this is part of other ticket.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
c67635a
to
dd7f132
Compare
I have removed all the non-existent functionality in master and have corrected the observations. |
PR related to change app style.