mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
e61e2610d2
git-svn-id: http://svn.automattic.com/wordpress/trunk@8541 1a063a9b-81f0-0310-95a4-ce76da25c4cd
122 lines
2.4 KiB
CSS
122 lines
2.4 KiB
CSS
/* NOTE: the following CSS rules(.star*) are taken more or less straight from the bbPress rating plugin. */
|
|
div.star-holder {
|
|
position: relative;
|
|
height: 19px;
|
|
width: 100px;
|
|
font-size: 19px;
|
|
}
|
|
div.star {
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
background-color: transparent;
|
|
letter-spacing: 1ex;
|
|
border: none;
|
|
}
|
|
div.star.select:hover { background-color: #d00; }
|
|
.star1 { width: 20%; }
|
|
.star2 { width: 40%; }
|
|
.star3 { width: 60%; }
|
|
.star4 { width: 80%; }
|
|
.star5 { width: 100%; }
|
|
.star-average, .star.star-rating { background-color: #fc0; } /* TODO: Colour CSS file */
|
|
.star img, div.star a, div.star a:hover, div.star a:visited {
|
|
display: block;
|
|
position: absolute;
|
|
right: 0px;
|
|
border: none;
|
|
text-decoration: none;
|
|
}
|
|
div.star img {
|
|
width: 19px;
|
|
height: 19px;
|
|
border-left: 1px solid #fff;
|
|
border-right: 1px solid #fff;
|
|
}
|
|
|
|
/* Start custom CSS */
|
|
/* TODO: Move remaining colours to Colours CSS */
|
|
/* Header on thickbox */
|
|
#plugin-information-header {
|
|
margin: 0;
|
|
padding: 0 5px;
|
|
font-weight: bold;
|
|
position: relative;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
height: 2.5em;
|
|
}
|
|
#plugin-information ul#sidemenu {
|
|
font-weight: normal;
|
|
margin: 0 5px;
|
|
position: absolute;
|
|
left: 0px;
|
|
bottom: -1px;
|
|
}
|
|
|
|
/* Install sidemenu */
|
|
|
|
#plugin-information p.action-button {
|
|
width: 100%;
|
|
padding-bottom:0;
|
|
margin-bottom:0;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#plugin-information .action-button a {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
display: block;
|
|
line-height: 2em;
|
|
}
|
|
|
|
#plugin-information h2 {
|
|
clear: none !important;
|
|
margin-right: 200px;
|
|
}
|
|
|
|
#plugin-information .fyi {
|
|
margin-left: 10px;
|
|
margin-bottom: 50px;
|
|
width: 210px;
|
|
}
|
|
|
|
#plugin-information .fyi h2 {
|
|
font-size: 0.9em;
|
|
margin-bottom: 0px;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
#plugin-information .fyi h2.mainheader {
|
|
background-color: #cee1ef; /* TODO: Colour CSS file */
|
|
padding: 5px;
|
|
}
|
|
|
|
#plugin-information .fyi ul {
|
|
background-color: #eaf3fa; /* TODO: Colour CSS file */
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
padding-left: 7px;
|
|
padding-right: 5px;
|
|
margin: 0px;
|
|
list-style: none;
|
|
}
|
|
|
|
#plugin-information .fyi li {
|
|
margin-right: 0px;
|
|
}
|
|
|
|
#plugin-information #section-holder {
|
|
padding: 10px;
|
|
}
|
|
|
|
#plugin-information #section-screenshots li img {
|
|
vertical-align: text-top;
|
|
}
|
|
#plugin-information #section-screenshots li p {
|
|
font-style: italic;
|
|
padding-left: 20px;
|
|
padding-bottom: 2em;
|
|
} |