blob: 8fdcbe03e463bb488274102d4e2dd6e3f988c044 (
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
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
|
/*
* Copyright (c) 2014 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.section {
position: relative;
margin-top: 1px;
}
.section > .header {
padding: 0 8px 0 5px;
min-height: 18px;
white-space: nowrap;
background-origin: padding-box;
background-clip: padding-box;
}
.section > .header::before {
-webkit-user-select: none;
background-image: url(Images/toolbarButtonGlyphs.png);
background-size: 352px 168px;
opacity: 0.5;
content: "a";
color: transparent;
text-shadow: none;
float: left;
width: 8px;
margin-right: 4px;
margin-top: 2px;
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
.section > .header::before {
background-image: url(Images/toolbarButtonGlyphs_2x.png);
}
} /* media */
.section > .header::before {
background-position: -4px -96px;
}
.section.expanded > .header::before {
background-position: -20px -96px;
}
.section > .header .title {
font-weight: normal;
word-wrap: break-word;
white-space: normal;
line-height: 18px;
}
.section > .header label {
display: none;
}
.section.expanded .header label {
display: inline;
}
.section > .header .subtitle {
float: right;
margin-left: 5px;
max-width: 55%;
text-overflow: ellipsis;
overflow: hidden;
}
.section > .header .subtitle a {
color: inherit;
}
.section > .properties {
display: none;
}
.section.expanded > .properties {
display: block;
}
|