-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathurl_selector.css
54 lines (53 loc) · 1.08 KB
/
url_selector.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
.url_selector {
display: flex;
flex-wrap: wrap;
justify-content: center;
cursor: default;
user-select: none;
text-wrap: nowrap;
max-height: 100px;
overflow-y: scroll;
}
.url_selector span {
background-color: #222;
border: 2px solid #222;
border-radius: 5px;
font-family: sans-serif;
font-weight: bold;
overflow-x: hidden;
}
.url_selector span.host:not(#domain):after {
content: '.';
}
.url_selector span.path:before {
content: '/';
}
.url_selector span.start {
background-color: #337;
border: 2px solid #337;
border-right: none;
border-radius: 5px 0 0 5px;
}
.url_selector span.start ~ * {
background-color: #337;
border: 2px solid #337;
border-right: none;
border-left: none;
border-radius: 0;
}
.url_selector span.end {
background-color: #337;
border: 2px solid #337;
border-left: none;
border-radius: 0 5px 5px 0;
}
.url_selector span.start.end {
border: 2px solid #337;
border-radius: 5px;
}
.url_selector span.end ~ span {
background-color: #222;
border: 2px solid #222;
border-radius: 5px;
}
/* vim: set et ts=2 sts=2 sw=2 :*/