2019-03-11 10:16:34 +08:00
|
|
|
.Button {
|
2019-03-16 01:26:21 +08:00
|
|
|
flex: 0 0 auto;
|
2019-03-11 10:16:34 +08:00
|
|
|
margin-left: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Commits {
|
2019-03-16 02:51:35 +08:00
|
|
|
height: 100%;
|
2019-03-16 01:26:21 +08:00
|
|
|
min-width: 30px;
|
2019-03-11 10:16:34 +08:00
|
|
|
margin-left: 0.25rem;
|
2021-03-09 00:09:55 +08:00
|
|
|
overflow: visible;
|
2019-03-11 10:16:34 +08:00
|
|
|
}
|
2019-03-25 09:53:59 +08:00
|
|
|
.Commits:focus {
|
|
|
|
|
outline: none;
|
2019-04-08 00:00:52 +08:00
|
|
|
background-color: var(--color-button-background-focus);
|
2019-03-25 09:53:59 +08:00
|
|
|
}
|
2019-03-13 06:50:29 +08:00
|
|
|
|
2019-03-16 01:26:21 +08:00
|
|
|
.IndexLabel {
|
|
|
|
|
flex: 0 0 auto;
|
2019-03-14 07:25:29 +08:00
|
|
|
white-space: nowrap;
|
2019-03-14 05:57:52 +08:00
|
|
|
font-family: var(--font-family-monospace);
|
2019-03-17 05:06:41 +08:00
|
|
|
margin-left: 0.25rem;
|
2019-03-14 05:57:52 +08:00
|
|
|
}
|
2019-03-14 08:00:44 +08:00
|
|
|
|
|
|
|
|
.NoCommits {
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: var(--color-dim);
|
|
|
|
|
}
|
2021-07-15 08:37:02 +08:00
|
|
|
|
|
|
|
|
.Input {
|
|
|
|
|
background: none;
|
|
|
|
|
font-size: var(--font-size-sans-normal);
|
|
|
|
|
text-align: right;
|
|
|
|
|
font-family: var(--font-family-monospace);
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 0.125rem;
|
|
|
|
|
padding: 0.125rem;
|
|
|
|
|
color: var(--color-attribute-editable-value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Input:focus {
|
|
|
|
|
background-color: var(--color-button-background-focus);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|