-
-
Notifications
You must be signed in to change notification settings - Fork 278
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
modified task style for locked and added style for badimagery #47
Conversation
client/app/services/style.service.js
Outdated
@@ -27,15 +27,14 @@ | |||
function getTaskStyleFunction(feature){ | |||
|
|||
var FILL_COLOUR_READY = 'rgba(223,223,223,0.1)';//very light gray, 0.1 opacity | |||
var FILL_COLOUR_INVALIDATED = 'rgba(84,84,84,0.4)';//grey, 0.4 opacity | |||
var FILL_COLOUR_INVALIDATED = 'rgba(255,0,0,0.4)';//purple, 0.4 opacity |
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.
255, 0, 0 is red and not purple
client/app/services/style.service.js
Outdated
var FILL_COLOUR_DONE = 'rgba(255,165,0,0.4)';//orange, 0.4 opacity | ||
var FILL_COLOUR_VALIDATED = 'rgba(0,128,0,0.4)';//green, 0.4 opacity | ||
var FILL_COLOUR_LOCKED = 'rgba(30,144,255,0.4)';//red, 0.4 opacity |
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.
30,144,255 is blue I think?
client/app/services/style.service.js
Outdated
var FILL_COLOUR_DONE = 'rgba(255,165,0,0.4)';//orange, 0.4 opacity | ||
var FILL_COLOUR_VALIDATED = 'rgba(0,128,0,0.4)';//green, 0.4 opacity | ||
var FILL_COLOUR_LOCKED = 'rgba(30,144,255,0.4)';//red, 0.4 opacity | ||
var FILL_COLOUR_BADIMAGERY = 'rgba(0,0,0,0.4)';//red, 0.4 opacity |
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.
And this is black?
@@ -4,15 +4,14 @@ describe('style.service', function () { | |||
var styleService = null; | |||
|
|||
var FILL_COLOUR_READY = 'rgba(223,223,223,0.1)';//very light gray, 0.1 opacity | |||
var FILL_COLOUR_INVALIDATED = 'rgba(84,84,84,0.4)';//grey, 0.4 opacity | |||
var FILL_COLOUR_INVALIDATED = 'rgba(255,0,0,0.4)';//purple, 0.4 opacity |
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.
red?
var FILL_COLOUR_DONE = 'rgba(255,165,0,0.4)';//orange, 0.4 opacity | ||
var FILL_COLOUR_VALIDATED = 'rgba(0,128,0,0.4)';//green, 0.4 opacity | ||
var FILL_COLOUR_LOCKED = 'rgba(30,144,255,0.4)';//red, 0.4 opacity |
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.
blue?
var FILL_COLOUR_DONE = 'rgba(255,165,0,0.4)';//orange, 0.4 opacity | ||
var FILL_COLOUR_VALIDATED = 'rgba(0,128,0,0.4)';//green, 0.4 opacity | ||
var FILL_COLOUR_LOCKED = 'rgba(30,144,255,0.4)';//red, 0.4 opacity | ||
var FILL_COLOUR_BADIMAGERY = 'rgba(0,0,0,0.4)';//red, 0.4 opacity |
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.
black?
@feenster, just some comment changes! |
…-crash-for-archived-projects fix/6131 stats page crash for archived projects
No description provided.