fix small formbutton

This commit is contained in:
Wirlaburla 2023-07-29 19:17:27 -05:00
parent 6a248f4593
commit 19d6e1d19f
6 changed files with 14 additions and 27 deletions

BIN
card/steel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
card/t6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

View File

@ -9,6 +9,17 @@
flex-shrink: 0;
}
button.formbutton {
background: var(--default-button-background);
border: var(--default-button-border);
font-family: var(--primary-font);
cursor: pointer;
width: 32px;
height: 32px;
padding: 0px;
margin: 2px;
}
.button:hover > a > img:nth-of-type(1) {
filter: contrast(50%);
}
@ -89,26 +100,17 @@
margin-right: 4px;
}
.oddbutton {
position: absolute;
}
.fakebutton {
display: inline-block !important;
cursor: pointer;
}
.button:hover, .button.selected {
.button:hover, .button.selected, button.formbutton:hover {
background: var(--hover-button-background);
border: var(--hover-button-border);
}
.button:active {
.button:active, button.formbutton:active {
background: var(--active-button-background);
border: var(--active-button-border);
}
.button.disabled, .longbutton.disabled, .smallbutton.disabled {
.button.disabled, .longbutton.disabled, .smallbutton.disabled, button.formbutton.disabled {
background: var(--disabled-button-background);
border: var(--disabled-button-border);
}

BIN
logos/full/glively.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
logos/icon/glively.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 B

View File

@ -1330,21 +1330,6 @@ heading .button {
padding: 8px;
}
.formbutton button {
background: none;
color: var(--main-text);
text-decoration: none;
display: flex;
align-items: center;
width: 100%;
height: 100%;
font-family: var(--primary-font);
border: none;
box-sizing: content-box;
padding: 0px;
cursor: pointer;
}
.wrapper table input {
width: calc(100% - 20px);
}