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

Side by Side Diff: go/src/infra/appengine/sheriff-o-matic/elements/pages/som-rotation-calendar.html

Issue 2110723004: SoM: Navbar links++ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Minor tweaks. Created 4 years, 5 months 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 <link rel="import" href="/bower_components/iron-icon/iron-icon.html">
2 <dom-module id="som-rotation-calendar">
3 <template>
4 <style>
5 iframe {
6 border: 0;
7 overflow: scroll;
8 }
9 </style>
10 <h2>Rotation Calendar
11 <a target="_blank" href="https://chromium-build.appspot.com/static/rotatio ns.html">
12 <iron-icon icon="link"></iron-icon>
13 </a>
14 </h2>
15 <div class="flex layout vertical">
16 <iframe
17 src="https://chromium-build.appspot.com/static/rotations.html"
18 class="flex"
19 ></iframe>
20 </div>
21 </template>
22 <script>
23 (function() {
24 'use strict';
25
26 Polymer({
27 is: 'som-rotation-calendar',
28 });
29 })();
30 </script>
31 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698