From 6d706d979e2e394acdc2e2713527681325f2fb98 Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 10 May 2020 12:46:52 -0400 Subject: [PATCH 1/4] Delete rotation It causes the text inside the search box in header to be escalonated --- app/styles/base/_shame.scss | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/styles/base/_shame.scss b/app/styles/base/_shame.scss index 1a3e0f8d25..642041f526 100644 --- a/app/styles/base/_shame.scss +++ b/app/styles/base/_shame.scss @@ -48,13 +48,6 @@ body { width: 100%; } -// Somewhat improves visual quality of circle outlines in header -// For non-retina displays -.site-search__input, -.notifications { - transform: rotate(0.01deg); -} - // Need to find the cause of horizontal scroll on mobile devices @media (max-width: 554px) { .global-container { From 53981ecde910566927976d3f9efcfb016400890b Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 10 May 2020 13:04:02 -0400 Subject: [PATCH 2/4] Adjusting privacy selector Set min-height because if the text is larger it overflows (for example look the spanish translation) --- app/styles/pages/_groups.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/styles/pages/_groups.scss b/app/styles/pages/_groups.scss index e999bc2c71..7fc607b951 100644 --- a/app/styles/pages/_groups.scss +++ b/app/styles/pages/_groups.scss @@ -701,7 +701,7 @@ $primary: #00cc99; display: block; margin: 5px; padding: 0; - height: 140px; + min-height: 160px; border: 1px solid $divider-color; color: shade($primary, 70); border-radius: 5px; From 8a21ab20f482b97335776f0a1aa86fc747016072 Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 10 May 2020 19:58:48 -0400 Subject: [PATCH 3/4] Update _groups.scss 140px also works --- app/styles/pages/_groups.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/styles/pages/_groups.scss b/app/styles/pages/_groups.scss index 7fc607b951..115a84aa5d 100644 --- a/app/styles/pages/_groups.scss +++ b/app/styles/pages/_groups.scss @@ -701,7 +701,7 @@ $primary: #00cc99; display: block; margin: 5px; padding: 0; - min-height: 160px; + min-height: 140px; border: 1px solid $divider-color; color: shade($primary, 70); border-radius: 5px; From c3e99954e5948a04bb2cdbd5d70944e4f2e67935 Mon Sep 17 00:00:00 2001 From: Richard Date: Sun, 10 May 2020 22:57:06 -0400 Subject: [PATCH 4/4] Update _library.scss Adjusted width for spanish (the button says Editar, and with the R it gets divided into two lines). Maybe it should get changed to 85. --- app/styles/pages/_library.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/styles/pages/_library.scss b/app/styles/pages/_library.scss index d5189d136f..3f17b0fcea 100644 --- a/app/styles/pages/_library.scss +++ b/app/styles/pages/_library.scss @@ -437,7 +437,7 @@ } } .edit-entry { - width: 80px; + width: 83px; text-align: center; line-height: 35px; }