From 2e684fd427097965834bd5f1f22196be99b82757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 19:49:28 +0200 Subject: Allow events to enter edit mode after creation. --- static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 193cc1fb..3a2a8c5d 100644 --- a/static/style.css +++ b/static/style.css @@ -509,7 +509,7 @@ along with their colors. overflow: visible; } -.event input { +.popup input { white-space: initial; border: 1px solid gray; max-width: 100%; -- cgit v1.2.3 From 70dd50111a339fd9fcf54cc2f9670c1313a154a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 20:25:56 +0200 Subject: Mercge CAL and CAL_bg css classes. --- static/style.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 3a2a8c5d..28901c8d 100644 --- a/static/style.css +++ b/static/style.css @@ -300,6 +300,7 @@ along with their colors. list-style-type: none; border-left-width: 1em; border-left-style: solid; + border-color: var(--color); padding-left: 1ex; /* force to single line */ @@ -507,6 +508,8 @@ along with their colors. transition: 0.3s; font-size: var(--event-font-size); overflow: visible; + background-color: var(--color); + color: var(--complement); } .popup input { @@ -607,6 +610,10 @@ along with their colors. padding-right: 1em; } +.eventlist .eventtext { + border-color: var(--color); +} + .eventlist .eventtext.tentative { border-left-style: dashed; } -- cgit v1.2.3 From 7deb6aac6d5af730f564a9f238c8feaf77f0e167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 20:35:12 +0200 Subject: Fix color in popups. --- static/style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 28901c8d..1a7b2f14 100644 --- a/static/style.css +++ b/static/style.css @@ -300,7 +300,7 @@ along with their colors. list-style-type: none; border-left-width: 1em; border-left-style: solid; - border-color: var(--color); + border-color: var(--color); padding-left: 1ex; /* force to single line */ @@ -508,8 +508,8 @@ along with their colors. transition: 0.3s; font-size: var(--event-font-size); overflow: visible; - background-color: var(--color); - color: var(--complement); + background-color: var(--color); + color: var(--complement); } .popup input { @@ -611,7 +611,7 @@ along with their colors. } .eventlist .eventtext { - border-color: var(--color); + border-color: var(--color); } .eventlist .eventtext.tentative { @@ -741,6 +741,7 @@ along with their colors. user-select: none; cursor: grab; + background-color: var(--color); } .popup-control .btn { -- cgit v1.2.3 From 263e64dfe8549e6c726fb06dd5cdc03fa6a90298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 20:41:28 +0200 Subject: Limit CAL_ class to once per 'thing'. --- static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 1a7b2f14..719cca1c 100644 --- a/static/style.css +++ b/static/style.css @@ -818,7 +818,7 @@ along with their colors. } .tab [type=radio]:checked ~ label ~ .content { - z-index: 1; + z-index: 1; } /* Other -- cgit v1.2.3 From e360d3566eb878a944dada510a0c7e8437a5554b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 21:31:52 +0200 Subject: Fix frontend for calendar choosing. --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 719cca1c..21543388 100644 --- a/static/style.css +++ b/static/style.css @@ -742,6 +742,10 @@ along with their colors. cursor: grab; background-color: var(--color); + /* Transition for background color + * Matches that of '.event'. + * TODO break out to common place */ + transition: 0.3s; } .popup-control .btn { -- cgit v1.2.3 From a20f61d45cf60d78dcc15a9dd711628452af941d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 11 Aug 2020 21:37:01 +0200 Subject: Generated event color. --- static/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 21543388..845443c2 100644 --- a/static/style.css +++ b/static/style.css @@ -641,8 +641,16 @@ along with their colors. } +/* + * All other CAL_ classes are generated by the backend. + * NOTE Possibly move this there. + */ +.CAL_Generated { + background-color: #55FF55; +} + .event.generated { - background-color: #55FF5550; + opacity: 40%; transition: none; } -- cgit v1.2.3 From 4082718439e4facecfe72a94076fb51f1b97cb14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 12 Aug 2020 16:58:03 +0200 Subject: Minor changes. --- static/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 845443c2..79fd06ab 100644 --- a/static/style.css +++ b/static/style.css @@ -849,6 +849,7 @@ along with their colors. .square { width: 1em; height: 1em; + background-color: var(--color); } /* Icalendar -- cgit v1.2.3