forked from jesseweed/seti-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanes.less
132 lines (118 loc) · 2.63 KB
/
panes.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
atom-panel-container.modal {
atom-panel.modal {
background-color: rgba(0,0,0,0.8);
border: solid 1px rgba(0,0,0,0.5);
color: @white;
padding: 10px;
.tree-view-dialog {
label.icon-file-add {
font-size: 20px;
&:before {
display: none;
}
}
}
// COMMAND PALLETTE
.fuzzy-finder .list-group {
.two-lines, .event, .grammar-selector, li {
padding: 5px 10px;
}
}
// MINI EDITOR
.input(@input-background-color, @input-text-color);
.atom-text-editor[mini] {
margin-bottom: 0;
}
.error-message {
padding: 10px;
}
.list-group {
margin: 0;
.two-lines, .event, .grammar-selector, li {
background: @grey-dark;
height: 45px;
margin-bottom: 1px;
padding: 10px;
color: @white;
letter-spacing: 0.06em;
.icon-book,
.icon-file-binary,
.icon-file-pdf,
.icon-file-text,
.icon-file-media {
&::before {
font-size: 22px;
height: 22px;
position: relative;
top: 7px;
width: 22px;
}
}
.character-match {
color: #fff;
font-weight: 500;
padding: 0px 1px;
}
.status {
&::before {
top: 6px;
left: 6px;
}
&-modified {
color: @warn;
}
&-added {
color: @good;
}
}
transition: background 0.25s;
&.selected {
background: @black;
color: @seti-primary;
&::before {
display: none;
}
.status {
&-modified, &-added {
color: @seti-primary;
}
}
.primary-line {
color: @seti-primary;
&.icon-book,
&.icon-file-binary,
&.icon-file-pdf,
&.icon-file-text,
&.icon-file-media {
&::before {
color: @seti-primary;
}
}
}
.secondary-line {
color: @seti-primary;
}
}
.status {
display: inline-block;
float: left;
}
.primary-line {
float: left;
display: inline-block;
}
.secondary-line {
display: inline-block;
float: right;
padding-top: 5px;
font-weight: 300;
color: @grey-light;
}
clear: both;
}
}
.select-list {
background-color: @black;
}
}
}