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

Side by Side Diff: gm/rebaseline_server/static/view.html

Issue 264853004: tweaks to tab CSS for rebaseline server page; moar pretty (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « gm/rebaseline_server/static/view.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html ng-app="Loader" ng-controller="Loader.Controller"> 3 <html ng-app="Loader" ng-controller="Loader.Controller">
4 4
5 <head> 5 <head>
6 <title ng-bind="windowTitle"></title> 6 <title ng-bind="windowTitle"></title>
7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js" ></script> 7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js" ></script>
8 <script src="constants.js"></script> 8 <script src="constants.js"></script>
9 <script src="loader.js"></script> 9 <script src="loader.js"></script>
10 <link rel="stylesheet" href="view.css"> 10 <link rel="stylesheet" href="view.css">
(...skipping 17 matching lines...) Expand all
28 <div class="warning-div" 28 <div class="warning-div"
29 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants .KEY__HEADER__IS_EXPORTED]"> 29 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants .KEY__HEADER__IS_EXPORTED]">
30 WARNING! These results are editable and exported, so any user 30 WARNING! These results are editable and exported, so any user
31 who can connect to this server over the network can modify them. 31 who can connect to this server over the network can modify them.
32 </div> 32 </div>
33 33
34 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> 34 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]">
35 Results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> current as of {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} 35 Results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> current as of {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}}
36 </div> 36 </div>
37 37
38 <div><!-- tabs --> 38 <div class="tab-wrapper"><!-- tabs -->
39 <div class="tab-spacer" ng-repeat="tab in tabs"> 39 <div class="tab-spacer" ng-repeat="tab in tabs">
40 <div class="tab-{{tab == viewingTab}}" 40 <div class="tab tab-{{tab == viewingTab}}"
41 ng-click="setViewingTab(tab)"> 41 ng-click="setViewingTab(tab)">
42 &nbsp;{{tab}} ({{numResultsPerTab[tab]}})&nbsp; 42 &nbsp;{{tab}} ({{numResultsPerTab[tab]}})&nbsp;
43 </div> 43 </div>
44 <div class="tab-spacer"> 44 <div class="tab-spacer">
45 &nbsp; 45 &nbsp;
46 </div> 46 </div>
47 </div> 47 </div>
48 </div><!-- tabs --> 48 </div><!-- tabs -->
49 49
50 <div class="tab-main"><!-- main display area of selected tab --> 50 <div class="tab-main"><!-- main display area of selected tab -->
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)"> 414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)">
415 </tr> 415 </tr>
416 </table> <!-- imagePairs --> 416 </table> <!-- imagePairs -->
417 </td></tr></table> <!-- table holding results header + imagePairs table --> 417 </td></tr></table> <!-- table holding results header + imagePairs table -->
418 418
419 </div><!-- main display area of selected tab --> 419 </div><!-- main display area of selected tab -->
420 </div><!-- everything: hide until data is loaded --> 420 </div><!-- everything: hide until data is loaded -->
421 421
422 </body> 422 </body>
423 </html> 423 </html>
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/view.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698