mirror of
https://github.com/alberti42/obsidian-plugins-annotations.git
synced 2026-07-22 10:10:24 +00:00
28 lines
587 B
CSS
28 lines
587 B
CSS
/* styles.css */
|
|
|
|
/* Ensure the parent container uses full width */
|
|
.setting-item-info {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Make sure the input field takes the full width of its parent */
|
|
.plugin-comment {
|
|
width: 100%;
|
|
box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
|
|
}
|
|
|
|
.plugin-comment-annotation.plugin-comment-placeholder {
|
|
color: #CCCCCC; /* Standard placeholder color */
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Additional styles for consistency */
|
|
.plugin-comment-label {
|
|
padding-top: 5px;
|
|
}
|
|
|
|
|
|
.plugin-comment-annotation {
|
|
padding-top: 5px;
|
|
width: 100%;
|
|
}
|