This repository was archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (74 loc) · 1.72 KB
/
styles.css
File metadata and controls
88 lines (74 loc) · 1.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.dropdown-arrow {
display: inline-block;
width: 7px;
height: 5px;
margin-left: 4px;
background-image: url("down-arrow.svg");
background-repeat: no-repeat;
position: relative;
top: 0;
}
.trash-icon {
position: absolute;
left: 7px;
width: 16px;
height: 16px;
font-size: 20px;
color: rgba(0, 0, 0, 0.5);
line-height: 15px;
text-align: center;
}
.trash-icon:hover {
color: rgba(0, 0, 0, 1);
}
#project-dropdown-toggle {
display: inline-block;
/* adjust margins to keep position #project-title position stable after extension is loaded */
margin: -3px 0px -2px -6px;
overflow: hidden;
padding: 0 5px;
white-space: nowrap;
}
#project-title {
/* vertical align center text */
height: 21px;
line-height: 21px;
}
#project-dropdown-toggle:hover .dropdown-arrow {
background-image: url("down-arrow.svg");
}
#project-dropdown.dropdown-menu:focus {
outline: none;
}
/* TODO: style the dropdown content */
#project-dropdown.dropdown-menu {
position: absolute;
display: block;
max-width: none;
z-index: 100;
}
#project-dropdown.dropdown-menu .divider {
margin: 5px 1px;
}
.recent-folder-link, .recent-folder, .recent-folder-path {
white-space: nowrap;
}
#project-dropdown.dropdown-menu li a {
padding: 5px 15px;
}
#project-dropdown.dropdown-menu .recent-folder-link, #project-dropdown.dropdown-menu #open-folder-link {
display: block;
padding: 5px 26px 5px 26px;
}
.recent-folder, #open-folder-link {
color: #454545;
}
.recent-folder-path {
color: #aaa;
}
#project-dropdown.dropdown-menu a.selected {
background: #E0F0FA;
}
#project-dropdown.dropdown-menu a:not(.selected):hover {
background: none;
}