Quellcode durchsuchen

Display flash errors and notices

tags/last-sinatra-version
Adrian Short vor 10 Jahren
Ursprung
Commit
06deeab3c9
2 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen
  1. +6
    -0
      public/style.css
  2. +6
    -0
      views/layout.haml

+ 6
- 0
public/style.css Datei anzeigen

@@ -185,6 +185,12 @@ tr
padding: 10px 25px;
}

#notice {
background-color: green;
color: white;
padding: 10px 20px;
}

#error {
background-color: red;
color: white;


+ 6
- 0
views/layout.haml Datei anzeigen

@@ -8,6 +8,12 @@
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
%body
#main
- if flash[:notice]
#notice
%p= flash[:notice]
- if flash[:error]
#error
%p= flash[:error]
= yield
#footer
#footer_inner


Laden…
Abbrechen
Speichern