2014-01-31 04:55:43 +04:00
|
|
|
/*
|
|
|
|
* Your Stylesheet
|
|
|
|
*
|
|
|
|
* This stylesheet is loaded when Atom starts up and is reloaded automatically
|
|
|
|
* when it is changed.
|
2014-02-25 04:14:05 +04:00
|
|
|
*
|
2015-06-19 10:05:03 +03:00
|
|
|
* Uncomment the examples below to test or add your own CSS or Less.
|
2014-01-31 04:55:43 +04:00
|
|
|
*/
|
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// style the background color of the tree view
|
2013-01-31 03:30:18 +04:00
|
|
|
.tree-view {
|
2015-06-19 09:57:09 +03:00
|
|
|
// background-color: whitesmoke;
|
2013-01-31 03:30:18 +04:00
|
|
|
}
|
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// style the background and foreground colors on the atom-text-editor-element itself
|
2014-10-09 01:11:57 +04:00
|
|
|
atom-text-editor {
|
2015-06-19 09:57:09 +03:00
|
|
|
// color: white;
|
|
|
|
// background-color: hsl(180, 24%, 12%);
|
2013-02-01 23:13:22 +04:00
|
|
|
}
|
2014-01-31 04:57:27 +04:00
|
|
|
|
2015-06-19 09:57:09 +03:00
|
|
|
// To style other content in the text editor's shadow DOM, use the ::shadow expression
|
2015-01-13 20:06:54 +03:00
|
|
|
atom-text-editor::shadow .cursor {
|
2015-06-19 09:57:09 +03:00
|
|
|
// border-color: red;
|
2014-01-31 04:57:27 +04:00
|
|
|
}
|