forked from Alterdot/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolbar.css
More file actions
executable file
·62 lines (55 loc) · 1.14 KB
/
toolbar.css
File metadata and controls
executable file
·62 lines (55 loc) · 1.14 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
body {
margin: unset;
display: flex;
}
#maximized {
overflow: hidden;
display: flex;
align-items: center;
width: 100%;
height: 35px;
border-radius: 16px 16px 0px 0px;
border: 1px solid transparent;
border-bottom: 0px;
background-color: rgb(193 193 193 / 30%);
}
.arrow {
position: relative;
height: 26px;
width: 26px;
}
#trigger-minimize .arrow {
bottom: 4px;
}
#trigger-maximize .arrow {
bottom: -8px;
}
#toolbar-input {
background-color: rgb(0 0 0 / 15%);
border-radius: 2px;
border: 1px solid transparent;
height: 20px;
width: 72vw;
position: relative;
margin-left: 6px;
margin-bottom: 1px;
outline: none;
}
#toolbar-logo {
position: relative;
height: 28px;
margin-left: 6px;
margin-bottom: 1px;
}
#minimized {
overflow: hidden;
display: none;
align-items: center;
position: relative;
width: 26px;
height: 19px;
border-radius: 16px 16px 0px 0px;
border: 1px solid transparent;
border-bottom: 0px;
background-color: rgb(193 193 193 / 30%);
}