From ea1e533a5a267c2b30f768c6935a96dfe5fd4137 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Fri, 13 Dec 2024 18:00:30 +0700 Subject: [PATCH] Set `cursor: pointer;` for `input[type=file]` (#1711) * Set `cursor: pointer;` for `input[type=file]` * Update CHANGELOG.md --- CHANGELOG.md | 2 +- styles/templates/default/css/globals.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2dff895..ff847457e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ **Merged pull requests:** - Release 2.4.5 🍧️ ([belomaxorka](https://github.com/belomaxorka)) -- Set `cursor: pointer;` for buttons, inputs (buttons) [\#1710](https://github.com/torrentpier/torrentpier/pull/1710) ([belomaxorka](https://github.com/belomaxorka)) +- Set `cursor: pointer;` for buttons, inputs (buttons) [\#1710](https://github.com/torrentpier/torrentpier/pull/1710), [\#1711](https://github.com/torrentpier/torrentpier/pull/1711) ([belomaxorka](https://github.com/belomaxorka)) - Minor improvements [\#1705](https://github.com/torrentpier/torrentpier/pull/1705) ([belomaxorka](https://github.com/belomaxorka)) - New Crowdin updates [\#1704](https://github.com/torrentpier/torrentpier/pull/1704), [\#1706](https://github.com/torrentpier/torrentpier/pull/1706) ([Exileum](https://github.com/Exileum)) diff --git a/styles/templates/default/css/globals.css b/styles/templates/default/css/globals.css index 4ee07c886..af6a7f9a6 100644 --- a/styles/templates/default/css/globals.css +++ b/styles/templates/default/css/globals.css @@ -561,6 +561,7 @@ a.postLink-name, a.postLink-name:visited { input[type=button], input[type=submit], input[type=reset], +input[type=file], button { cursor: pointer; }