-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpopup.css
More file actions
94 lines (78 loc) · 1.61 KB
/
popup.css
File metadata and controls
94 lines (78 loc) · 1.61 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
89
90
91
92
93
94
/*----------------------------------------------------------------------------*/
/* General. */
body {
min-width:357px;
overflow-x:hidden;
margin: 20px;
background-color: #444;
}
::-webkit-scrollbar {
width: 0;
}
#main-ui {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-pack: end;
height: 100%;
}
#tabs_list {
-webkit-box-flex: 1;
padding-top:10px;
color: #e1e1e1;
overflow-x: hidden;
overflow-y: scroll;
}
/*----------------------------------------------------------------------------*/
/* Tab or whole search area. */
#search-div,
.tab {
display: -webkit-box;
-webkit-box-align: center;
padding:5px 5px;
}
#search-div {
-webkit-border-radius: 15px;
border: 1px solid #CCC;
background-color: white;
}
.tab {
border-width: 1px;
border-style: solid;
border-color: transparent;
}
.tab.selected {
background-color: #689FB4;
}
/*----------------------------------------------------------------------------*/
/* Icon or spacer. */
#search-div img,
.tab img {
width:16px;
height:16px;
padding-right: 4px;
}
#search-div img,
.tab img[src=''] {
visibility: hidden;
}
/*----------------------------------------------------------------------------*/
/* Tab name or input. */
#input,
.tab .name {
-webkit-box-flex: 1;
margin: 0px;
padding: 0px;
border: none;
}
#input {
display: block;
/*padding: 5px;*/
outline: none;
font-family:"lucida grande",sans-serif;
font-size: 1em;
color: #333;
}
.tab .name {
font-family:"lucida grande",sans-serif;
font-size: 1em;
}