/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
static/core-ui/syntax.less
35 строк
729 B
simurai
Move styles to core-ui
23 ноя 2018, 05:44
23 ноя 2018, 05:44
a710f13
Код
Авторство
О чём код?
@import "syntax-variables"; atom-text-editor { .lines { .markup { &.git-commit { &.changed { color: @syntax-color-modified; } &.deleted { color: @syntax-color-removed; } &.inserted { color: @syntax-color-added; } } } } } .define-selection-flash-color-if-not-defined() { @syntax-selection-flash-color: rgba(100, 255, 100, 0.7); } .define-selection-flash-color-if-not-defined(); @keyframes flash { from { background-color: @syntax-selection-flash-color; } to { background-color: null; } } atom-text-editor .flash.selection .region { animation-name: flash; animation-duration: .5s; animation-iteration-count: 1; }