blob: 01f0885ef289f94882d6e1aeeddec463a1053010 (
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
|
/* <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> */
.newfile{
font-size:12px;
width:510px;
height:500px;
padding-left: 15px;
padding-top: 15px;
background-color:#313131;
}
.newfile .container{
border: 1px groove #000000;
overflow: auto;
background-color:#5f5f5f;
}
.newfile .left-nav{
float:left;
width:27%;
height:90%;
overflow-x:hidden;
overflow-y:auto
}
.newfile .right-nav{
float:left;
width:70%;
height:90%;
overflow: hidden;
}
.newfile .right-top{
border: 1px groove #000000;
overflow: auto;
min-height:150px;
height:55%;
width:auto;
}
.newfile .right-bottom{
border: 1px groove #000000;
overflow: auto;
height:45%;
padding: 10px;
}
.newfile .driversList{
padding: 3px;
text-align: center;
}
.newfile .driversList:hover{
cursor:pointer;
}
.newfile .projectTypeHeader{
border-bottom:1px solid #000000;
padding:5px;
text-align: center;
font-weight: bold;
}
.newfile .highlighted{
background-color: #343434;
}
.newfile .buttons{
float:right;
margin-top: 7px;
}
.newfile .disable{
color:#5f5f5f;
cursor:auto;
}
.newfile .hide{
display: none;
}
.newfile .treeArrow + .name{
font-weight: bold;
}
|