-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.scss
More file actions
61 lines (50 loc) · 1.02 KB
/
styles.scss
File metadata and controls
61 lines (50 loc) · 1.02 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
/* You can add global styles to this file, and also import other style files */
@import './app/config';
#stage {
canvas {
position: absolute;
cursor: -webkit-grab;
transition: all 1s ease;
&:first-child {
left: 0;
}
&:last-child {
opacity: 0;
left: 100%;
}
}
&.split {
canvas:last-child {
opacity: 1;
left: 50%;
}
}
}
.dropdown-menu {
padding: 1.25rem;
}
/* Overwrite styles of ng2-auto-complete */
.ngui-auto-complete {
width: auto;
& > ul {
min-width: 100%;
box-shadow: rgba(0,0,0,0.2) 0 2px 6px 0;
white-space: nowrap;
max-height: 250px;
& li {
cursor: pointer;
padding: 10px 15px !important;
max-width: 500px;
overflow: hidden;
text-overflow: ellipsis;
&.selected {
color: $state-active-color;
background-color: $state-hover-color !important;
}
&:hover {
color: $state-active-color;
background-color: $state-hover-color !important;
}
}
}
}