blob: 6918e695c6e35f8ec806dc4d5f0637961b28cabd (
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-style-rule-item {
position: relative;
}
.css-style-rule-item:after {
content: "}";
padding: 0 0 0 4px;
position: relative;
top: -10px;
}
.style-rule-heading {
background-color: #f3f3f3;
border: 1px #e7e7e7;
border-style: solid none;
box-shadow: inset 0 0 1px #FFF;
padding: 4px;
}
.style-sheet-name {
color: #333;
position: absolute;
right: 8px;
text-decoration: none;
font-family: "Droid Sans", sans-serif;
}
.css-style-rule-item .nj-css-selector {
position: relative;
border: 1px solid rgba(0,0,0,0);
}
.css-style-rule-item .nj-css-selector.editable {
border: 1px solid #999;
border-radius: 3px;
box-shadow: 1px 1px 1px #CCC;
color: #333;
display: inline-block;
margin-right: 7px;
max-width: none;
overflow: visible;
-webkit-user-select: text;
}
.css-style-rule-item .nj-css-selector:after {
position: absolute;
right: -10px;
}
|