1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * Your Stylesheet
- *
- * This stylesheet is loaded when Atom starts up and is reloaded automatically
- * when it is changed.
- *
- * If you are unfamiliar with LESS, you can read more about it here:
- * http://www.lesscss.org
- */
- .tree-view {
- }
- // style the background and foreground colors on the atom-text-editor-element
- // itself
- atom-text-editor {
- }
- // To style other content in the text editor's shadow DOM, use the ::shadow
- // expression
- atom-text-editor::shadow .cursor {
- }
- atom-ternjs-type {
- border: 1px solid rgba(116, 124, 128, 0.9);
- // background: rgba(240, 248, 252, 0.9); // for light themes
- background: rgba(42, 63, 75, 0.9); // for dark themes
- }
- .term2 .terminal {
- font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier;
- -webkit-font-smoothing: none;
- background: rgba(0, 0, 0, 0.9);
- }
- atom-notifications {
- opacity: 0.7;
- }
- atom-notifications:hover {
- opacity: 1.0;
- }
|