mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-17 08:34:54 -04:00
Added statusBar to show cursor position, selections and so on
This commit is contained in:
parent
6e40df2887
commit
e08916763e
2 changed files with 122 additions and 2 deletions
|
@ -238,4 +238,47 @@ div[contenteditable]:empty:not(:focus):before{
|
|||
|
||||
.cm-trailing-space-new-line:before {
|
||||
content: '↵';
|
||||
|
||||
.status-bar {
|
||||
background: #1c1c1e;
|
||||
border-top: 1px solid #343434;
|
||||
color: #ccc;
|
||||
position: relative;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
font-size: 11px;
|
||||
line-height: 25px;
|
||||
height: 26px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.status-bar .status-info {
|
||||
color: #ccc;
|
||||
left: 10px;
|
||||
position: absolute;
|
||||
white-space: nowrap;
|
||||
max-width: 65%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.status-bar .status-info div {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.status-bar .status-file {
|
||||
color: #9a9a9a;
|
||||
}
|
||||
|
||||
.status-bar .status-indicators {
|
||||
background: #1c1c1e;
|
||||
color: #ccc;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
text-align: right;
|
||||
white-space: nowrap;
|
||||
max-width: 30%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue