blob: 6d296a8edacb77f60016b914672ff00dd5588769 (
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
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
.css-panel {
color: #FFF;
display: -webkit-box;
height: 100%;
-webkit-box-orient: vertical;
}
.css-panel > h3 {
background-color: #333;
border-top: 1px solid #3D3D3D;
color: #FFF;
cursor: default;
font-size: 12px;
font-weight: normal;
height: 16px;
margin: 0;
padding: 4px 0 2px 10px;
vertical-align: top;
-webkit-box-flex: 0;
-webkit-user-select: none;
}
.css-panel .style-sheets-view-container {
-webkit-box-flex: 0;
min-height: 41px;
}
.css-panel .styles-view-container {
-webkit-box-flex: 1;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.panel-message {
background-color: rgba(255,255,255, 0.1);
border: 1px dashed rgba(255,255,255, 0.2);
border-radius: 4px;
color: #CCC;
font-size: 11px;
font-weight: normal;
margin: 0 8px;
padding: 5px;
position: relative;
text-shadow: 1px 1px 0px #333;
text-align: center;
top: 8px;
-webkit-box-flex: 0;
}
|