mirror of
https://github.com/onyx-and-iris/q3rcon-tui.git
synced 2026-04-08 21:23:30 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 923faa67ec | |||
| 76483a24b9 |
@@ -1,4 +1,4 @@
|
||||
# SPDX-FileCopyrightText: 2026-present onyx-and-iris <code@onyxandiris.online>
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
__version__ = '0.4.1'
|
||||
__version__ = '0.4.2'
|
||||
|
||||
@@ -44,35 +44,63 @@
|
||||
|
||||
Button {
|
||||
width: 100%;
|
||||
height: 3;
|
||||
height: 4;
|
||||
margin: 0 1;
|
||||
background: #5e81ac;
|
||||
color: #eceff4;
|
||||
border: none;
|
||||
text-style: bold;
|
||||
border: solid #5e81ac;
|
||||
}
|
||||
|
||||
Button:hover {
|
||||
background: #81a1c1;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #81a1c1;
|
||||
}
|
||||
|
||||
Button:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #88c0d0;
|
||||
}
|
||||
|
||||
Button.success {
|
||||
background: #a3be8c;
|
||||
border: solid #a3be8c;
|
||||
}
|
||||
|
||||
Button.success:hover {
|
||||
background: #8fbcbb;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #8fbcbb;
|
||||
}
|
||||
|
||||
Button.success:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
}
|
||||
|
||||
Button.warning {
|
||||
background: #ebcb8b;
|
||||
color: #2e3440;
|
||||
border: solid #ebcb8b;
|
||||
}
|
||||
|
||||
Button.warning:hover {
|
||||
background: #d08770;
|
||||
color: #eceff4;
|
||||
text-style: bold;
|
||||
border: solid #d08770;
|
||||
}
|
||||
|
||||
Button.warning:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
}
|
||||
|
||||
Button.error {
|
||||
@@ -81,6 +109,14 @@ Button.error {
|
||||
|
||||
Button.error:hover {
|
||||
background: #d08770;
|
||||
color: #eceff4;
|
||||
text-style: bold;
|
||||
}
|
||||
|
||||
Button.error:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
}
|
||||
|
||||
#quit {
|
||||
@@ -90,25 +126,55 @@ Button.error:hover {
|
||||
|
||||
#quit:hover {
|
||||
background: #d08770;
|
||||
border: solid #ebcb8b;
|
||||
color: #eceff4;
|
||||
text-style: bold;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#quit:focus {
|
||||
background: #d08770;
|
||||
color: #eceff4;
|
||||
text-style: bold;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#send {
|
||||
background: #a3be8c;
|
||||
border: solid #a3be8c;
|
||||
}
|
||||
|
||||
#send:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #88c0d0;
|
||||
}
|
||||
|
||||
#config {
|
||||
background: #ebcb8b;
|
||||
color: #2e3440;
|
||||
border: solid #ebcb8b;
|
||||
}
|
||||
|
||||
#config:hover {
|
||||
background: #d08770;
|
||||
color: #eceff4;
|
||||
text-style: bold;
|
||||
border: solid #d08770;
|
||||
}
|
||||
|
||||
#config:focus {
|
||||
background: #88c0d0;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #88c0d0;
|
||||
}
|
||||
|
||||
#send:hover {
|
||||
background: #8fbcbb;
|
||||
color: #2e3440;
|
||||
text-style: bold;
|
||||
border: solid #8fbcbb;
|
||||
}
|
||||
|
||||
/* Configuration Dialog Styles */
|
||||
|
||||
Reference in New Issue
Block a user