mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-15 03:23:45 +00:00
00905d1829
- Show counts of errors/warnings/info annotations. This is useful because the annotations are in the gutter, so in big files it takes a lot of scrolling to look for errors - Clicking the totals count skips you to the 'next' annotation - If the current line contains an error, show the message of the error in the status bar. - Show the current line:column number, the selection range and the editor mode. - Degrades to a useful and readable but not pretty state in IE7 More complex version of: Ib9f08fcbc0365302756095b9027289736856fc73 Bug: 63294 Change-Id: Ided0804d5eb7864452287087dd1cf5a3dd8ff078
39 lines
674 B
CSS
39 lines
674 B
CSS
.codeEditor-status {
|
|
clear: both;
|
|
width: 100%;
|
|
background-color: #F0F0F0;
|
|
border-top: 1px solid silver;
|
|
display: table;
|
|
}
|
|
|
|
.codeEditor-status .codeEditor-status-worker-cell.ace_gutter-cell {
|
|
background-position: 0 center;
|
|
}
|
|
|
|
.codeEditor-status-worker {
|
|
padding: 0 0.3em;
|
|
cursor: pointer;
|
|
display: table-cell;
|
|
*float: left;
|
|
*width: 10em;
|
|
}
|
|
|
|
.codeEditor-status-message {
|
|
border-left: 1px solid silver;
|
|
border-right: 1px solid silver;
|
|
padding: 0 0.3em;
|
|
width: 100%;
|
|
display: table-cell;
|
|
*float: left;
|
|
*width: auto;
|
|
}
|
|
|
|
.codeEditor-status-line {
|
|
padding: 0 0.3em;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
display: table-cell;
|
|
*float: right;
|
|
*width: 4em;
|
|
}
|