mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 15:18:24 +00:00
1. Rework Processor internal timing and throttling mechanism during I/O. 2. Revise Console statistics display, add instruction counter. 3. Correct (again) CFA/CFR instruction when sign is included in field. 4. Correct B-register modification of words during Cardatron and magnetic tape input. 5. Clear Processor alarms on Reset/Transfer. 6. Add links to wiki on index and home pages. 7. Eliminate B220Util CSS class functions in favor of DOM classList methods. 8. Attempt to reproduce "Sundland Beige" color for the panels. 9. Correct formatting of tab stops for B220ConsolePrinter. 10. Reduce Whippet printer speed from 5000 to 1000 cps. 11. Reduce Console update frequency from every 50 to 100 ms; increase lamp glow update factor from 0.25 to 0.75. 12. Allow click of white button below console register lamps in addition to clicking the lamps themselves to toggle the lamp state. 13. Rework the way that white vertical bars are drawn on registers. 14. Allow B220PaperTapeReader to properly send sign-2 alphanumeric words with trailing spaces if the tape image file has been space-trimmed on the right. 15. Clear the paper tape reader view window when loading new tapes. 16. Revise yet again the setCallback() delay deviation adjustment algorithm.
150 lines
3.9 KiB
CSS
150 lines
3.9 KiB
CSS
/***********************************************************************
|
|
* retro-220/webUI B220CardatronOutput.css
|
|
************************************************************************
|
|
* Copyright (c) 2017, Paul Kimpel.
|
|
* Licensed under the MIT License,
|
|
* see http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* Burroughs 220 emulator Cardatron Output Unit web interface style sheet.
|
|
************************************************************************
|
|
* 2017-01-19 P.Kimpel
|
|
* Original version, from retro-205 D205CardatronOutput.css.
|
|
***********************************************************************/
|
|
|
|
#writerBody {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
overflow: hidden;
|
|
padding: 0}
|
|
|
|
#CODiv {
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
right: 0px;}
|
|
|
|
#COStopBtn {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px}
|
|
|
|
#COStartBtn {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 76px}
|
|
|
|
#COEndOfSupplyBtn {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 144px}
|
|
|
|
#CORunoutSupplyBtn {
|
|
position: absolute;
|
|
line-height: 100%;
|
|
top: 8px;
|
|
left: 212px}
|
|
|
|
#ClearBtn {
|
|
top: 8px;
|
|
left: 288px}
|
|
#ClearBtnCaption {
|
|
top: 44px;
|
|
left: 288px;
|
|
width: 32px}
|
|
|
|
#COSetZSBtn {
|
|
top: 8px;
|
|
left: 336px}
|
|
#COSetZSBtnCaption {
|
|
top: 44px;
|
|
left: 336px;
|
|
width: 32px}
|
|
|
|
#StartMachineLamp {
|
|
top: 4px;
|
|
left: 384px}
|
|
#FormatSelect4Lamp {
|
|
top: 4px;
|
|
left: 416px}
|
|
#FormatSelect2Lamp {
|
|
top: 4px;
|
|
left: 448px}
|
|
#FormatSelect1Lamp {
|
|
top: 4px;
|
|
left: 480px}
|
|
|
|
#COOptionsDiv {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 8px;
|
|
width: auto}
|
|
|
|
#COGreenbarSpan {
|
|
display: none}
|
|
|
|
#COSupplyMeter {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 384px;
|
|
width: calc(100% - 394px);
|
|
height: 18px;
|
|
border: 1px solid white}
|
|
|
|
#COSupplyMeterCaption {
|
|
position: absolute;
|
|
top: 35px;
|
|
right: 18px;
|
|
z-index: 1;
|
|
height: 12px;
|
|
color: black;
|
|
font-weight: bold}
|
|
|
|
#COSupplyFrame {
|
|
position: absolute;
|
|
top: 56px;
|
|
bottom: 8px;
|
|
left: 8px;
|
|
right: 8px;
|
|
width: calc(100% - 18px);
|
|
height: calc(100% - 66px);
|
|
border: 1px solid black}
|
|
|
|
/* Zero-Suppress Panel */
|
|
|
|
#COZSGroup {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
right: 8px}
|
|
|
|
#COZSColumnList {
|
|
border: 1px solid white;
|
|
color: black;
|
|
width: 100%}
|
|
|
|
#COZSNotes {
|
|
position: absolute;
|
|
top: 40px;
|
|
width: 300px;
|
|
left: 0}
|
|
|
|
#COZSButtonGroup {
|
|
position: absolute;
|
|
top: 40px;
|
|
right: 0}
|
|
|
|
#COZSCancelBtn {
|
|
background-image: none;
|
|
background-color: #900;
|
|
height: 20px;
|
|
bottom: 0;
|
|
right: 64px}
|
|
|
|
#COZSOKBtn {
|
|
background-image: none;
|
|
background-color: #060;
|
|
height: 20px;
|
|
bottom: 0;
|
|
right: 0}
|