blob: 8bb90331d2da419e8ca96ba9a70c085e00b1e7ee (
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
|
/* <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> */
.rule-list-container {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-flex: 1;
}
.rule-list {
background-color: #FFF;
background: #FFF -webkit-linear-gradient(top, rgba(0,0,0,0.12) 0%,rgba(0,0,0,0) 4px);
color: #333;
display: -webkit-box;
font-family: monospace;
padding: 0;
margin: 0;
overflow-y: scroll;
-webkit-box-orient: vertical;
-webkit-box-flex: 1;
}
.rule-list li {
list-style-type: none;
margin: 3px 6px;
position: relative;
}
|