Browse Source

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.
pull/156/head
Mikrz 4 years ago
committed by GitHub
parent
commit
a97bfb8943
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CSS/themes/sabnzbd/sabnzbd-base.css

6
CSS/themes/sabnzbd/sabnzbd-base.css

@ -477,14 +477,14 @@ table {
} }
/*Input*/ /*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; border: none;
background-color: rgba(255, 255, 255, 0.25); background-color: rgba(255, 255, 255, 0.25);
border-radius: 3px !important; border-radius: 3px !important;
color: #fff !important; color: #fff !important;
outline: none; 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; border: none;
background-color: rgb(25, 26, 28); background-color: rgb(25, 26, 28);
border-radius: 3px !important; border-radius: 3px !important;
@ -651,4 +651,4 @@ label {
} }
#modal-options .table-server-connections th:last-child { #modal-options .table-server-connections th:last-child {
border-right: none; border-right: none;
} }

Loading…
Cancel
Save