OLD | NEW |
---|---|
(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.
| |
OLD | NEW |