Chromium Code Reviews| Index: chrome/browser/resources/uber/uber_frame.css |
| diff --git a/chrome/browser/resources/uber/uber_frame.css b/chrome/browser/resources/uber/uber_frame.css |
| index 71ba6f8d0c3f89e6f84c74f172b2bb5c0aefcea4..2252a7bd73af2af842fdbfa70308cedb0d77427c 100644 |
| --- a/chrome/browser/resources/uber/uber_frame.css |
| +++ b/chrome/browser/resources/uber/uber_frame.css |
| @@ -27,6 +27,7 @@ ul { |
| li { |
| -webkit-border-start: 6px solid transparent; |
| -webkit-padding-start: 18px; |
| + -webkit-user-select: none; |
|
James Hawkins
2012/03/13 20:46:47
Why did you make this change?
csilv
2012/03/13 20:59:49
FWIW, I like this change. This prevents accidental
Dan Beam
2012/03/13 23:01:45
That ^
|
| color: #999; |
| cursor: pointer; |
| line-height: 17px; |
| @@ -40,6 +41,8 @@ li:hover { |
| li.selected { |
| -webkit-border-start-color: rgb(78, 87, 100); |
| color: rgb(70, 78, 90); |
| + cursor: default; |
| + pointer-events: none; |
|
Evan Stade
2012/03/13 20:44:50
is this necessary? I feel that sometimes people li
csilv
2012/03/13 20:59:49
I believe the purpose is to prevent accidental or
Dan Beam
2012/03/13 23:01:45
That ^ and if we remove indicators that this is cl
Evan Stade
2012/03/13 23:08:18
well, not really --- the decision to click general
|
| } |
| #helpNavItem { |