azkaban-memoizeit

Details

src/less/base.less 14(+14 -0)

diff --git a/src/less/base.less b/src/less/base.less
index 897e097..cb7a0da 100644
--- a/src/less/base.less
+++ b/src/less/base.less
@@ -24,6 +24,20 @@
   }
 }
 
+.alert-default {
+  color: #a0a0a0;
+  background-color: #f5f5f5;
+  border-color: #dddddd;
+
+  hr {
+    border-top-color: #cccccc;
+  }
+
+  .alert-link {
+    color: #a0a0a0;
+  }
+}
+
 // Wide modal used for certain panels such as executing flow panel.
 .modal-wide .modal-dialog {
   width: 80%;
diff --git a/src/tl/flowsummary.tl b/src/tl/flowsummary.tl
index 4c287c3..84ea565 100644
--- a/src/tl/flowsummary.tl
+++ b/src/tl/flowsummary.tl
@@ -57,7 +57,7 @@
             </tbody>
           </table>
           {:else}
-            <div class="alert alert-info">
+            <div class="alert alert-default">
               <h4>None</h4>
               <p>This flow has not been scheduled.</p>
             </div>
@@ -69,8 +69,7 @@
           <div id="last-run-container">
             <div class="alert alert-info" id="analyze-last-run">
               <h4>Analyze last run</h4>
-              <p>Analyze the last run for aggregate performance statistics.</p>
-              <p><strong>Note:</strong> this may take a few minutes, especially if your flow is large.</p>
+              <p>Analyze the last run for aggregate performance statistics. <strong>Note:</strong> this may take a few minutes, especially if your flow is large.</p>
               <p>
                 <button type="button" id="analyze-btn" class="btn btn-primary">Analyze</button>
               </p>
diff --git a/src/tl/flowsummary-no-data.tl b/src/tl/flowsummary-no-data.tl
index ec3f4f6..dd2b138 100644
--- a/src/tl/flowsummary-no-data.tl
+++ b/src/tl/flowsummary-no-data.tl
@@ -1,4 +1,4 @@
-          <div class="alert alert-info">
+          <div class="alert alert-default">
             <h4>No Last Run Data</h4>
             <p>{message}</p>
           </div>