#2187 - Making Warning sections in docs yellow so they aren't overlooked
This commit is contained in:
parent
2b69f67777
commit
44fefb9b55
1 changed files with 36 additions and 0 deletions
|
|
@ -90,6 +90,42 @@ strong {color: #1d3c52; }
|
||||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.warning {
|
||||||
|
background-image: none;
|
||||||
|
background-color: #fdf5d9;
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
||||||
|
padding: 14px;
|
||||||
|
border-color: #ffffc4;
|
||||||
|
-webkit-box-shadow: none;
|
||||||
|
-moz-box-shadow: none;
|
||||||
|
box-shadow: none;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
position: relative;
|
||||||
|
padding: 7px 15px;
|
||||||
|
color: #404040;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffc4), to(#ffff00));
|
||||||
|
background-image: -moz-linear-gradient(top, #ffffc4, #ffff00);
|
||||||
|
background-image: -ms-linear-gradient(top, #ffffc4, #ffff00);
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffc4), color-stop(100%, #ffff00));
|
||||||
|
background-image: -webkit-linear-gradient(top, #ffffc4, #ffff00);
|
||||||
|
background-image: -o-linear-gradient(top, #ffffc4, #ffff00);
|
||||||
|
background-image: linear-gradient(top, #ffffc4, #ffff00);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc4', endColorstr='#ffff00', GradientType=0);
|
||||||
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
border-color: #dff69a #ffff00 #E4C652;
|
||||||
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||||
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
||||||
|
border-width: 1px;
|
||||||
|
border-style: solid;
|
||||||
|
-webkit-border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
||||||
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
||||||
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
.admonition p.admonition-title {
|
.admonition p.admonition-title {
|
||||||
color: rgba(0, 0, 0, 0.6);
|
color: rgba(0, 0, 0, 0.6);
|
||||||
text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue