-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.less
More file actions
51 lines (44 loc) · 1.19 KB
/
Copy pathstyles.less
File metadata and controls
51 lines (44 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
atom-notifications {
top: 50px; // move notifications down a bit
}
/** MINIMAP */
// hide the default scrollbar
// atom-text-editor .vertical-scrollbar,
// atom-text-editor::shadow .vertical-scrollbar {
// opacity: 0;
// width: 0;
// }
// no pointer events on the minimap.
// atom-text-editor atom-text-editor-minimap,
// atom-text-editor::shadow atom-text-editor-minimap {
// pointer-events: none;
// }
// pointer event in the selected area of the minimap
// atom-text-editor atom-text-editor-minimap::shadow .minimap-visible-area,
// atom-text-editor::shadow atom-text-editor-minimap::shadow .minimap-visible-area {
// pointer-events: auto;
// }
atom-text-editor {
&, &.editor {
atom-text-editor-minimap {
display: none;
}
}
&.is-focused {
&, &.editor {
atom-text-editor-minimap {
display: block;
}
}
}
}