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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dnd/resources/link-dragging-common.css

Issue 2441023003: Align drag feedback for links with draggable="true" to Safari. (Closed)
Patch Set: Rebased, added dependency on CL that fixes testing logistical issue. Created 4 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.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 body.test-runner {
2 font: 10px Ahem;
3 }
4
5 article {
6 position: relative;
7 overflow: hidden;
8 }
9
10 /* a needs to precede .dragged, because the cursor rules depend on the .dragged
11 block being more specific than the a block. */
12 a {
13 display: block;
14
15 /* Intended to help manual testers not accidentally drag the text when we
16 expect them to drag the containing box. */
17 cursor: not-allowed;
18 }
19
20 .box {
21 display: block;
22 border: 1px solid black;
23 width: 150px;
24 height: 100px;
25 margin: 10px;
26 float: left;
27 }
28 .dragged {
29 background-color: hsla(120, 50%, 70%, 1);
30 cursor: pointer;
31 }
32 .dropzone {
33 border-style: dashed;
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698