You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by si...@apache.org on 2012/03/11 00:40:46 UTC

svn commit: r1299308 - /maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css

Author: simonetripodi
Date: Sat Mar 10 23:40:46 2012
New Revision: 1299308

URL: http://svn.apache.org/viewvc?rev=1299308&view=rev
Log:
added warnings (they can be used inside javadoc comments)

Modified:
    maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css

Modified: maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css?rev=1299308&r1=1299307&r2=1299308&view=diff
==============================================================================
--- maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css (original)
+++ maven/sandbox/trunk/skins/fluido-doc/src/main/resources/org/apache/maven/skins/fluido/stylesheet.css Sat Mar 10 23:40:46 2012
@@ -259,6 +259,8 @@ pre code {
   max-height: 340px;
   overflow-y: scroll;
 }
+
+/* lables */
 .label {
   padding: 2px 4px 3px;
   font-size: 11.049999999999999px;
@@ -298,6 +300,63 @@ pre code {
 .label-info:hover {
   background-color: #2d6987;
 }
+
+/* alerts */
+.alert {
+  padding: 8px 35px 8px 14px;
+  margin-bottom: 18px;
+  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+  background-color: #fcf8e3;
+  border: 1px solid #fbeed5;
+  -webkit-border-radius: 4px;
+  -moz-border-radius: 4px;
+  border-radius: 4px;
+}
+.alert, .alert-heading {
+  color: #c09853;
+}
+.alert .close {
+  position: relative;
+  top: -2px;
+  right: -21px;
+  line-height: 18px;
+}
+.alert-success {
+  background-color: #dff0d8;
+  border-color: #d6e9c6;
+}
+.alert-success, .alert-success .alert-heading {
+  color: #468847;
+}
+.alert-danger, .alert-error {
+  background-color: #f2dede;
+  border-color: #eed3d7;
+}
+.alert-danger,
+.alert-error,
+.alert-danger .alert-heading,
+.alert-error .alert-heading {
+  color: #b94a48;
+}
+.alert-info {
+  background-color: #d9edf7;
+  border-color: #bce8f1;
+}
+.alert-info, .alert-info .alert-heading {
+  color: #3a87ad;
+}
+.alert-block {
+  padding-top: 14px;
+  padding-bottom: 14px;
+}
+.alert-block > p, .alert-block > ul {
+  margin-bottom: 0;
+}
+.alert-block p + p {
+  margin-top: 5px;
+}
+
+/* table */
 table {
   max-width: 100%;
   border-collapse: collapse;