Skip to content

Conversation

daros10
Copy link
Contributor

@daros10 daros10 commented Apr 1, 2020

PR related to change app style.

App Style

@daros10 daros10 requested a review from enriquezrene April 1, 2020 02:23
Copy link
Contributor

@macrisguncay macrisguncay left a 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"
}
Copy link
Contributor

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.?

Copy link
Contributor Author

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`.

Copy link
Contributor

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

Copy link
Contributor Author

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",
Copy link
Contributor

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.?

Copy link
Contributor Author

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);
Copy link
Contributor

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.

@daros10
Copy link
Contributor Author

daros10 commented Apr 1, 2020

Please, check your branch because you have some changes that already are merged in the master branch

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.

Copy link
Contributor

@enriquezrene enriquezrene left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. You need to rebase this branch against master. Ask @macrisguncay for help, she can lend you a hand with this.
  2. 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
  3. 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):

You implementation:
Screen Shot 2020-03-31 at 23 02 36

Original design:
Screen Shot 2020-03-31 at 23 03 33

Menu items are rectangles with no rounded corners.
Your implementation looks like:
Screen Shot 2020-03-31 at 23 04 34

Design looks like:
Screen Shot 2020-03-31 at 23 05 26

ioet colors don't have any green so button colors should not be green.
This is how clock-in button looks like:
Screen Shot 2020-03-31 at 23 06 59

Use this set of colors as reference:
Screen Shot 2020-03-31 at 23 07 36

You need to add some consistent colors for the texts here. The background-color should not be gray for sure.
Screen Shot 2020-03-31 at 23 08 25

Remove rounded corners here:
Screen Shot 2020-03-31 at 23 09 29

These buttons can not be blue, FInd a consistent color for them:
Screen Shot 2020-03-31 at 23 10 27
Screen Shot 2020-03-31 at 23 10 32

This looks really weird, please fix the styles:
Screen Shot 2020-03-31 at 23 11 15

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],
Copy link
Contributor

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.

Copy link
Contributor Author

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', () => {
Copy link
Contributor

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed.

@daros10 daros10 force-pushed the #19-change-application-colors branch from c67635a to dd7f132 Compare April 1, 2020 06:51
@daros10
Copy link
Contributor Author

daros10 commented Apr 1, 2020

  1. You need to rebase this branch against master. Ask @macrisguncay for help, she can lend you a hand with this.
  2. 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
  3. 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):

You implementation:
Screen Shot 2020-03-31 at 23 02 36

Original design:
Screen Shot 2020-03-31 at 23 03 33

Menu items are rectangles with no rounded corners.
Your implementation looks like:
Screen Shot 2020-03-31 at 23 04 34

Design looks like:
Screen Shot 2020-03-31 at 23 05 26

ioet colors don't have any green so button colors should not be green.
This is how clock-in button looks like:
Screen Shot 2020-03-31 at 23 06 59

Use this set of colors as reference:
Screen Shot 2020-03-31 at 23 07 36

You need to add some consistent colors for the texts here. The background-color should not be gray for sure.
Screen Shot 2020-03-31 at 23 08 25

Remove rounded corners here:
Screen Shot 2020-03-31 at 23 09 29

These buttons can not be blue, FInd a consistent color for them:
Screen Shot 2020-03-31 at 23 10 27
Screen Shot 2020-03-31 at 23 10 32

This looks really weird, please fix the styles:
Screen Shot 2020-03-31 at 23 11 15

Feel free to ask @jorgecod for help. He knows a lot about styling.

  1. You need to rebase this branch against master. Ask @macrisguncay for help, she can lend you a hand with this.
  2. 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
  3. 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):

You implementation:
Screen Shot 2020-03-31 at 23 02 36

Original design:
Screen Shot 2020-03-31 at 23 03 33

Menu items are rectangles with no rounded corners.
Your implementation looks like:
Screen Shot 2020-03-31 at 23 04 34

Design looks like:
Screen Shot 2020-03-31 at 23 05 26

ioet colors don't have any green so button colors should not be green.
This is how clock-in button looks like:
Screen Shot 2020-03-31 at 23 06 59

Use this set of colors as reference:
Screen Shot 2020-03-31 at 23 07 36

You need to add some consistent colors for the texts here. The background-color should not be gray for sure.
Screen Shot 2020-03-31 at 23 08 25

Remove rounded corners here:
Screen Shot 2020-03-31 at 23 09 29

These buttons can not be blue, FInd a consistent color for them:
Screen Shot 2020-03-31 at 23 10 27
Screen Shot 2020-03-31 at 23 10 32

This looks really weird, please fix the styles:
Screen Shot 2020-03-31 at 23 11 15

Feel free to ask @jorgecod for help. He knows a lot about styling.

I have removed all the non-existent functionality in master and have corrected the observations.
1
2

@daros10 daros10 closed this Apr 3, 2020
@enriquezrene enriquezrene deleted the #19-change-application-colors branch April 9, 2020 21:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants