From a97bfb894333e75e28db14c6998e6a231710d109 Mon Sep 17 00:00:00 2001 From: Mikrz Date: Tue, 9 Mar 2021 21:45:49 -0500 Subject: [PATCH] Updating for Sab servers page date boxes Sab added date boxes for metric range selection and account expiration. This adds a selector for "date" type boxes to regular and focused, as only hovered boxes were being styled before. --- CSS/themes/sabnzbd/sabnzbd-base.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CSS/themes/sabnzbd/sabnzbd-base.css b/CSS/themes/sabnzbd/sabnzbd-base.css index b72f98df..94dd1099 100644 --- a/CSS/themes/sabnzbd/sabnzbd-base.css +++ b/CSS/themes/sabnzbd/sabnzbd-base.css @@ -477,14 +477,14 @@ table { } /*Input*/ -input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="password"], textarea, select { +input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="password"], input[type="date"], textarea, select { border: none; background-color: rgba(255, 255, 255, 0.25); border-radius: 3px !important; color: #fff !important; outline: none; } -input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="number"]:focus, input[type="password"]:focus, textarea:focus, select:focus { +input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="date"]:focus, textarea:focus, select:focus { border: none; background-color: rgb(25, 26, 28); border-radius: 3px !important; @@ -651,4 +651,4 @@ label { } #modal-options .table-server-connections th:last-child { border-right: none; -} \ No newline at end of file +}