mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 04:23:38 +01:00
284 lines
7.7 KiB
CSS
284 lines
7.7 KiB
CSS
/* Button Styles
|
|
---------------------------------------- */
|
|
|
|
/* Rollover buttons
|
|
Based on: http://wellstyled.com/css-nopreload-rollovers.html
|
|
----------------------------------------*/
|
|
.buttons {
|
|
float: left;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
|
|
/* Rollover state */
|
|
.buttons div, .dropdown-select {
|
|
float: left;
|
|
margin: 0 5px 0 0;
|
|
}
|
|
|
|
/* Rolloff state */
|
|
.buttons div a, .dropdown-select {
|
|
display: inline-block;
|
|
line-height: 17.5px;
|
|
height: 18px;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
background: transparent none 0 0 repeat-x;
|
|
padding: 2px 22px 2px 8px;
|
|
font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
|
|
font-weight: 600;
|
|
position: relative;
|
|
text-decoration: none !important;
|
|
outline-style: none !important;
|
|
vertical-align: bottom;
|
|
*padding-right: 8px;
|
|
}
|
|
|
|
.buttons div span { display: none; }
|
|
|
|
.buttons div a:after, .dropdown-select:after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 6px;
|
|
width: 12px;
|
|
height: 12px;
|
|
margin-top: -6px;
|
|
background: transparent 0 0 no-repeat;
|
|
}
|
|
|
|
.buttons div a:hover:after {
|
|
background-position: 0 -20px;
|
|
}
|
|
|
|
.dropdown-select {
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.dropdown-select:after {
|
|
background-position: -103px 10px;
|
|
border-left: 1px solid;
|
|
margin-top: 0;
|
|
top: 0;
|
|
right: 0;
|
|
height: 21px;
|
|
width: 15px;
|
|
}
|
|
|
|
.dropdown-visible .dropdown-select:after, .nojs .dropdown-container:hover .dropdown-select:after {
|
|
background-position: -103px -10px;
|
|
}
|
|
|
|
.dropdown-select-icon:before {
|
|
content: '';
|
|
display: block;
|
|
float: left;
|
|
margin-right: 4px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* Big button images */
|
|
.buttons div.reply-icon a:after, .buttons div.pmreply-icon a:after { background-position: -20px 0; }
|
|
.buttons div.reply-icon a:hover:after, .buttons div.pmreply-icon a:hover:after { background-position: -20px -20px; }
|
|
|
|
.buttons div.post-icon a:after, .buttons div.newpm-icon a:after { background-position: 0 0; }
|
|
.buttons div.post-icon a:hover:after, .buttons div.newpm-icon a:hover:after { background-position: 0 -20px; }
|
|
|
|
.buttons div.locked-icon a:after { background-position: -60px 0; }
|
|
.buttons div.locked-icon a:hover:after { background-position: -60px -20px; }
|
|
|
|
.buttons div.forwardpm-icon a:after { background-position: -40px 0; }
|
|
.buttons div.forwardpm-icon a:hover:after { background-position: -40px -20px; }
|
|
|
|
.dropdown-select.tools-icon:before { background-position: -80px 0; height: 16px; width: 16px; }
|
|
|
|
.dropdown-visible .dropdown-select.tools-icon:before,
|
|
.nojs .dropdown-container:hover .dropdown-select.tools-icon:before { background-position: -80px -20px; }
|
|
|
|
/* Sub-header (navigation bar)
|
|
--------------------------------------------- */
|
|
a.print, a.sendemail {
|
|
display: block;
|
|
overflow: hidden;
|
|
height: 18px;
|
|
text-indent: -5000px;
|
|
text-align: left;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
a.print {
|
|
background-image: none;
|
|
width: 22px;
|
|
}
|
|
|
|
a.sendemail {
|
|
background-image: none;
|
|
width: 22px;
|
|
}
|
|
|
|
/* Icon images
|
|
---------------------------------------- */
|
|
.small-icon {
|
|
background-position: 0 50%;
|
|
background-repeat: no-repeat;
|
|
background-image: none;
|
|
padding: 1px 0 0 17px;
|
|
}
|
|
|
|
ul.linklist li.small-icon {
|
|
padding-left: 0;
|
|
}
|
|
|
|
ul.linklist.bulletin li.small-icon:before {
|
|
display: none;
|
|
}
|
|
|
|
/* Poster profile icons
|
|
----------------------------------------*/
|
|
ul.profile-icons {
|
|
padding-top: 10px;
|
|
list-style: none;
|
|
}
|
|
|
|
/* Rollover state */
|
|
ul.profile-icons li {
|
|
float: left;
|
|
margin: 0 6px 3px 0;
|
|
background-position: 0 100%;
|
|
}
|
|
|
|
/* Rolloff state */
|
|
ul.profile-icons li a {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: 0 0;
|
|
}
|
|
|
|
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */
|
|
ul.profile-icons li span { display:none; }
|
|
ul.profile-icons li a:hover { background: none; }
|
|
|
|
/* Positioning of moderator icons */
|
|
.postbody ul.profile-icons {
|
|
float: right;
|
|
width: auto;
|
|
padding: 0;
|
|
}
|
|
|
|
.postbody ul.profile-icons li {
|
|
margin: 0 3px;
|
|
}
|
|
|
|
/* Responsive icons in postbody */
|
|
.postbody ul.profile-icons.responsive .responsive-menu {
|
|
position: relative;
|
|
}
|
|
|
|
ul.profile-icons.responsive a.responsive-menu-link {
|
|
display: inline-block;
|
|
position: relative;
|
|
margin: 0 5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
text-decoration: none;
|
|
background: none top left no-repeat;
|
|
}
|
|
|
|
ul.profile-icons.responsive a.responsive-menu-link:hover {
|
|
background-position: 0 -20px;
|
|
}
|
|
|
|
ul.profile-icons.responsive a.responsive-menu-link:before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 7px;
|
|
height: .125em;
|
|
width: 14px;
|
|
border-bottom: 0.125em solid transparent;
|
|
border-top: 0.375em double transparent;
|
|
}
|
|
|
|
.postbody ul.profile-icons.responsive .popup-pointer {
|
|
left: auto;
|
|
right: 7px;
|
|
top: 20px;
|
|
}
|
|
|
|
.postbody ul.profile-icons .dropdown li, .postbody ul.profile-icons .dropdown li a {
|
|
display: block;
|
|
background: transparent none;
|
|
width: auto;
|
|
height: auto;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: none;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.postbody ul.profile-icons .dropdown li span {
|
|
display: block;
|
|
text-align: right;
|
|
font-size: 1.2em;
|
|
line-height: 1.8em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.hasjs .postbody ul.profile-icons {
|
|
max-width: 40%;
|
|
}
|
|
|
|
/* Profile & navigation icons */
|
|
.email-icon, .email-icon a { background: none top left no-repeat; }
|
|
.aim-icon, .aim-icon a { background: none top left no-repeat; }
|
|
.yahoo-icon, .yahoo-icon a { background: none top left no-repeat; }
|
|
.web-icon, .web-icon a { background: none top left no-repeat; }
|
|
.phpbb_website-icon, .phpbb_website-icon a { background: none top left no-repeat; }
|
|
.msnm-icon, .msnm-icon a { background: none top left no-repeat; }
|
|
.phpbb_wlm-icon, .phpbb_wlm-icon a { background: none top left no-repeat; }
|
|
.icq-icon, .icq-icon a { background: none top left no-repeat; }
|
|
.phpbb_icq-icon, .phpbb_icq-icon a { background: none top left no-repeat; }
|
|
.jabber-icon, .jabber-icon a { background: none top left no-repeat; }
|
|
.pm-icon, .pm-icon a { background: none top left no-repeat; }
|
|
.quote-icon, .quote-icon a { background: none top left no-repeat; }
|
|
|
|
/* Moderator icons */
|
|
.report-icon, .report-icon a { background: none top left no-repeat; }
|
|
.warn-icon, .warn-icon a { background: none top left no-repeat; }
|
|
.edit-icon, .edit-icon a { background: none top left no-repeat; }
|
|
.delete-icon, .delete-icon a { background: none top left no-repeat; }
|
|
.info-icon, .info-icon a { background: none top left no-repeat; }
|
|
|
|
/* Set profile icon dimensions */
|
|
ul.profile-icons li.email-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.aim-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.yahoo-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.web-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.phpbb_website-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.msnm-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.phpbb_wlm-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.icq-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.phpbb_icq-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.jabber-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.pm-icon { width: 28px; height: 20px; }
|
|
ul.profile-icons li.quote-icon { width: 54px; height: 20px; }
|
|
ul.profile-icons li.report-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.edit-icon { width: 42px; height: 20px; }
|
|
ul.profile-icons li.delete-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.info-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons li.warn-icon { width: 20px; height: 20px; }
|
|
ul.profile-icons a.responsive-menu-link { width: 20px; height: 20px; }
|
|
|
|
/* Fix profile icon default margins */
|
|
ul.profile-icons li.edit-icon { margin: 0 0 0 3px; }
|
|
ul.profile-icons li.quote-icon { margin: 0 0 0 10px; }
|
|
ul.profile-icons li.info-icon, ul.profile-icons li.report-icon { margin: 0 3px 0 0; }
|
|
|