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

Side by Side Diff: chrome/browser/resources/print_preview/margins.css

Issue 8233030: Print Preview: Making margin lines draggable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing rounding error corner case. Created 9 years, 2 months 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 input[type='text'].margin-box {
Evan Stade 2011/10/17 21:36:45 license header
dpapad 2011/10/17 23:28:06 Done.
2 background-color: #2a2a2a;
3 color: #fff;
4 cursor: auto;
5 font-family: arial;
6 font-size: 10px;
7 height: 15px;
8 padding: 5px 10px;
9 position: absolute;
10 text-align: center;
11 width: 40px;
12 z-index: 3;
13 }
14
15 input[type='text'].margin-box.invalid {
16 background-color: #c11b17;
17 }
18
19 .margins-ui-pair {
20 background-color: transparent;
21 border-color: transparent;
22 position: absolute;
23 }
24
25 .margins-ui-pair.right,
26 .margins-ui-pair.left {
27 cursor: ew-resize;
28 }
29
30 .margins-ui-pair.top,
31 .margins-ui-pair.bottom {
32 cursor: ns-resize;
33 }
34
35 .margins-ui-pair.front {
36 z-index: 10;
37 }
38
39 .margins-ui-pair.back {
40 z-index: 0;
41 }
42
43 .margin-line {
44 border-color: #4080FA;
45 border-style: dashed;
46 border-width: 1px;
47 pointer-events: none;
48 position: absolute;
49 }
50
51 #customized-margins {
52 position: absolute;
53 top: 0;
54 }
55
Evan Stade 2011/10/17 21:36:45 can you make sure you don't have extra newlines at
dpapad 2011/10/17 23:28:06 Done.
OLDNEW
« no previous file with comments | « chrome/browser/resources/print_preview/margin_utils.js ('k') | chrome/browser/resources/print_preview/margins_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698