summaryrefslogtreecommitdiffstats
path: root/ios
diff options
context:
space:
mode:
authorjyquinn <jyquinn@chromium.org>2016-03-09 08:02:09 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-09 16:03:02 +0000
commit7d25f6e027eeae03617a3984bdcaf54d6b84ad2e (patch)
treec620719c7a0a2f362af7bf9171926cd7780264ad /ios
parent415671ebaf0f567b8b97176e5b09ede29d2e59f7 (diff)
downloadchromium_src-7d25f6e027eeae03617a3984bdcaf54d6b84ad2e.zip
chromium_src-7d25f6e027eeae03617a3984bdcaf54d6b84ad2e.tar.gz
chromium_src-7d25f6e027eeae03617a3984bdcaf54d6b84ad2e.tar.bz2
Fix favicon alignment on WebUI History on iPad
Adds starting margin to entry div so that the favicon is not flush with the timestamp. BUG=580336 Review URL: https://codereview.chromium.org/1778493003 Cr-Commit-Position: refs/heads/master@{#380142}
Diffstat (limited to 'ios')
-rw-r--r--ios/chrome/app/resources/history/history_mobile.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/ios/chrome/app/resources/history/history_mobile.css b/ios/chrome/app/resources/history/history_mobile.css
index 3b6f9a3..a10a1d7 100644
--- a/ios/chrome/app/resources/history/history_mobile.css
+++ b/ios/chrome/app/resources/history/history_mobile.css
@@ -197,6 +197,7 @@ input {
-webkit-flex: auto;
-webkit-flex-flow: column;
-webkit-padding-start: 48px;
+ -webkit-margin-start: 8px;
background-size: 32px;
line-height: 1.3;
}
@@ -278,11 +279,15 @@ input {
@media only screen and (max-width:600px) {
- /* Omit the time on very small screens. */
+ /* Omit the time and favicon margin on very small screens. */
.entry .time {
display: none;
}
+ .entry .visit-entry {
+ -webkit-margin-start: 0;
+ }
+
} /* @media only screen and (max-width:600px) */
@media only screen and (min-width:720px) {