blob: 8502e863abad11ea4da31f280e92a5e5f6853bc5 (
plain)
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
|
.button-tab-area
{
flex-direction: row;
margin: 0;
}
.top-area
{
flex-direction: row;
margin: 0;
}
.refresh-button
{
background-image: resource("Refresh@2X");
background-color: transparent;
border-width: 0;
margin: 2px;
width: 18px;
height: 18px;
}
.button-tab
{
flex-grow: 1;
height: 24px;
margin: 4px 0 0 0;
border-radius: 0;
border-width: 1px 1px 0 1px;
background-color: #484848;
}
.button-tab-selected
{
background-color: #303030;
}
|