mirror of
https://github.com/transmission/transmission
synced 2025-01-30 10:52:00 +00:00
feat: web client style (#2609)
* fix(web): border-radius added to mainwin-toolbar icons * fix(web): --color-fg-on-popup added for font visibility when dark mode * chore(web): add .gitattributes Since transmission-app.js is a generated file, should be treated as a binary to avoid conflict. * chore: rebuild transmission-app.js Co-authored-by: trainto <trainto@gmail.com>
This commit is contained in:
parent
eeccc3788f
commit
708fc1531e
3 changed files with 8 additions and 2 deletions
2
web/.gitattributes
vendored
Normal file
2
web/.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
transmission-app.js -diff -merge
|
||||
transmission-app.js linguist-generated=true
|
2
web/public_html/transmission-app.js
generated
2
web/public_html/transmission-app.js
generated
File diff suppressed because one or more lines are too long
|
@ -103,6 +103,7 @@ $image-upload-download: 'images/up-and-down-arrows.svg';
|
|||
--color-fg-disabled: #{$grey-400};
|
||||
--color-fg-error: #{$red-500};
|
||||
--color-fg-name: #{$grey-800};
|
||||
--color-fg-on-popup: #{$grey-800};
|
||||
--color-fg-port-closed: #{$red-500};
|
||||
--color-fg-port-open: #{$green-500};
|
||||
@media (prefers-color-scheme: dark) {
|
||||
|
@ -210,6 +211,7 @@ $toolbar-height: $toolbar-height-number * 1px;
|
|||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
border: 0;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
height: $toolbar-height;
|
||||
margin-right: 6px;
|
||||
|
@ -1216,6 +1218,7 @@ $popup-top: 61px; // TODO: ugly that this is hardcoded
|
|||
|
||||
background: $background-color;
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
|
||||
color: var(--color-fg-on-popup);
|
||||
position: absolute;
|
||||
z-index: $z-index-popup;
|
||||
|
||||
|
@ -1255,6 +1258,7 @@ $popup-top: 61px; // TODO: ugly that this is hardcoded
|
|||
);
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
|
||||
color: var(--color-fg-on-popup);
|
||||
padding: 20px;
|
||||
position: fixed;
|
||||
width: 200px;
|
||||
|
@ -1285,7 +1289,6 @@ $popup-top: 61px; // TODO: ugly that this is hardcoded
|
|||
a,
|
||||
button,
|
||||
label {
|
||||
color: var(--color-fg-primary);
|
||||
font-size: 1em;
|
||||
|
||||
&:disabled {
|
||||
|
@ -1449,6 +1452,7 @@ $logo-size: 64px;
|
|||
}
|
||||
|
||||
.dialog-window {
|
||||
color: var(--color-fg-on-popup);
|
||||
display: grid;
|
||||
grid-column-gap: 12px;
|
||||
grid-template-areas:
|
||||
|
|
Loading…
Reference in a new issue