Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Issue #16 - memory access queue font color (#33)
Browse files Browse the repository at this point in the history
* separated the md-content elements in cacheDisplay.html so that M.A.Q. doesnt have the dark theme

* update PR to not overwrite clickable cache display functionality

* whoops

* update cacheDisplay to have the whole sidebar be a light theme with blue/dark blue colors

* ok should be good now
  • Loading branch information
kevinsrose authored and jbonzo committed Sep 22, 2017
1 parent 3a478e0 commit fdfaf1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ simulator.config(function($mdThemingProvider) {
.primaryPalette('blue')
.accentPalette('blue-grey')
.dark();

$mdThemingProvider.theme('docs-light')
.primaryPalette('blue')
.accentPalette('blue-grey');
});

simulator.controller('IndexController', ['$scope', function($scope) {
Expand Down
4 changes: 2 additions & 2 deletions src/cacheDisplay.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

<!--Cache Input-->
<section resizable r-directions="['left']" r-flex="true" style="max-width: 700px">
<md-content layout="column" layout-padding md-theme="docs-dark" class="md-inline-form" flex>
<md-content layout="column" layout-padding md-theme="docs-light" class="md-inline-form" flex>
<md-input-container>
<label>Replacement Policy</label>
<md-select ng-model="$ctrl.policy" placeholder="Select a Policy" ng-change="$ctrl.setPolicy()">
Expand Down Expand Up @@ -192,7 +192,7 @@
<span class="md-body-1">Speed</span>
</div>
<div style="width:100%;padding:10px">
<md-slider flex class="md-primary" md-discrete ng-model="$ctrl.speedRating" step="1" min="1" max="5" aria-label="rating">
<md-slider flex class="md-primary" md-discrete ng-model="$ctrl.speedRating" step="1" min="1" max="5" aria-label="rating">
</div>
</md-slider>
</md-content>
Expand Down

0 comments on commit fdfaf1f

Please sign in to comment.