mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
138 lines
2.5 KiB
CSS
138 lines
2.5 KiB
CSS
.hunt_optimizer_MethodsForEpisodeView_table {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.core_Input {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
height: 24px;
|
|
border: var(--input-border);
|
|
}
|
|
|
|
.core_Input .core_Input_inner {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 3px;
|
|
border: var(--input-inner-border);
|
|
background-color: var(--input-bg-color);
|
|
color: var(--input-text-color);
|
|
outline: none;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.core_Input:hover {
|
|
border: var(--input-border-hover);
|
|
}
|
|
|
|
.core_Input:focus-within {
|
|
border: var(--input-border-focus);
|
|
}
|
|
|
|
.core_Input.disabled {
|
|
border: var(--input-border-disabled);
|
|
}
|
|
|
|
.core_Input.disabled .core_Input_inner {
|
|
color: var(--input-text-color-disabled);
|
|
background-color: var(--input-bg-color-disabled);
|
|
}
|
|
|
|
.core_DurationInput input {
|
|
text-align: center;
|
|
}
|
|
.core_Table {
|
|
position: relative;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
background-color: var(--bg-color);
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.core_Table tr {
|
|
display: flex;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.core_Table thead {
|
|
position: sticky;
|
|
display: inline-block;
|
|
top: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.core_Table thead tr {
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
.core_Table thead th {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.core_Table th,
|
|
.core_Table td {
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
padding: 3px 6px;
|
|
border-right: var(--border);
|
|
border-bottom: var(--border);
|
|
background-color: var(--bg-color);
|
|
}
|
|
|
|
.core_Table tbody {
|
|
user-select: text;
|
|
cursor: text;
|
|
}
|
|
|
|
.core_Table tbody th,
|
|
.core_Table tbody td {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.core_Table tbody th,
|
|
.core_Table tfoot th {
|
|
text-align: left;
|
|
}
|
|
|
|
.core_Table th.fixed {
|
|
position: sticky;
|
|
text-align: left;
|
|
}
|
|
|
|
.core_Table th.input {
|
|
padding: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
.core_Table th.input .core_DurationInput {
|
|
z-index: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
border: none;
|
|
}
|
|
|
|
.core_Table th.input .core_DurationInput:hover,
|
|
.core_Table th.input .core_DurationInput:focus-within {
|
|
margin: -1px;
|
|
height: calc(100% + 2px);
|
|
width: calc(100% + 2px);
|
|
}
|
|
|
|
.core_Table th.input .core_DurationInput:hover {
|
|
z-index: 4;
|
|
border: var(--input-border-hover);
|
|
}
|
|
|
|
.core_Table th.input .core_DurationInput:focus-within {
|
|
z-index: 6;
|
|
border: var(--input-border-focus);
|
|
}
|
|
|