Skip to content

Commit fa40e81

Browse files
committed
css: fix button gradients
At some point unknown to me, it allears that the meaning of the angle in linear-gradient rotated by 90 degrees. As a result, all of our button gradients have looked very strange for some time. This commit fixes that using a syntax that is very unlikely to change meaning...
1 parent 615b80a commit fa40e81

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

css/annotator.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -386,19 +386,19 @@
386386
to(rgb(210, 210, 210))
387387
);
388388
background-image: -moz-linear-gradient(
389-
-90deg,
389+
to bottom,
390390
rgb(245, 245, 245),
391391
rgb(220, 220, 220) 60%,
392392
rgb(210, 210, 210)
393393
);
394394
background-image: -webkit-linear-gradient(
395-
-90deg,
395+
to bottom,
396396
rgb(245, 245, 245),
397397
rgb(220, 220, 220) 60%,
398398
rgb(210, 210, 210)
399399
);
400400
background-image: linear-gradient(
401-
-90deg,
401+
to bottom,
402402
rgb(245, 245, 245),
403403
rgb(220, 220, 220) 60%,
404404
rgb(210, 210, 210)
@@ -455,21 +455,21 @@
455455
to(rgb(210, 210, 210))
456456
);
457457
background-image: -moz-linear-gradient(
458-
-90deg,
458+
to bottom,
459459
rgb(245, 245, 245),
460460
rgb(210, 210, 210) 50%,
461461
rgb(190, 190, 190) 50%,
462462
rgb(210, 210, 210)
463463
);
464464
background-image: -webkit-linear-gradient(
465-
-90deg,
465+
to bottom,
466466
rgb(245, 245, 245),
467467
rgb(210, 210, 210) 50%,
468468
rgb(190, 190, 190) 50%,
469469
rgb(210, 210, 210)
470470
);
471471
background-image: linear-gradient(
472-
-90deg,
472+
to bottom,
473473
rgb(245, 245, 245),
474474
rgb(210, 210, 210) 50%,
475475
rgb(190, 190, 190) 50%,
@@ -521,21 +521,21 @@
521521
to(rgb(54, 101, 250))
522522
);
523523
background-image: -moz-linear-gradient(
524-
-90deg,
524+
to bottom,
525525
rgb(118, 145, 251),
526526
rgb(80, 117, 251) 50%,
527527
rgb(56, 101, 249) 50%,
528528
rgb(54, 101, 250)
529529
);
530530
background-image: -webkit-linear-gradient(
531-
-90deg,
531+
to bottom,
532532
rgb(118, 145, 251),
533533
rgb(80, 117, 251) 50%,
534534
rgb(56, 101, 249) 50%,
535535
rgb(54, 101, 250)
536536
);
537537
background-image: linear-gradient(
538-
-90deg,
538+
to bottom,
539539
rgb(118, 145, 251),
540540
rgb(80, 117, 251) 50%,
541541
rgb(56, 101, 249) 50%,
@@ -563,21 +563,21 @@
563563
to(rgb(255, 0, 156))
564564
);
565565
background-image: -moz-linear-gradient(
566-
-90deg,
566+
to bottom,
567567
rgb(252, 124, 202),
568568
rgb(232, 93, 178) 50%,
569569
rgb(209, 46, 142) 50%,
570570
rgb(255, 0, 156)
571571
);
572572
background-image: -webkit-linear-gradient(
573-
-90deg,
573+
to bottom,
574574
rgb(252, 124, 202),
575575
rgb(232, 93, 178) 50%,
576576
rgb(209, 46, 142) 50%,
577577
rgb(255, 0, 156)
578578
);
579579
background-image: linear-gradient(
580-
-90deg,
580+
to bottom,
581581
rgb(252, 124, 202),
582582
rgb(232, 93, 178) 50%,
583583
rgb(209, 46, 142) 50%,

0 commit comments

Comments
 (0)