Skip to content

Commit

Permalink
📦 Rebuild CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
neoground committed Mar 28, 2021
1 parent 794f065 commit 74787f6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 12 deletions.
54 changes: 43 additions & 11 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5274,7 +5274,8 @@ table.table-sm td {
border-top: 1px solid #dee2e6; }

body {
-webkit-tap-highlight-color: transparent; }
-webkit-tap-highlight-color: transparent;
overflow-x: hidden; }

.text-muted {
font-weight: 300; }
Expand All @@ -5300,28 +5301,59 @@ body {
display: none !important; } }

@media (prefers-color-scheme: dark) {
.main-bg {
.auto-theme.main-bg {
background: #2e2e2e !important; }
.card, .dropdown-menu, .dropdown-menu a {
.auto-theme .card, .auto-theme .dropdown-menu, .auto-theme .dropdown-menu a {
background-color: #444 !important;
color: #ddd !important; }
.text-muted {
.auto-theme .text-muted {
color: #aaa !important; }
.purple-text {
.auto-theme .purple-text {
color: #BA68C8 !important; }
.deep-purple-text {
.auto-theme .deep-purple-text {
color: #9575CD !important; }
.indigo-text {
.auto-theme .indigo-text {
color: #7986CB !important; }
.teal-text {
.auto-theme .teal-text {
color: #4DB6AC !important; }
.brown-text {
.auto-theme .brown-text {
color: #A1887F !important; }
.blue-grey-text {
.auto-theme .blue-grey-text {
color: #90A4AE !important; }
.text-dark, .table {
.auto-theme .text-dark, .auto-theme .table {
color: #ccc !important; } }

.dark-theme.main-bg {
background: #2e2e2e !important; }

.dark-theme .card, .dark-theme .dropdown-menu, .dark-theme .dropdown-menu a {
background-color: #444 !important;
color: #ddd !important; }

.dark-theme .text-muted {
color: #aaa !important; }

.dark-theme .purple-text {
color: #BA68C8 !important; }

.dark-theme .deep-purple-text {
color: #9575CD !important; }

.dark-theme .indigo-text {
color: #7986CB !important; }

.dark-theme .teal-text {
color: #4DB6AC !important; }

.dark-theme .brown-text {
color: #A1887F !important; }

.dark-theme .blue-grey-text {
color: #90A4AE !important; }

.dark-theme .text-dark, .dark-theme .table {
color: #ccc !important; }

.lime {
background-color: #AFB42B !important; }

Expand Down
2 changes: 1 addition & 1 deletion src/css/style.min.css

Large diffs are not rendered by default.

1 comment on commit 74787f6

@jult
Copy link

@jult jult commented on 74787f6 Aug 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please provide the css not minimized in the skin distribution, so we can improve on it without having to make it too hard? The background colors (which defaults to indigo), are way too light, the high and low values not colored (even though they're set to be in the skin.conf!), the actual background could also be true black, and last but not least most fonts can be much smaller sized, and therefore make the tables smaller so they fit with more on mobile screens.

Please sign in to comment.