mirror of
https://github.com/atom/atom.git
synced 2026-01-15 01:48:15 -05:00
54 lines
876 B
Plaintext
54 lines
876 B
Plaintext
atom-text-editor {
|
|
position: relative;
|
|
|
|
.scroll-view {
|
|
position: absolute;
|
|
contain: strict;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: auto;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.gutter-container {
|
|
float: left;
|
|
width: min-content;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.line-numbers {
|
|
width: max-content;
|
|
background-color: inherit;
|
|
contain: content;
|
|
}
|
|
|
|
.line-number {
|
|
width: min-content;
|
|
padding-left: .5em;
|
|
white-space: nowrap;
|
|
opacity: 0.6;
|
|
|
|
.icon-right {
|
|
.octicon(chevron-down, 0.8em);
|
|
display: inline-block;
|
|
visibility: hidden;
|
|
opacity: .6;
|
|
padding: 0 .4em;
|
|
|
|
&::before {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.lines {
|
|
contain: strict;
|
|
background-color: inherit;
|
|
float: left;
|
|
will-change: transform;
|
|
overflow: hidden;
|
|
}
|
|
}
|