gradients on aspect tags on status messages
This commit is contained in:
parent
bf15514bc9
commit
241ea4559a
2 changed files with 17 additions and 5 deletions
|
|
@ -692,12 +692,18 @@ ul#settings_nav {
|
|||
cursor: default; }
|
||||
|
||||
.public_aspect_tag {
|
||||
background-color: #fffc7f; }
|
||||
background: -moz-linear-gradient(19% 75% 90deg, #fffa75, #fff8ba);
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff8ba), to(#fffa75));
|
||||
background-color: #fffc7f;
|
||||
border-top: 1px solid #ebe66c; }
|
||||
|
||||
.aspect_tag {
|
||||
background-color: #eeeeee;
|
||||
background: -moz-linear-gradient(19% 75% 90deg, #e0e0e0, #f0f0f0);
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f0f0f0), to(#e0e0e0));
|
||||
background-color: #eeeeee;
|
||||
color: #999999;
|
||||
text-shadow: 0 1px white; }
|
||||
text-shadow: 0 1px white;
|
||||
border-top: 1px solid #dddddd; }
|
||||
.aspect_tag ul {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
|
|
|
|||
|
|
@ -890,15 +890,21 @@ ul#settings_nav
|
|||
:cursor default
|
||||
|
||||
.public_aspect_tag
|
||||
:background
|
||||
:background -moz-linear-gradient(19% 75% 90deg,#FFFA75, #FFF8BA)
|
||||
:background -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF8BA), to(#FFFA75))
|
||||
:color #FFFC7F
|
||||
:border
|
||||
:top 1px solid #EBE66C
|
||||
|
||||
.aspect_tag
|
||||
:background
|
||||
:background -moz-linear-gradient(19% 75% 90deg,#E0E0E0, #F0F0F0)
|
||||
:background -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F0F0F0), to(#E0E0E0))
|
||||
:color #eee
|
||||
:color #999
|
||||
:text
|
||||
:shadow 0 1px #fff
|
||||
:border
|
||||
:top 1px solid #ddd
|
||||
|
||||
ul
|
||||
:display inline
|
||||
|
|
|
|||
Loading…
Reference in a new issue