From 53646fd7e9f38c3bbffd3a820ca105605a4e3035 Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Thu, 7 Sep 2023 14:03:55 +0300 Subject: [PATCH 1/5] Delete extra margin #1120 --- www/kanban/app-kanban.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/www/kanban/app-kanban.less b/www/kanban/app-kanban.less index 8d85b10a4..ab2cb24ef 100644 --- a/www/kanban/app-kanban.less +++ b/www/kanban/app-kanban.less @@ -181,6 +181,10 @@ @media (hover: none) { margin-right: 20px; } + @media(max-width:500px) or (max-height:700px) + { + margin-right:0px; + } } .cp-kanban-cursors { @@ -344,6 +348,10 @@ @media (hover: none) { padding-right: 30px; } + @media(max-width:500px) or (max-height:700px) + { + padding-right:5px; + } } header { display: flex; From c68d317f2b32fd30a587162962037de4dc125b64 Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Tue, 12 Sep 2023 14:12:51 +0300 Subject: [PATCH 2/5] Make calendar menu visible on mobile #971 --- www/calendar/app-calendar.less | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/www/calendar/app-calendar.less b/www/calendar/app-calendar.less index e8b7be8ed..94d0bf471 100644 --- a/www/calendar/app-calendar.less +++ b/www/calendar/app-calendar.less @@ -530,6 +530,14 @@ } .cp-dropdown-container { position: initial; + + .cp-dropdown-content{ + @media screen and (max-width: 600px) + { + left: 50%; + min-width: 45%; + } + } } button.cp-calendar-actions { background-color: transparent; From 45ddf309d1fb4965a2c65b71737f4de620b7fe77 Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Tue, 26 Sep 2023 11:14:52 +0300 Subject: [PATCH 3/5] Make button text visible #1093 --- customize.dist/src/less2/include/sidebar-layout.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/customize.dist/src/less2/include/sidebar-layout.less b/customize.dist/src/less2/include/sidebar-layout.less index 397add8ac..85e7e25da 100644 --- a/customize.dist/src/less2/include/sidebar-layout.less +++ b/customize.dist/src/less2/include/sidebar-layout.less @@ -57,6 +57,10 @@ text-overflow: ellipsis; min-width: 0; display: none; + @media screen and (max-width: 600px) + { + display: inline; + } } } &:hover { From 0fda25c646bad87f9a7099232e40d5ee24f15d3a Mon Sep 17 00:00:00 2001 From: DianaXWiki Date: Tue, 26 Sep 2023 14:38:23 +0300 Subject: [PATCH 4/5] Make help button also hidden #1117 --- customize.dist/src/less2/include/toolbar.less | 1 - 1 file changed, 1 deletion(-) diff --git a/customize.dist/src/less2/include/toolbar.less b/customize.dist/src/less2/include/toolbar.less index b1eb49887..8448e88ab 100644 --- a/customize.dist/src/less2/include/toolbar.less +++ b/customize.dist/src/less2/include/toolbar.less @@ -72,7 +72,6 @@ &:hover { background-color: contrast(@cp_toolbar-bg, darken(@cp_toolbar-bg, 5%), lighten(@cp_toolbar-bg, 5%)); } - &.cp-markdown-help { float: right; } } } From 6531d3e763801e19fbc73e647894295eabe6274a Mon Sep 17 00:00:00 2001 From: David Benque Date: Wed, 27 Sep 2023 11:04:12 +0100 Subject: [PATCH 5/5] Add margin to sidebar buttons on small screens --- customize.dist/src/less2/include/sidebar-layout.less | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/customize.dist/src/less2/include/sidebar-layout.less b/customize.dist/src/less2/include/sidebar-layout.less index 85e7e25da..4a1146fb1 100644 --- a/customize.dist/src/less2/include/sidebar-layout.less +++ b/customize.dist/src/less2/include/sidebar-layout.less @@ -57,8 +57,7 @@ text-overflow: ellipsis; min-width: 0; display: none; - @media screen and (max-width: 600px) - { + @media screen and (max-width: @browser_media-medium-screen) { display: inline; } } @@ -154,7 +153,7 @@ padding-bottom: 20px; .cp-sidebarlayout-categories { .cp-sidebarlayout-category { - margin: 0; + margin: 0 0 0.5rem 0; span.cp-sidebar-layout-category-name { display: inline !important; // override "narrow" mode }