forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCategoryList.scss
More file actions
64 lines (55 loc) · 1.07 KB
/
CategoryList.scss
File metadata and controls
64 lines (55 loc) · 1.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Copyright (c) 2016-present, Parse, LLC
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
@import 'stylesheets/globals.scss';
.class_list {
position: relative;
margin-bottom: 5px;
border-left: 1px solid #3e87b2;
a {
display: block;
padding-left: 12px;
height: 20px;
line-height: 20px;
color: #8fb9cf;
font-size: 12px;
&.active {
color: white;
}
&:hover{
color: white;
}
span {
display: block;
&:first-of-type {
@include DosisFont;
float: right;
width: 50px;
text-align: right;
}
&:last-of-type {
margin-right: 50px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
}
.highlight {
position: absolute;
width: 1px;
height: 20px;
background: white;
transition: top 0.2s cubic-bezier(1, 0, 0, 1);
}
.separator {
margin: 6px 0;
background-color: #3e87b2;
border: 0;
height: 1px;
}