37 lines
906 B
JavaScript
37 lines
906 B
JavaScript
// component selectors
|
|
const COLLAPSE_BUTTON = 'gitlab-collapse';
|
|
const COMMENT_BOX = 'gitlab-comment';
|
|
const COMMENT_BUTTON = 'gitlab-comment-button';
|
|
const FORM = 'gitlab-form-wrapper';
|
|
const LOGIN = 'gitlab-login';
|
|
const LOGOUT = 'gitlab-logout-button';
|
|
const NOTE = 'gitlab-validation-note';
|
|
const REMEMBER_TOKEN = 'gitlab-remember_token';
|
|
const REVIEW_CONTAINER = 'gitlab-review-container';
|
|
const TOKEN_BOX = 'gitlab-token';
|
|
|
|
// colors — these are applied programmatically
|
|
// rest of styles belong in ./styles
|
|
const BLACK = 'rgba(46, 46, 46, 1)';
|
|
const CLEAR = 'rgba(255, 255, 255, 0)';
|
|
const MUTED = 'rgba(223, 223, 223, 0.5)';
|
|
const RED = 'rgba(219, 59, 33, 1)';
|
|
const WHITE = 'rgba(255, 255, 255, 1)';
|
|
|
|
export {
|
|
COLLAPSE_BUTTON,
|
|
COMMENT_BOX,
|
|
COMMENT_BUTTON,
|
|
FORM,
|
|
LOGIN,
|
|
LOGOUT,
|
|
NOTE,
|
|
REMEMBER_TOKEN,
|
|
REVIEW_CONTAINER,
|
|
TOKEN_BOX,
|
|
BLACK,
|
|
CLEAR,
|
|
MUTED,
|
|
RED,
|
|
WHITE,
|
|
};
|