| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- /**
- Dark theme
- Author: alessandro.g89
- Source: https://userstyles.org/styles/122502/syncthing-dark
- **/
- body {
- color: #aaa !important;
- background-color: black !important;
- }
- a:hover,a:focus,a.focus{
- outline: none !important;
- }
- /* navbar */
- .navbar {
- background-color: #333 !important;
- border-color: #333 !important;
- border-width: 2px !important;
- }
- .navbar-text, .dropdown>a, .dropdown-menu>li>a, .hidden-xs>a, .navbar-link {
- color: #aaa !important;
- }
- .dropdown-menu {
- border-color: #333 !important;
- border-width: 2px !important;
- background-color: #222 !important;
- }
- .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
- color: #fff !important;
- background-color: #333 !important;
- }
- .open>.dropdown-toggle, .dropdown-toggle:hover {
- border-color: #333 !important;
- background-color: #222 !important;
- }
- .divider {
- background-color: #333 !important;
- height: 2px !important;
- }
- li.hidden-xs:hover, .navbar-link:hover, .navbar-link:focus {
- outline: none !important;
- border-color: #333 !important;
- background-color: #222 !important;
- }
- .dropdown-menu>.active>a {
- color: #fff !important;
- background-color: #217dbb !important;
- }
- /* main panel */
- .panel {
- background-color: #111 !important;
- border-width: 2px !important;
- }
- .panel-default {
- border-color: #222 !important;
- }
- .panel-default > .panel-heading {
- color: #aaa !important;
- border-color: #222 !important;
- background-color: #222 !important;
- }
- .panel-warning > .panel-heading {
- color: #222 !important;
- }
- .panel-progress {
- background: #3498db;
- }
- .panel-footer {
- background-color: #111 !important;
- border-width: 0 !important;
- }
- .table-striped>tbody>tr:nth-of-type(odd) {
- background-color: #181818 !important;
- }
- .panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group {
- border-top: 1px solid #222 !important;
- }
- .identicon rect {
- fill: #aaa;
- }
- .panel-warning .identicon rect {
- fill: #222;
- }
- .panel-heading:hover, .panel-heading:focus {
- text-decoration: none;
- }
- /* buttons */
- .btn {
- border-radius: 3px !important;
- border-width: 0px !important;
- }
- .btn:hover, .btn:focus, .btn.focus {
- outline: none !important;
- }
- .btn-default {
- color: #aaa !important;
- background-color: #333 !important;
- }
- .btn-default:hover, .btn-default:focus, .btn-default.focus {
- color: #fff !important;
- background-color: #484848 !important;
- }
- .btn-primary {
- background-color: #217dbb !important;
- }
- .btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
- background-color: #3498db !important;
- }
- .btn-warning {
- background-color: #c29d0b !important;
- }
- .btn-warning:hover, .btn-warning:focus, .btn-warning.focus {
- background-color: #f1c40f !important;
- }
- .btn-danger {
- background-color: #d62c1a !important;
- }
- .btn-danger:hover, .btn-danger:focus, .btn-danger.focus {
- background-color: #e74c3c !important;
- }
- /* modal dialogs */
- .modal-header {
- border-color: #222 !important;
- background-color: #222;
- }
- .modal-content {
- border-color: #666 !important;
- border-width: 2px !important;
- background-color: #111 !important;
- }
- .modal-footer {
- border-color: #111 !important;
- background-color: #111 !important;
- }
- .alert-warning {
- background-color: #c29d0b !important;
- }
- .alert-danger {
- background-color: #d62c1a !important;
- }
- .help-block {
- color: #aaa !important;
- }
- .form-control {
- color: #aaa !important;
- border-color: #444 !important;
- background-color: black !important;
- }
- code.ng-binding{
- color: #f99 !important;
- background-color: #444 !important;
- }
- .well, .form-control[readonly="readonly"], .popover { /* read-only fields*/
- color: #666 !important;
- border-color: #444 !important;
- background-color: #111 !important;
- }
- /* buttons for pagination */
- .pagination>li>a, .pagination>li>span {
- background-color: #333 !important;
- border-color: #484848 !important;
- }
- .pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>a.focus {
- background-color: #484848 !important;
- }
- /* progress bars */
- .progress-bar {
- background-color: #217dbb !important;
- }
- .progress-bar-success {
- background-color: #0A8522 !important;
- }
- .progress-bar-info {
- background-color: #9b59b6 !important;
- }
- .progress-bar-warning {
- background-color: #c29d0b !important;
- }
- .progress-bar-danger {
- background-color: #d62c1a !important;
- }
|