Chromium Code Reviews| Index: chrome/browser/resources/policy/policy.css |
| diff --git a/chrome/browser/resources/policy/policy.css b/chrome/browser/resources/policy/policy.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..905e0259e4a08ddd01754a6e22c0230f40dc839e |
| --- /dev/null |
| +++ b/chrome/browser/resources/policy/policy.css |
| @@ -0,0 +1,100 @@ |
| +body { |
|
Mattias Nissler (ping if slow)
2011/08/09 13:20:40
Duplicate file?
|
| + font-family: Arial, sans-serif; |
| + font-size: 14px; |
| + color: black; |
| + cursor: default; |
| + min-width: 47em; |
| + margin-left:10px; |
| + margin-right:10px; |
| +} |
| + |
| +a:link { |
| + color: rgb(63, 110, 194); |
| +} |
| + |
| +a:active { |
| + color: rgb(37, 64, 113); |
| +} |
| + |
| +button { |
| + font-size: 0.9em; |
| +} |
| + |
| +#header { |
| + padding-top: 20px; |
| + border-bottom: 1px solid #000; |
| +} |
| + |
| +#about-policy-title { |
| + -webkit-padding-end: 24px; |
| + -webkit-user-select: none; |
| + color: #53637d; |
| + cursor: pointer; |
| + font-size: 200%; |
| + font-weight: normal; |
| + margin: 0; |
| + border-bottom: 1px solid #c6c9ce; |
| + padding-bottom: 14px; |
| + padding-top: 13px; |
| + text-shadow: white 0 1px 2px; |
| +} |
| + |
| +#main-content { |
| + min-height: 100%; |
| +} |
| + |
| +#status-title, #policies-title { |
| + font-size: 120%; |
| + font-weight: bold; |
| + width: 65%; |
| +} |
| + |
| +table { |
| + width: 100%; |
| +} |
| + |
| +section { |
| + border-bottom: 1px solid #EEE; |
| + margin-top: 17px; |
| + padding-bottom: 20px; |
| + width: 100%; |
| +} |
| + |
| +#fetch-policies-button, #unsent-policies-checkbox, #search-field { |
| + text-align: end; |
| + overflow: hidden; |
| +} |
| + |
| +#status-pane { |
| + display: -webkit-box; |
| + -webkit-box-flex: 1; |
| + -webkit-box-orient: horizontal; |
| + margin: 0 300px; |
| +} |
| + |
| +.status-box { |
| + padding: 2px; |
| + border: 1px solid #D9D9D9; |
| + margin: 20px 100px; |
| + width: 30%; |
| + overflow: hidden; |
| +} |
| + |
| +legend { |
| + padding: 0.2em 0.5em; |
| +} |
| + |
| +.status-box ul { |
| + list-style-type: none; |
| + padding-left: 10px; |
| +} |
| + |
| +.status-box li { |
| + padding: 3px; |
| +} |
| + |
| +#show-unsent-policies { |
| + overflow: ellipsis; |
| +} |
| + |
| + |