Chromium Code Reviews| Index: chrome/browser/resources/policy.css |
| diff --git a/chrome/browser/resources/policy.css b/chrome/browser/resources/policy.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b5ea61e761caeb59e708740b4713544ece0ccea1 |
| --- /dev/null |
| +++ b/chrome/browser/resources/policy.css |
| @@ -0,0 +1,113 @@ |
| +body { |
| + font-family: Arial, sans-serif; |
|
Mattias Nissler (ping if slow)
2011/08/09 13:20:40
James will tell you to sort the declarations alpha
simo
2011/08/10 14:28:19
Done.
|
| + font-size: 14px; |
| + color: black; |
| + cursor: default; |
| + margin: 0 10px; |
| + min-width: 47em; |
| +} |
| + |
| +button { |
| + font-size: 0.9em; |
| +} |
| + |
| +#header { |
| + border-bottom: 1px solid #000; |
| + padding-top: 20px; |
| +} |
| + |
| +#about-policy-title { |
| + -webkit-padding-end: 24px; |
| + -webkit-user-select: none; |
| + border-bottom: 1px solid #c6c9ce; |
| + color: #53637d; |
| + cursor: pointer; |
| + font-size: 200%; |
| + font-weight: normal; |
| + margin: 0; |
| + 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, |
| +#search { |
| + text-align: end; |
| +} |
| + |
| +#status-pane { |
| + -webkit-box-flex: 1; |
| + -webkit-box-orient: horizontal; |
| + display: -webkit-box; |
| + margin: 0 300px; |
| +} |
| + |
| +.status-box { |
| + border: 1px solid #D9D9D9; |
| + margin: 20px 100px; |
| + min-height: 140px; |
| + min-width: 300px; |
| + overflow: hidden; |
| + padding: 2px; |
| + width: 30%; |
| +} |
| + |
| +legend { |
| + padding: 0.2em 0.5em; |
| +} |
| + |
| +.status-box ul { |
| + list-style-type: none; |
| + padding-left: 10px; |
| +} |
| + |
| +.status-box li { |
| + padding: 3px; |
| +} |
| + |
| +#policy-table th td { |
| + border: 1px solid #FFF; |
| + border-collapse: collapse; |
| + text-align: left; |
| +} |
| + |
| +#policy-table th { |
| + background-color: #DADADD; |
| + padding: 10px; |
| +} |
| + |
| +#policy-table td { |
| + background-color: #EAEEF3; |
| + padding: 10px; |
| + width: 20%; |
| +} |
| + |
| +.policy-error { |
| + background-color: #F0F0F5; |
| +} |
| + |
|
Mattias Nissler (ping if slow)
2011/08/09 13:20:40
remove trailing whitespace
simo
2011/08/10 14:28:19
Done.
|
| + |
| + |
| + |