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

Side by Side Diff: chrome/browser/resources/net_internals/tabswitcherview.css

Issue 5228004: Switch the about:gpu implementation from an about handler to dom_ui.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 .tab-switcher-view ul {
2 list-style: none;
3 padding: 0;
4 margin: 0;
5 }
6
7 .tab-switcher-view {
8 border-bottom: 1px solid #555;
9 background: #aaa;
10 overflow: hidden;
11 }
12
13 .tab-switcher-view li {
14 float: left;
arv (Not doing code reviews) 2010/12/06 19:45:57 rtl
nduca 2010/12/07 01:03:40 Done.
15 margin-left: 5px;
arv (Not doing code reviews) 2010/12/06 19:45:57 -webkit-margin-start
nduca 2010/12/07 01:03:40 Done.
16 }
17
18 .tab-switcher-view a {
19 text-decoration: none;
20 text-align: center;
21 display: inline-block;
22 margin-top: 4px;
23 padding: 5px 10px 3px 10px;
24 -webkit-border-top-right-radius: 8px;
25 -webkit-border-top-left-radius: 8px;
26 background-clip: border-box;
27 background: #ccc;
28 }
29
30 .tab-switcher-view a:hover {
31 background: #eee;
32 }
33
34 .tab-switcher-view a:visited,
35 .tab-switcher-view a {
36 color: blue;
37 }
38
39 .tab-switcher-view .selected {
40 background: white;
41 }
42
43 .tab-switcher-view a.selected {
44 position:relative;
45 top: 3px;
46 color: black;
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698