Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(468)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: chrome/browser/resources/input_window_dialog.css
Issue
8298019
:
Implement InputWindowDialog with WebUI for bookmark folder management. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again
Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
chrome/browser/bookmarks/bookmark_folder_editor_controller.cc
chrome/browser/browser_resources.grd
chrome/browser/resources/input_window_dialog.css
chrome/browser/resources/input_window_dialog.html
chrome/browser/resources/input_window_dialog.js
chrome/browser/ui/input_window_dialog_gtk.h
chrome/browser/ui/input_window_dialog_gtk.cc
chrome/browser/ui/input_window_dialog_linux.cc
chrome/browser/ui/webui/chrome_url_data_manager_backend.cc
chrome/browser/ui/webui/chrome_web_ui_factory.cc
chrome/browser/ui/webui/input_window_dialog_ui.h
chrome/browser/ui/webui/input_window_dialog_ui.cc
chrome/browser/ui/webui/input_window_dialog_webui.h
chrome/browser/ui/webui/input_window_dialog_webui.cc
chrome/chrome_browser.gypi
chrome/common/url_constants.h
chrome/common/url_constants.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« chrome/browser/browser_resources.grd
('k') |
chrome/browser/resources/input_window_dialog.html »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2
* Use of this source code is governed by a BSD-style license that can be
3
* found in the LICENSE file.
4
*/
5
6
html,
7
body {
8
background-color: #EEE;
9
height: 100%;
10
margin: 0;
11
overflow: hidden;
12
}
13
14
.vbox {
15
height: 100%;
16
width: 100%;
17
}
18
19
.input-area {
20
-webkit-box-align: center;
21
-webkit-box-pack: center;
22
display: -webkit-box;
23
height: 60%;
24
}
25
26
.buttons-area {
27
display: table;
28
float: right;
29
height: 100%;
30
margin-right: 8px;
31
width: auto;
32
}
33
34
.buttons-area > div {
35
display: table-cell;
36
padding: 3px;
37
vertical-align: top;
38
width: 50%;
39
}
40
41
button {
42
white-space: nowrap;
43
width: 100%;
44
}
OLD
NEW
« no previous file with comments
|
« chrome/browser/browser_resources.grd
('k') |
chrome/browser/resources/input_window_dialog.html »
('j') |
no next file with comments »
Issue 8298019: Implement InputWindowDialog with WebUI for bookmark folder management. (Closed)
Created 9 years, 2 months ago by mazda
Modified 9 years, 1 month ago
Reviewers: xiyuan, Emmanuel Saint-loubert-BiƩ, tfarina, commit-bot: I haz the power
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 22
This is Rietveld
408576698