File size: 1,348 Bytes
b5ba7a5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
@import './base.css';
.visible-switch,
.group-switch,
.unjam-button,
.lock-switch {
padding: 3px;
}
.ant-collapse-header {
align-items: center !important;
justify-content: flex-start;
}
.ant-list-item {
justify-content: flex-start;
}
/* Right align last item in the flex container with `flex-start` */
.close-icon,
.coords-group,
.scale-ratio-input {
margin-left: auto;
}
.ant-col {
padding: 10px;
}
.image-thumbnail {
width: 50px;
height: 50px;
object-fit: cover;
margin-right: 8px;
}
.uploaded-file-item>div {
display: flex;
justify-content: flex-start;
align-items: center;
}
.ant-space {
margin-bottom: 5px;
}
li.keypoint-selected {
background-color: #ffdddd;
/* A light red for the background */
color: #b20000;
/* A darker red for the text */
}
.dark-theme li.keypoint-selected {
color: #ffdddd;
/* A light red for the text */
background-color: #5e0303;
/* A darker red for the background */
}
/* Make control-panel scrollable instead of whole page scrollable when
control-panel's content overflows. */
#control-panel {
height: 100vh;
overflow-y: auto;
}
/* Hide scroll bar for control-panel. */
#control-panel::-webkit-scrollbar {
display: none;
}
.ant-space {
flex-wrap: wrap;
}
.ant-input-number {
max-width: 100px;
} |