blob: e77055fefa0393cb2d9f37c617cd34884c896393 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/* Copyright (c) 2012 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. */
html {
overflow: hidden;
}
/* Outer frame of the dialog. */
body {
-webkit-box-orient: vertical;
-webkit-user-select: none;
display: -webkit-box;
font-family: segoe ui, arial, helvetica, sans-serif;
font-size: 12px;
height: 100%;
min-height: 150px;
position: absolute;
width: 100%;
}
/* Container for the detail list views. */
.dialog-body {
-webkit-box-flex: 1;
border: 1px #aaa solid;
border-radius: 3px;
display: -webkit-box;
margin: 12px 12px 6px;
}
/* Column text containers. */
.list-container {
-webkit-box-flex: 1;
display: -webkit-box;
}
/* Table splitter element */
.table-header-splitter {
-webkit-border-start: 1px #aaa solid;
background-color: inherit;
height: 20px;
margin-top: 4px;
}
/* Container for a table header. */
.table-header {
-webkit-box-sizing: border-box;
background-image: -webkit-linear-gradient(top, #f9f9f9, #e8e8e8);
border-bottom: 1px #aaa solid;
height: 28px;
}
/* Text label in a table header. */
.table-header-label {
cursor: default;
margin-top: 6px;
}
/* Task list in table. */
.list {
-webkit-box-flex: 1;
}
/* Title Column text containers. */
.detail-title {
display: -webkit-box;
height: 20px;
}
/* Bullets on the left of row. */
.table-row > .table-row-cell:first-child::before {
-webkit-border-radius: 3px;
background: #ccc;
content: '';
display: block;
margin: 7px 4px 7px 7px;
width: 6px;
}
/* Cells in table. */
.table-row-cell {
-webkit-box-orient: horizontal;
display: -webkit-box;
}
/* Containers of titles of tasks on the process. */
.detail-container-title {
-webkit-box-flex: 1;
-webkit-box-orient: vertical;
display: -webkit-box;
margin-left: 3px;
}
.detail-title-image {
height: 16px;
padding: 2px;
width: 16px;
}
.detail-title-text {
height: 20px;
padding-left: 1px;
}
/* Entire Table (including column header). */
.detail-table {
-webkit-box-flex: 1;
-webkit-box-orient: vertical;
border: 0;
display: -webkit-box;
}
/* cr.ui.Table has a black focus border by default, which we don't want. */
.detail-table:focus {
border: 0;
}
/* Container for footer area. */
.dialog-footer {
display: -webkit-box;
margin: 6px 12px 12px;
}
/* Container for the ok/cancel buttons. */
.footer-left-container {
-webkit-box-align: center;
-webkit-box-flex: 1;
display: -webkit-box;
text-align: left;
}
#about-memory-link {
color: rgb(17, 85, 204);
padding-left: 2px;
}
/* Container for the ok/cancel buttons. */
.footer-right-container {
-webkit-box-flex: 1;
text-align: right;
}
button {
margin: 2px 0 2px 8px;
}
|