Basic chat UI complete.
This commit is contained in:
parent
f109314163
commit
e81a4c0973
11 changed files with 393 additions and 71 deletions
|
|
@ -129,13 +129,13 @@ button{
|
|||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
button:hover{
|
||||
button:hover:not([disabled]){
|
||||
color: var(--focus0-alt1);
|
||||
background-color: var(--focus0-alt0);
|
||||
box-shadow: var(--focus-glow0);
|
||||
}
|
||||
|
||||
button:active{
|
||||
button:active:not([disabled]){
|
||||
color: var(--focus0-alt0);
|
||||
background-color: var(--focus0-alt1);
|
||||
box-shadow: var(--focus-glow0-alt0);
|
||||
|
|
@ -179,13 +179,13 @@ textarea{
|
|||
color: var(--accent1);
|
||||
}
|
||||
|
||||
.danger-button:hover, .critical-danger-button, .critical-danger-button:hover{
|
||||
.danger-button:hover:not([disabled]), .critical-danger-button, .critical-danger-button:hover{
|
||||
background-color: var(--danger0-alt1);
|
||||
color: var(--danger0-alt0);
|
||||
box-shadow: var(--danger-glow0);
|
||||
}
|
||||
|
||||
.critical-danger-button:hover{
|
||||
.critical-danger-button:hover:not([disabled]){
|
||||
background-color: var(--danger0-alt2);
|
||||
}
|
||||
|
||||
|
|
@ -219,12 +219,12 @@ textarea{
|
|||
color: white;
|
||||
}
|
||||
|
||||
.positive-button:hover{
|
||||
.positive-button:hover:not([disabled]){
|
||||
color: var(--focus0-alt1);
|
||||
background-color: var(--focus0-alt0);
|
||||
}
|
||||
|
||||
.positive-button:active{
|
||||
.positive-button:active:not([disabled]){
|
||||
color: var(--focus0-alt0);
|
||||
background-color: var(--focus0-alt1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue