diff options
author | B. Stack <bgstack15@gmail.com> | 2022-05-26 17:46:05 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-05-26 17:46:05 -0400 |
commit | 6328505804224fb551bf84068afde4ea58132ea9 (patch) | |
tree | ab8a958a7a28bf66c6d46a507c159669a35aa4db | |
parent | disable stub upload stuff (diff) | |
download | radicaleinfcloud-6328505804224fb551bf84068afde4ea58132ea9.tar.gz radicaleinfcloud-6328505804224fb551bf84068afde4ea58132ea9.tar.bz2 radicaleinfcloud-6328505804224fb551bf84068afde4ea58132ea9.zip |
make keyboard navigation easier
-rw-r--r-- | README-stackrpms.md | 7 | ||||
-rw-r--r-- | infcloud.spec | 6 | ||||
-rw-r--r-- | radicale_infcloud/web/css/default.css | 16 | ||||
-rw-r--r-- | 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 <bgstack15@gmail.com> - 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 <bgstack15@gmail.com> - 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 <bgstack15@gmail.com> - 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 <http://www.gnu.org/licenses/>. </td> </tr> <tr> - <td><img data-type="system_login" alt="login" title="login" src="images/login.svg" onclick="if(event.shiftKey) ignoreServerSettings=true; $(this).closest('form').find('[type=\'submit\']').click();" /></td> - </tr> - <tr style="display:none"> - <td><input type="submit" /></td> + <td><input type="image" data-type="system_login" alt="login" title="login" src="images/login.svg" onclick="if(event.shiftKey) ignoreServerSettings=true; $(this).closest('form').find('[type=\'submit\']').click();" /></td> </tr> </table> </form> |