-
Notifications
You must be signed in to change notification settings - Fork 6
/
styles.less
181 lines (147 loc) · 3.53 KB
/
styles.less
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
* 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
*/
.theme-atom-dark-ui {
@tab-height: 32px;
.tab-bar {
padding: 0; // 0 0 0 75px;
box-shadow: none;
height: @tab-height;
// background: #232526;
background: #292c2f;
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
&:after {
content: none;
// height: 0px;
// border-width: 1px 0 0 0;
}
.tab {
background: none;
margin: 0 0 0 0;
padding: 0 0px 0 0;
text-align: center;
height: @tab-height;
line-height: @tab-height;
top: 0;
&.active {
box-shadow: none;
// background: #1b1d1e;
// background: #4182c4;
background: #393c3f;
width: auto;
-webkit-flex: 1;
}
&:before,
&:after {
content: none;
}
.close-icon {
color: #666;
// line-height: 7px;
line-height: @tab-height;
right: 5px;
cursor: pointer;
display: none;
}
&.modified:not(:hover) .close-icon {
right: 5px;
top: 12px;
display: block;
}
&:hover {
.close-icon {
display: block;
}
}
}
}
.tool-bar.tool-bar-16px {
// height: 37px;
}
atom-text-editor::shadow .gutter {
// :host .gutter {
border-right: 0;
}
atom-text-editor::shadow atom-text-editor-minimap,
atom-text-editor atom-text-editor-minimap,
html atom-text-editor-minimap {
border-left: 1px solid #000;
}
.tree-view {
background: #1d1f21;
padding-top: 10px;
}
// .overlay.from-top,
atom-panel.modal {
top: 20%;
}
}
.theme-atom-material-syntax-dark,
.theme-monokai-blackboard {
.atom-text-editor .line.highlight-line,
:host .line.highlight-line,
atom-text-editor .line.highlight-line,
atom-text-editor::shadow .line.highlight-line {
background: rgba(52, 61, 60, .4) !important;
}
.indent-guide-improved {
background-color: #333;
&.indent-guide-stack {
background-color: #333;
&.indent-guide-active {
background-color: #0066ff;
}
}
}
}
.theme-native-ui {
}
.theme-pen-paper-coffee-syntax,
.theme-fizzy,
// .theme-fizzy-syntax-theme,
.theme-atom-light-syntax,
.theme-atom-material-syntax-light,
.theme-one-light-syntax {
.atom-text-editor .line.highlight-line,
:host .line.highlight-line,
atom-text-editor .line.highlight-line,
atom-text-editor::shadow .line.highlight-line {
background: rgba(100, 100, 100, 0.1) !important;
}
atom-text-editor .current-result .region,
atom-text-editor::shadow .current-result .region {
border-color: #06f;
border-width: 2px;
}
atom-text-editor .find-result .region,
atom-text-editor::shadow .find-result .region {
border-color: #09f;
border-width: 2px;
}
:host .highlights .highlight-selected .region,
atom-text-editor .highlights .highlight-selected .region,
atom-text-editor::shadow .highlights .highlight-selected .region {
border-color: #93f;
border-width: 2px;
}
atom-text-editor::shadow atom-text-editor-minimap,
atom-text-editor atom-text-editor-minimap,
html atom-text-editor-minimap {
border-left: 1px solid #eee;
}
.indent-guide-improved {
background-color: #eee;
&.indent-guide-stack {
background-color: #eee;
&.indent-guide-active {
background-color: #0099ff;
}
}
}
}