Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Issue 12218058: History: Use images instead of unicode characters. (Closed)

Created:
7 years, 10 months ago by Sergiu
Modified:
7 years, 10 months ago
CC:
chromium-reviews, Patrick Dubroy, arv (Not doing code reviews), pam+watch_chromium.org
Visibility:
Public.

Description

History: Use images instead of unicode characters. Unicode characters are font dependent so they may look differently on some machines. This patch uses images for the arrows in grouping by domain and the range next and previous buttons. This patch also sets the domain name for grouped domains to a link so that users can tab to it and and pressing enter will expand. Uses 2 images that will be uploaded in a different CL. BUG=170690 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=183795

Patch Set 1 #

Total comments: 2

Patch Set 2 : Improved version after talking to Pat. #

Total comments: 10

Patch Set 3 : Use link-buttons #

Total comments: 6

Patch Set 4 : Rebase #

Patch Set 5 : Using link-buttons #

Patch Set 6 : Minor improvements #

Total comments: 6

Patch Set 7 : Rebase #

Patch Set 8 : Minor fix and rebase #

Patch Set 9 : Minor align + link fix #

Patch Set 10 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+45 lines, -7 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/resources/history/history.css View 1 2 3 4 5 6 7 8 9 4 chunks +26 lines, -1 line 0 comments Download
M chrome/browser/resources/history/history.html View 1 2 3 4 5 6 7 1 chunk +7 lines, -2 lines 0 comments Download
M chrome/browser/resources/history/history.js View 1 2 3 4 5 6 7 8 9 1 chunk +4 lines, -4 lines 0 comments Download
M chrome/browser/ui/webui/history_ui.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 22 (0 generated)
Sergiu
Take a look :)
7 years, 10 months ago (2013-02-07 18:22:42 UTC) #1
Patrick Dubroy
https://codereview.chromium.org/12218058/diff/1/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/1/chrome/browser/resources/history/history.css#newcode239 chrome/browser/resources/history/history.css:239: #range-previous::before { This should probably also be done with ...
7 years, 10 months ago (2013-02-07 18:49:24 UTC) #2
Sergiu
New better version, +jhawkins@, especially for the minor added strings.
7 years, 10 months ago (2013-02-07 19:34:23 UTC) #3
James Hawkins
https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css#newcode241 chrome/browser/resources/history/history.css:241: margin-top: -1px; Why the need for -1, 1? https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css#newcode277 ...
7 years, 10 months ago (2013-02-07 19:37:29 UTC) #4
Patrick Dubroy
https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css#newcode277 chrome/browser/resources/history/history.css:277: .site-domain a { On 2013/02/07 19:37:29, James Hawkins wrote: ...
7 years, 10 months ago (2013-02-07 19:38:43 UTC) #5
James Hawkins
https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css#newcode277 chrome/browser/resources/history/history.css:277: .site-domain a { On 2013/02/07 19:38:43, dubroy wrote: > ...
7 years, 10 months ago (2013-02-07 19:42:54 UTC) #6
Sergiu
https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/7001/chrome/browser/resources/history/history.css#newcode241 chrome/browser/resources/history/history.css:241: margin-top: -1px; On 2013/02/07 19:37:29, James Hawkins wrote: > ...
7 years, 10 months ago (2013-02-08 10:01:17 UTC) #7
James Hawkins
https://codereview.chromium.org/12218058/diff/5002/chrome/browser/resources/history/history.js File chrome/browser/resources/history/history.js (right): https://codereview.chromium.org/12218058/diff/5002/chrome/browser/resources/history/history.js#newcode871 chrome/browser/resources/history/history.js:871: createElementWithClassName('a', 'link-button')); The thing about link-buttons is that you ...
7 years, 10 months ago (2013-02-08 17:19:25 UTC) #8
Patrick Dubroy
https://codereview.chromium.org/12218058/diff/5002/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/5002/chrome/browser/resources/history/history.css#newcode273 chrome/browser/resources/history/history.css:273: color: black; Shouldn't this be rgb(48, 57, 66), like ...
7 years, 10 months ago (2013-02-08 18:42:26 UTC) #9
Sergiu
Done, hope this is it. BTW there was a minor rebase error in the .js ...
7 years, 10 months ago (2013-02-11 19:19:34 UTC) #10
Sergiu
> Didn't know that but I do know :). Replaced it with button tag. s/know/now/ ...
7 years, 10 months ago (2013-02-15 15:02:00 UTC) #11
Patrick Dubroy
https://codereview.chromium.org/12218058/diff/14001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/14001/chrome/browser/resources/history/history.css#newcode274 chrome/browser/resources/history/history.css:274: -webkit-transform: rotate(180deg); BTW you can also do scaleX(-1) to ...
7 years, 10 months ago (2013-02-18 10:19:36 UTC) #12
Sergiu
https://codereview.chromium.org/12218058/diff/14001/chrome/browser/resources/history/history.css File chrome/browser/resources/history/history.css (right): https://codereview.chromium.org/12218058/diff/14001/chrome/browser/resources/history/history.css#newcode274 chrome/browser/resources/history/history.css:274: -webkit-transform: rotate(180deg); On 2013/02/18 10:19:36, dubroy wrote: > BTW ...
7 years, 10 months ago (2013-02-19 08:58:25 UTC) #13
Patrick Dubroy
lgtm
7 years, 10 months ago (2013-02-19 09:20:18 UTC) #14
Sergiu
James, please take a look as well, thanks!
7 years, 10 months ago (2013-02-19 12:34:12 UTC) #15
James Hawkins
lgtm
7 years, 10 months ago (2013-02-19 20:45:31 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergiu@chromium.org/12218058/33001
7 years, 10 months ago (2013-02-21 10:41:14 UTC) #17
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) browser_testsnet_unittests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_rel&number=100752
7 years, 10 months ago (2013-02-21 12:20:37 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergiu@chromium.org/12218058/33001
7 years, 10 months ago (2013-02-21 12:25:15 UTC) #19
commit-bot: I haz the power
Retried try job too often on linux_rel for step(s) browser_testsnet_unittests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_rel&number=100789
7 years, 10 months ago (2013-02-21 13:19:46 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergiu@chromium.org/12218058/33001
7 years, 10 months ago (2013-02-21 13:26:58 UTC) #21
commit-bot: I haz the power
7 years, 10 months ago (2013-02-21 13:29:03 UTC) #22
Message was sent while issue was closed.
Change committed as 183795

Powered by Google App Engine
This is Rietveld 408576698