From 6328505804224fb551bf84068afde4ea58132ea9 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 26 May 2022 17:46:05 -0400 Subject: make keyboard navigation easier --- README-stackrpms.md | 7 +++++++ infcloud.spec | 6 +++++- radicale_infcloud/web/css/default.css | 16 +++++++++------- radicale_infcloud/web/index.html | 5 +---- 4 files changed, 22 insertions(+), 12 deletions(-) diff --git a/README-stackrpms.md b/README-stackrpms.md index 7532fa6..6b678c7 100644 --- a/README-stackrpms.md +++ b/README-stackrpms.md @@ -56,3 +56,10 @@ Relevant config options for radicale (file `/etc/radicale/config`) include: * added feature "perUserAdditionalResources" * added English (24h) localization option * re-add settingsAccount which is useful after all + +2022-05-21 Version 0.13.1-stackrpms1.2 +* disabled upload button and stub functions entirely + +* Thu May 26 2022 B. Stack - 0.13.1-1stackrpms1.3 +- added visible outlines for keyboard navigation +- enabled selectable and navigable input for login button diff --git a/infcloud.spec b/infcloud.spec index 2d70d01..f09a4e5 100644 --- a/infcloud.spec +++ b/infcloud.spec @@ -2,7 +2,7 @@ %define pname RadicaleInfCloud Name: infcloud Version: 0.13.1 -Release: 1stackrpms1.2%{?dist} +Release: 1stackrpms1.3%{?dist} Summary: Rich web client for carddav and caldav BuildArch: noarch @@ -43,6 +43,10 @@ ln -s %{_sysconfdir}/%{name}/cache.manifest %{buildroot}%{_datadir}/%{name}/radi %doc README-stackrpms.md %changelog +* Thu May 26 2022 B. Stack - 0.13.1-1stackrpms1.3 +- added visible outlines for keyboard navigation +- enabled selectable and navigable input for login button + * Sat May 21 2022 B. Stack - 0.13.1-1stackrpms1.2 - Disable upload button and stub functions which caused problems diff --git a/radicale_infcloud/web/css/default.css b/radicale_infcloud/web/css/default.css index 14e8156..64aeef7 100644 --- a/radicale_infcloud/web/css/default.css +++ b/radicale_infcloud/web/css/default.css @@ -409,9 +409,10 @@ body, input, select, textarea position: static; /* required by fullcalendar */ } -*:focus -{ - outline: none; +/* stackrpms removed outline none which is bad for keyboard navigation */ +*:focus { + outline: 1px solid rgb(180,0,0); + -moz-outline: 1px solid currentcolor; } select @@ -768,7 +769,7 @@ input[type=text], input[type=password] { height: 19px; margin-left: 0px; - outline: none; + /* stackrpms removed outline none which is bad for keyboard navigation */ border: 0px; padding-left: 2px; /* it resizes the input size :( */ @@ -826,9 +827,10 @@ textarea resize: none; padding-left: 3px; - outline: none; - -moz-outline: none; - -moz-border-radius: 0px; + /* stackrpms removed outline none which is bad for keyboard navigation */ + /*outline: none; */ + /*-moz-outline: none; */ + /*-moz-border-radius: 0px; */ /* mobile safari remove rounded corners */ -webkit-appearance: none; diff --git a/radicale_infcloud/web/index.html b/radicale_infcloud/web/index.html index 26ee0d5..39b8583 100644 --- a/radicale_infcloud/web/index.html +++ b/radicale_infcloud/web/index.html @@ -93,10 +93,7 @@ along with this program. If not, see . - login - - - + -- cgit