-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquickbar.css
102 lines (87 loc) · 1.82 KB
/
quickbar.css
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
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
.mcp-quick-bar-container {
display: flex;
flex-flow: row nowrap;
justify-content: center;
border-top: 1px solid rgba(124, 134, 149, 0.18);
}
.mcp-quick-bar {
max-width: 1230px;
width: 100%;
box-sizing: border-box;
display: flex;
flex-flow: row nowrap;
align-items: center;
padding: 8px 30px;
}
.mcp-quick-bar a {
color: #494c4e;
text-decoration: none;
}
.mcp-quick-bar img {
height: 1em;
}
.mcp-quick-bar-first-time-msg {
font-size: 16px;
margin-left: 20px;
}
.mcp-add-button {
margin-left: 30px;
padding: 4px 8px;
outline: 0;
cursor: pointer;
box-sizing: border-box;
border: 1px solid #e3e9f1;
border-radius: 0.4rem;
font-family: "Lato", sans-serif;
}
.mcp-class {
position: relative;
display: inline-block;
margin-left: 30px;
}
.mcp-class:hover .mcp-class-dropdown {
display: flex;
}
.mcp-class-link {
display: block;
font-weight: normal;
color: #494c4e;
text-decoration: none;
}
.mcp-class-dropdown {
display: none;
position: absolute;
left: -16px;
z-index: 10;
}
.mcp-class-dropdown-content {
display: flex;
flex-flow: column nowrap;
margin-top: 8px;
background: linear-gradient(to bottom, white, #f9fbff);
border: 1px solid #e3e9f1;
border-radius: 0.4rem;
box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.mcp-class-dropdown-content a {
font-weight: normal;
color: #494c4e;
text-decoration: none;
padding: 8px 12px;
}
.mcp-class-dropdown-content a:first-child {
padding-top: 12px;
border-radius: 0.4rem 0.4rem 0 0;
}
.mcp-class-dropdown-content a:hover {
background: #eeeeee;
}
.mcp-class-dropdown-content button {
border: none;
border-radius: 0 0 0.4rem 0.4rem;
font-family: "Lato", sans-serif;
padding: 8px 12px;
width: max-content;
cursor: pointer;
}