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

Side by Side Diff: lib/src/prism/plugins/previewer-gradient/prism-previewer-gradient.css

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 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 .prism-previewer-gradient {
2 background-image: linear-gradient(45deg, #bbb 25%, transparent 25%, tran sparent 75%, #bbb 75%, #bbb), linear-gradient(45deg, #bbb 25%, #eee 25%, #eee 75 %, #bbb 75%, #bbb);
3 background-size: 10px 10px;
4 background-position: 0 0, 5px 5px;
5
6 width: 64px;
7 margin-left: -32px;
8 }
9 .prism-previewer-gradient:before {
10 content: none;
11 }
12 .prism-previewer-gradient div {
13 position: absolute;
14 top: -5px;
15 left: -5px;
16 right: -5px;
17 bottom: -5px;
18 -webkit-border-radius: 10px;
19 -moz-border-radius: 10px;
20 border-radius: 10px;
21 border: 5px solid #fff;
22 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0 , 0, 0.75);
23 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0 , 0.75);
24 -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
25 -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
26 box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.7 5);
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698