scratch – Blame information for rev 84

Subversion Repositories:
Rev:
Rev Author Line No. Line
84 office 1 @import 'compass';
2 .drawing-board, .drawing-board * {
3 @include box-sizing(content-box);
4 }
5  
6 .drawing-board-utils-hidden {
7 display: none !important;
8 }
9  
10 .drawing-board {
11 position: relative;
12 display: block;
13 }
14  
15 .drawing-board-canvas-wrapper {
16 position: relative;
17 margin: 0;
18 border: 1px solid #ddd;
19 }
20  
21 .drawing-board-canvas {
22 position: absolute;
23 top: 0;
24 left: 0;
25 z-index: 10;
26 width: auto;
27 }
28  
29 .drawing-board-canvas {
30 cursor: crosshair;
31 z-index: 20;
32 }
33  
34 .drawing-board-cursor {
35 position: absolute;
36 top: 0;
37 left: 0;
38 pointer-events: none;
39 border-radius: 50%;
40 background: #ccc;
41 background: rgba(#000, 0.2);
42 z-index: 30;
43 }