diff options
author | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 13:01:29 +0000 |
---|---|---|
committer | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 13:01:29 +0000 |
commit | cdc1b28876a42eea3e4da72941f33a284548f1fd (patch) | |
tree | 0ad3b72690168feb9dcb87c446f417d75a878c42 /chrome | |
parent | 8bf7cbb223040ee3b472f5bce53fdb2ce2c905ec (diff) | |
download | chromium_src-cdc1b28876a42eea3e4da72941f33a284548f1fd.zip chromium_src-cdc1b28876a42eea3e4da72941f33a284548f1fd.tar.gz chromium_src-cdc1b28876a42eea3e4da72941f33a284548f1fd.tar.bz2 |
Always show "Reload policies" button in about:policy.
BUG=102669
TEST=about:policy has a "Reload policies" button on all platforms
Review URL: http://codereview.chromium.org/9141010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118829 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 4 | ||||
-rw-r--r-- | chrome/browser/resources/policy.css | 2 | ||||
-rw-r--r-- | chrome/browser/resources/policy.html | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index 9060aef..d0ddedf6 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -4450,8 +4450,8 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_POLICY_TITLE" desc="The title for the about:policies page."> Policies </message> - <message name="IDS_POLICY_FETCH" desc="The label for the button that fetches policies."> - Fetch policies now + <message name="IDS_POLICY_FETCH" desc="The label for the button that reloads policies."> + Reload policies </message> <message name="IDS_POLICY_STATUS_TITLE" desc="The title for the status section."> Status diff --git a/chrome/browser/resources/policy.css b/chrome/browser/resources/policy.css index 147b949..54f78fd 100644 --- a/chrome/browser/resources/policy.css +++ b/chrome/browser/resources/policy.css @@ -66,7 +66,7 @@ section { } #fetch-policies { - direction: rtl; + margin-top: 20px; } #checkbox-and-label { diff --git a/chrome/browser/resources/policy.html b/chrome/browser/resources/policy.html index 27cd90c..b8ac33d 100644 --- a/chrome/browser/resources/policy.html +++ b/chrome/browser/resources/policy.html @@ -16,16 +16,16 @@ </head> <body i18n-values=".style.fontFamily:fontfamily; .style.fontSize:fontsize"> <h1 id="about-policy-title" i18n-content="policyTitle"></h1> + <div id="fetch-policies"> + <button id="fetch-policies-button" i18n-content="fetchPoliciesText"> + </button> + </div> <div id="main-content"> <div id="data-template"> <section id="status-section" jsselect="status" hidden jsdisplay="displayStatusSection"> <div class="separator"> <span id="status-title" i18n-content="statusPaneTitle"></span> - <div id="fetch-policies"> - <button id="fetch-policies-button" i18n-content="fetchPoliciesText"> - </button> - </div> </div> <div id="status-pane"> <fieldset class="status-box" jsdisplay="displayDeviceStatus"> |