history content has fixed width to prevent jumping based on size

This commit is contained in:
azivner 2017-09-25 21:33:26 -04:00
parent a3425a09ff
commit c315975995

View File

@ -173,13 +173,13 @@
<div id="noteHistoryDialog" title="Note history" style="display: none;"> <div id="noteHistoryDialog" title="Note history" style="display: none;">
<div style="display: flex;"> <div style="display: flex;">
<select id="noteHistoryList" size="25" style="flex-grow: 2; height: 630px;"> <select id="noteHistoryList" size="25" style="width: 150px; height: 630px;">
</select> </select>
<div id="noteHistoryContentWrapper" style="flex-grow: 3; margin-left: 20px;"> <div id="noteHistoryContentWrapper" style="flex-grow: 1; margin-left: 20px;">
<h3 id="noteHistoryTitle" style="margin: 3px;"></h3> <h3 id="noteHistoryTitle" style="margin: 3px;"></h3>
<div id="noteHistoryContent" style="height: 600px; overflow: auto;"></div> <div id="noteHistoryContent" style="height: 600px; width: 600px; overflow: auto;"></div>
</div> </div>
</div> </div>
</div> </div>