blob: b5d36108986c52506d2c770e2fdefa57f399193c (
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
|
/* <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> */
.materials_library_panel hr {
float: left;
clear: both;
width: 100%;
display: block;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.5, #1d1d1d), color-stop(0.75, #424242));
border: none;
height: 2px;
margin: 4px 0 4px 0;
}
.materials_library_panel .ml_tree_holder {
height: 200px;
min-height: 200px;
max-height: 200px;
overflow-y: scroll;
}
.ml_buttons {
clear:both;
float: left;
margin: 0 -4px 0 4px;
width: 97%;
}
.ml_buttons .nj-skinned {
height: 22px;
overflow: hidden;
display: block;
cursor: pointer;
margin: 0 1px;
float: left;
width: 40px;
}
.ml_buttons .ml_duplicate_btn {
width: 60px;
}
.ml_buttons .ml_delete_btn {
width: 50px;
float: right;
}
.ml_buttons .nj-skinned:hover,
.ml_buttons .nj-skinned:active {
color: white;
}
|