From 2141f5627346791285fd0834fa263d5cebbca13a Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Sun, 26 May 2019 02:04:54 +0300 Subject: [PATCH 1/5] Add span class homeLibrarytext --- src/components/homesections/homesections.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/homesections/homesections.js b/src/components/homesections/homesections.js index c4f5d064b3..d756d91635 100644 --- a/src/components/homesections/homesections.js +++ b/src/components/homesections/homesections.js @@ -235,7 +235,7 @@ define(['connectionManager', 'cardBuilder', 'appSettings', 'dom', 'apphost', 'la break; } - html += '' + icon + '' + item.Name + ''; + html += '' + icon + '' + item.Name + ''; } html += ''; From 64862269a1d637725286c39ec6c6dd019bcbe3b4 Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Sun, 26 May 2019 02:05:19 +0300 Subject: [PATCH 2/5] Add css --- src/components/homesections/homesections.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/homesections/homesections.css b/src/components/homesections/homesections.css index 647a9500d4..4d9da44e38 100644 --- a/src/components/homesections/homesections.css +++ b/src/components/homesections/homesections.css @@ -1,3 +1,7 @@ +.homeLibrarytext{ + padding-left: 5px +} + .homeLibraryButton { min-width: 18%; margin: .5em !important; @@ -8,4 +12,4 @@ .homeLibraryButton { width: 46% !important; } -} \ No newline at end of file +} From 8b638635c5d278e084f09143ba17666c642435fa Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Sun, 26 May 2019 02:06:09 +0300 Subject: [PATCH 3/5] Remove margin --- src/css/material-icons/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/src/css/material-icons/style.css b/src/css/material-icons/style.css index eaedd1725d..2d410b9985 100644 --- a/src/css/material-icons/style.css +++ b/src/css/material-icons/style.css @@ -12,7 +12,6 @@ letter-spacing: normal; text-transform: none; display: inline-block; - margin-right: 4px; white-space: nowrap; word-wrap: normal; direction: ltr; From 8eda13c0925451b12d060522d58c2a5b97ee8886 Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Mon, 27 May 2019 01:22:48 +0300 Subject: [PATCH 4/5] Add class homeLibraryIcon for md-icon --- src/components/homesections/homesections.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/homesections/homesections.js b/src/components/homesections/homesections.js index d756d91635..867fa117a0 100644 --- a/src/components/homesections/homesections.js +++ b/src/components/homesections/homesections.js @@ -235,7 +235,7 @@ define(['connectionManager', 'cardBuilder', 'appSettings', 'dom', 'apphost', 'la break; } - html += '' + icon + '' + item.Name + ''; + html += '' + icon + '' + item.Name + ''; } html += ''; From f6a0e2ebaea3024e16883a86ea91390ccb8809a5 Mon Sep 17 00:00:00 2001 From: grafixeyehero Date: Tue, 28 May 2019 04:51:27 +0300 Subject: [PATCH 5/5] Update css homesections --- src/components/homesections/homesections.css | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/components/homesections/homesections.css b/src/components/homesections/homesections.css index 4d9da44e38..45df67c482 100644 --- a/src/components/homesections/homesections.css +++ b/src/components/homesections/homesections.css @@ -1,7 +1,3 @@ -.homeLibrarytext{ - padding-left: 5px -} - .homeLibraryButton { min-width: 18%; margin: .5em !important; @@ -13,3 +9,17 @@ width: 46% !important; } } + +.homeLibraryIcon { + margin-left: .5em; + margin-right: .5em; + -webkit-flex-shrink: 0; + flex-shrink: 0 +} + +.homeLibraryText { + white-space: nowrap; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; + overflow: hidden +}