# HG changeset patch # User Teemu Piippo # Date 1561238770 -10800 # Node ID 62d0b5b9d7974b02f6c5bf90f153d140019c406c # Parent 4e24867a0110d4448d2300f3e2381cf2b1b9e272 made problems be copied more nicely from the web front end diff -r 4e24867a0110 -r 62d0b5b9d797 static/style.css --- a/static/style.css Sun Jun 23 00:07:55 2019 +0300 +++ b/static/style.css Sun Jun 23 00:26:10 2019 +0300 @@ -28,6 +28,16 @@ background-color: #b44; border-color: red; color: white; + background-image: url(../static/hold.svg); + background-repeat: no-repeat; + background-position: left; + background-size: 32px; +} + +.problem-content +{ + display: inline-block; + padding-left: 40px; } .problems-list li.problem-warning @@ -35,6 +45,10 @@ background-color: #def; border-color: #024; color: black; + background-image: url(../static/warning.svg); + background-repeat: no-repeat; + background-position: left; + background-size: 32px; } .problem-icon @@ -72,3 +86,8 @@ padding-right: 5%; padding-top: 2vh; } + +.problem-description +{ + display: inline-block; +} diff -r 4e24867a0110 -r 62d0b5b9d797 templates/webfront.html --- a/templates/webfront.html Sun Jun 23 00:07:55 2019 +0300 +++ b/templates/webfront.html Sun Jun 23 00:26:10 2019 +0300 @@ -21,16 +21,14 @@