mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
64 lines
1.4 KiB
CSS
64 lines
1.4 KiB
CSS
setting-item[is-hidden],
|
|
setting-item[is-hidden] + setting-divider {
|
|
display: none !important;
|
|
}
|
|
|
|
.config-host-list {
|
|
width: 100%;
|
|
padding-left: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
.config-host-list[is-hidden],
|
|
.config-host-list[is-hidden] + setting-divider {
|
|
display: none !important;
|
|
}
|
|
|
|
setting-item .q-input {
|
|
height: 24px;
|
|
width: 100px;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
background: var(--bg_bottom_light);
|
|
border: 1px solid var(--border_dark);
|
|
}
|
|
|
|
setting-item .q-input .q-input__inner {
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
box-sizing: border-box;
|
|
color: var(--text_primary);
|
|
font-family: inherit;
|
|
font-size: 12px;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
width: 100%;
|
|
border: 1px solid transparent;
|
|
padding: 0px 8px;
|
|
}
|
|
|
|
setting-item .q-input input[type=number].q-input__inner::-webkit-outer-spin-button,
|
|
setting-item .q-input input[type=number].q-input__inner::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.config-host-list setting-item.setting-host-list-item .q-input {
|
|
width: 260px;
|
|
}
|
|
|
|
setting-item a {
|
|
color: var(--text-link);
|
|
}
|
|
setting-item a:hover {
|
|
color: var(--hover-link);
|
|
}
|
|
setting-item a:active,
|
|
setting-item a:visited {
|
|
color: var(--text-link);
|
|
} |