OLD | NEW |
1 body { | 1 body { |
2 color: black; | 2 color: black; |
3 cursor: default; | 3 cursor: default; |
4 font-family: Arial, sans-serif; | 4 font-family: Arial, sans-serif; |
5 font-size: 14px; | 5 font-size: 14px; |
6 margin: 0 10px; | 6 margin: 0 10px; |
7 min-width: 47em; | 7 min-width: 47em; |
8 } | 8 } |
9 | 9 |
10 button { | 10 button { |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 #policy-table td { | 137 #policy-table td { |
138 background-color: #eaeef3; | 138 background-color: #eaeef3; |
139 overflow: hidden; | 139 overflow: hidden; |
140 padding: 10px; | 140 padding: 10px; |
141 text-overflow: ellipsis; | 141 text-overflow: ellipsis; |
142 width: 20%; | 142 width: 20%; |
143 } | 143 } |
144 | 144 |
145 .toggler { | 145 .toggler { |
146 color: #808080; | 146 color: #808080; |
| 147 cursor: pointer; |
147 } | 148 } |
148 | 149 |
149 .collapsed { | 150 .collapsed { |
150 overflow: hidden; | 151 overflow: hidden; |
151 text-overflow: ellipsis; | 152 text-overflow: ellipsis; |
152 white-space: nowrap; | 153 white-space: nowrap; |
153 } | 154 } |
154 | 155 |
155 .expanded { | 156 .expanded { |
156 overflow: visible; | 157 overflow: visible; |
157 word-wrap: break-word; | 158 word-wrap: break-word; |
158 } | 159 } |
OLD | NEW |