mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
29 lines
475 B
CSS
29 lines
475 B
CSS
.grammar-view {
|
|
width: 50%;
|
|
margin-left: -25%;
|
|
}
|
|
|
|
.grammar-view ol {
|
|
max-height: 300px;
|
|
}
|
|
|
|
.grammar-view ol li {
|
|
padding: 2px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, .05);
|
|
line-height: 16px;
|
|
}
|
|
|
|
.grammar-view ol li.grammar {
|
|
padding-left: 21px;
|
|
}
|
|
|
|
.grammar-view ol li.current-grammar:before {
|
|
font-family: 'Octicons Regular';
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
-webkit-font-smoothing: antialiased;
|
|
color: #ccc;
|
|
content: '\f03a';
|
|
}
|