From b63c6451d8ef860f0b97ae4297571d7199a1cfe2 Mon Sep 17 00:00:00 2001 From: Karl Prieb Date: Fri, 15 Oct 2021 16:32:08 -0300 Subject: [PATCH] fix general rule for buttons --- appinfo/info.xml | 2 +- css/unround.css | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index b740958..4b18b0e 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -8,7 +8,7 @@ # Unrounded Corners A Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them. ]]> - 1.0.1 + 1.0.2 agpl Oliver Paroczai UnroundedCorners diff --git a/css/unround.css b/css/unround.css index 196caca..f06e028 100644 --- a/css/unround.css +++ b/css/unround.css @@ -22,3 +22,14 @@ #uploadprogressbar { /* For upload progress bar */ border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill) !important; } + +/* For buttons */ +input[type='submit'], +input[type='submit'].icon-confirm, +input[type='button'], +button, +a.button, +.button, +select { + border-radius: var(--border-radius-pill) !important; +}