mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
This required moving the importable less files to a `less-imports` directory and adding that directory to the less path. Otherwise, atom.less would import ui-variables from its current directory (/static/ui-variables) as less searches the current directory before any other directories on the path.
19 lines
425 B
Plaintext
19 lines
425 B
Plaintext
@import "bootstrap/less/bootstrap";
|
|
|
|
// Import from the theme's variables with a fallback to /static/less-imports/ui-variables.less
|
|
@import "ui-variables";
|
|
@import "octicon-utf-codes";
|
|
@import "octicon-mixins";
|
|
|
|
@import "root-view.less";
|
|
@import "overlay.less";
|
|
@import "popover-list.less";
|
|
@import "notification.less";
|
|
@import "markdown.less";
|
|
@import "editor.less";
|
|
@import "select-list.less";
|
|
|
|
:focus {
|
|
outline: none;
|
|
}
|