BDC dashboard 💄 (#7292)

* cleanup

* Undo bad merge

* extra undefined check
This commit is contained in:
Charles Gagnon
2019-09-19 15:06:44 -07:00
committed by GitHub
parent e694e0273b
commit 9d3d64eef3
5 changed files with 49 additions and 41 deletions

View File

@@ -62,8 +62,11 @@ export namespace cssStyles {
export const title = { 'font-size': '14px', 'font-weight': '600' };
export const tableHeader = { 'font-weight': 'bold', 'text-transform': 'uppercase', 'font-size': '10px', 'user-select': 'text' };
export const hyperlink = { 'user-select': 'text', 'color': '#0078d4', 'text-decoration': 'underline', 'cursor': 'pointer' };
export const text = { 'margin-block-start': '0px', 'margin-block-end': '0px' };
export const nonSelectableText = { ...cssStyles.text, 'user-select': 'none' };
export const selectedResourceHeaderTab = { 'font-weight': 'bold', 'color': '' };
export const unselectedResourceHeaderTab = { 'font-weight': '', 'color': '#0078d4' };
export const selectedTabDiv = { 'border-bottom': '2px solid #000' };
export const unselectedTabDiv = { 'border-bottom': '1px solid #ccc' };
export const lastUpdatedText = { ...text, 'color': '#595959' };
}