You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by bo...@apache.org on 2018/02/25 20:45:32 UTC

svn commit: r1025958 - /websites/production/tapestry/content/styles/style.css

Author: bobharner
Date: Sun Feb 25 20:45:32 2018
New Revision: 1025958

Log:
CSS changes to make {since} and {deprecated} macros look better when exported

Modified:
    websites/production/tapestry/content/styles/style.css

Modified: websites/production/tapestry/content/styles/style.css
==============================================================================
--- websites/production/tapestry/content/styles/style.css (original)
+++ websites/production/tapestry/content/styles/style.css Sun Feb 25 20:45:32 2018
@@ -321,18 +321,50 @@ DIV#breadcrumbs a.edit:hover {
 DIV.syntaxhighlighter { overflow: inherit !important; background-color: white; }
 DIV.syntaxhighlighter .line.alt1, DIV.syntaxhighlighter .line.alt2 { background-color: white !important; }
 
+.aui-message .param-body {
+    text-indent: -5px;
+}
 .aui-message.problem {
     background: none repeat scroll 0% 0% #FFF8F7;
     border-color: #D04437;
 }
 .aui-message {
-    background: none repeat scroll 0% 0% #FCFCFC;
-    border: 1px solid #CCC;
-    border-radius: 5px;
-    color: #333;
-    margin: 10px 0px 0px;
-    padding: 10px 10px 10px 36px;
-    position: relative;
+    border-width: 1px;
+    line-height: 20px;
+    padding-bottom: 7px;
+    padding-left: 20px;
+    padding-right: 20px;
+    padding-top: 9px;
+    display: table;
+}
+DIV.macro-since {
+    background-color: #f0f0ff;
+}
+DIV.macro-deprecated {
+    background-color: #fff0f0;
+}
+DIV.aui-message {
+    border-radius: 18px;
+    border: none;
+    margin-left: 3em;
+    padding-left: 35px;
+}
+.aui-message { /* from batch.css */
+	background: #fff;
+	border: 1px solid #3572b0;
+	border-radius: 3px;
+	color: #333;
+	margin: 20px 0 0 0;
+	overflow-wrap: break-word;
+	position: relative;
+}
+.aui-message::before {
+	bottom: 0;
+	content: '';
+	left: 12px;
+	position: absolute;
+	top: 10px;
+	width: 20px;
 }
 .aui-message.warning, .aui-message-warning {
 	background: #fff;
@@ -375,7 +407,10 @@ DIV.syntaxhighlighter .line.alt1, DIV.sy
 .aui-message.warning { background:#fffdf6; border-color:#ffeaae;}
 .aui-message.info { background:#fcfcfc; border-color:#8c9fb2; }
 .aui-message.success  { background:#f3f9f4; border-color:#91c89c; }
-.aui-message.hint { background:#fcfcfc;border-color:#aab8c6; }
+.aui-message.hint, .aui-message-hint, .aui-message.info, .aui-message-info {
+    background: #fff;
+    border-color: #3572b0;
+}
 .aui-message.error a { color:#fff; text-decoration:none; border-bottom: 1px solid #fff; }
 .aui-message p.title { font-weight:bold; }
 .aui-message p.title strong { font-weight:inherit; }