fnya_merge-notes/styles.css
2023-09-26 22:21:59 +09:00

55 lines
744 B
CSS

.mergeNotesTitleLabel {
margin: 10px;
padding: 10px;
}
.mergeNotesTitle {
margin: 10px;
padding: 10px;
width: 500px;
}
.mergeNotesNote {
margin: 10px;
padding: 10px;
border: 1px solid;
height: 150px;
overflow-y: auto;
overflow-x: hidden;
}
.mergeNotesExplain {
margin: 5px;
}
.mergeNotesButton {
width: 100%;
text-align: right;
}
.mergeNotesFile {
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding: 6px;
}
.mergeNotesTooltip {
position: absolute;
top: 70px;
left: 120px;
width: 380px;
font-size: 16px;
text-align: left;
background-color: #f0e68c;
color: #111;
padding: 3px;
border: 1px solid #c0c0c0;
border-radius: 5px;
z-index: 1;
}
.mergeNotesHide {
display: none;
}