eggys proof-of-concept
Alles Wissenswerte steht in der dfdeREADME.txt bzw in den dort erwaehnten Forenlinks.
255
theme/buttons.css
Normal file
@@ -0,0 +1,255 @@
|
||||
/* Button Styles
|
||||
---------------------------------------- */
|
||||
|
||||
.button {
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
height: 18px;
|
||||
font-size: 1.2em;
|
||||
white-space: nowrap;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px;
|
||||
background: transparent none 0 0 repeat-x;
|
||||
padding: 2px 8px;
|
||||
/* font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica; */
|
||||
position: relative;
|
||||
text-decoration: none !important;
|
||||
outline-style: none !important;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.dropdown-select {
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.icon-button:before {
|
||||
background: transparent 0 0 no-repeat;
|
||||
content: '';
|
||||
display: inline-block;
|
||||
float: right;
|
||||
height: 12px;
|
||||
margin: 3px 0 0 2px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
.dropdown-select.icon-button:before {
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.dropdown-select:after {
|
||||
background-position: -103px 10px;
|
||||
border-left: 1px solid;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 22px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.dropdown-visible .dropdown-select:after, .nojs .dropdown-container:hover .dropdown-select:after {
|
||||
background-position: -103px -10px;
|
||||
}
|
||||
|
||||
.buttons, .buttons .button {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.buttons .button, .dropdown-select {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
#jumpbox .dropdown-select {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Big button images */
|
||||
.reply-icon:before, .pmreply-icon:before { background-position: -20px 0; }
|
||||
.reply-icon:hover:before, .pmreply-icon:hover:before { background-position: -20px -20px; }
|
||||
|
||||
.post-icon:before, .newpm-icon:before, .reply-all:before { background-position: 0 0; }
|
||||
.post-icon:hover:before,
|
||||
.newpm-icon:hover:before,
|
||||
.reply-all:hover:before { background-position: 0 -20px; }
|
||||
|
||||
.locked-icon:before { background-position: -60px 0; }
|
||||
.locked-icon:hover:before { background-position: -60px -20px; }
|
||||
|
||||
.forwardpm-icon:before { background-position: -40px 0; }
|
||||
.forwardpm-icon:hover:before { background-position: -40px -20px; }
|
||||
|
||||
.modtools-icon {
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.tools-icon:before, .modtools-icon:before, .search-icon:before, .search-adv-icon:before {
|
||||
background-position: -80px 0;
|
||||
height: 16px;
|
||||
margin-top: 2px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.dropdown-visible .tools-icon:before,
|
||||
.nojs .dropdown-container:hover .tools-icon:before { background-position: -80px -20px; }
|
||||
|
||||
.search-icon:before { background-position: -245px 0; }
|
||||
.search-icon:hover:before { background-position: -245px -20px; }
|
||||
|
||||
.search-adv-icon:before { background-position: -265px 0; }
|
||||
.search-adv-icon:hover:before { background-position: -265px -20px; }
|
||||
|
||||
.modtools-icon:before { background-position: -225px 0; }
|
||||
.dropdown-visible .modtools-icon:before,
|
||||
.nojs .dropdown-container:hover .modtools-icon:before { background-position: -225px -20px; }
|
||||
|
||||
/* Icon images
|
||||
---------------------------------------- */
|
||||
.small-icon {
|
||||
background-position: 0 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.small-icon > a {
|
||||
display: inline-block;
|
||||
padding: 0 0 0 18px;
|
||||
}
|
||||
|
||||
ul.linklist.bulletin > li.small-icon:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.dropdown .small-icon > a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Poster contact icons
|
||||
----------------------------------------*/
|
||||
.contact-icons.dropdown-contents {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.contact-icon {
|
||||
background-repeat: no-repeat;
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
.contact-icons a {
|
||||
border-bottom: 1px dotted;
|
||||
border-right: 1px dotted;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.contact-icons .last-cell {
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.contact-icons div:last-child a {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.contact-icons div {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/* Profile icons */
|
||||
.pm-icon { background-position: 0 0; }
|
||||
.email-icon { background-position: -21px 0; }
|
||||
.jabber-icon { background-position: -80px 0; }
|
||||
.phpbb_icq-icon { background-position: -61px 0 ; }
|
||||
.phpbb_wlm-icon { background-position: -182px 0; }
|
||||
.phpbb_aol-icon { background-position: -244px 0; }
|
||||
.phpbb_website-icon { background-position: -40px 0; }
|
||||
.phpbb_youtube-icon { background-position: -98px 0; }
|
||||
.phpbb_facebook-icon { background-position: -119px 0; }
|
||||
.phpbb_googleplus-icon { background-position: -140px 0; }
|
||||
.phpbb_skype-icon { background-position: -161px 0; }
|
||||
.phpbb_twitter-icon { background-position: -203px 0; }
|
||||
.phpbb_yahoo-icon { background-position: -224px 0; }
|
||||
|
||||
/* Post control buttons
|
||||
--------------------------------------------- */
|
||||
.post-buttons {
|
||||
float: right;
|
||||
list-style: none;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.has-profile .post-buttons {
|
||||
float: none;
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
right: 0;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
.post-buttons > li {
|
||||
float: left;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.post-buttons .icon-button {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.hastouch .post-buttons .icon-button {
|
||||
padding: 2px 8px;
|
||||
}
|
||||
|
||||
.post-buttons .icon-button span {
|
||||
display: block;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.post-buttons .icon-button:before {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.quote-icon:before { /*background-position: -122px 0;*/ }
|
||||
.quote-icon:hover:before { /*background-position: -122px -21px;*/ }
|
||||
.edit-icon:before { background-position: -137px 0; }
|
||||
.edit-icon:hover:before { background-position: -137px -21px; }
|
||||
.warn-icon:before { background-position: -208px 0; }
|
||||
.warn-icon:hover:before { background-position: -208px -21px; }
|
||||
.delete-icon:before { background-position: -152px 0; }
|
||||
.delete-icon:hover:before { background-position: -152px -21px; }
|
||||
.report-icon:before { background-position: -165px 0; }
|
||||
.report-icon:hover:before { background-position: -165px -21px; }
|
||||
.info-icon:before { background-position: -175px 0; }
|
||||
.info-icon:hover:before { background-position: -175px -21px; }
|
||||
.button.responsive-menu-link:before { background-position: -191px 0; }
|
||||
.button.responsive-menu-link:hover:before { background-position: -191px -21px; }
|
||||
|
||||
/* Responsive buttons in post body */
|
||||
.post-buttons .dropdown {
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
.post-buttons .dropdown a {
|
||||
display: block;
|
||||
font-size: 1.2em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.hasjs .postbody .post-buttons {
|
||||
max-width: 40%;
|
||||
}
|
||||
|
||||
/* Browser-specific tweaks */
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0
|
||||
}
|
||||
|
||||
/*
|
||||
todo:
|
||||
.quote-icon:after { padding: 40px; margin-left: 45px; }
|
||||
*/
|
||||
1163
theme/colours.css
Normal file
1297
theme/common.css
Normal file
831
theme/content.css
Normal file
@@ -0,0 +1,831 @@
|
||||
/* Content Styles
|
||||
---------------------------------------- */
|
||||
|
||||
ul.topiclist {
|
||||
display: block;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul.forums {
|
||||
background: transparent none repeat-x 0 0;
|
||||
}
|
||||
|
||||
ul.topiclist li {
|
||||
display: block;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
ul.topiclist dl {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.topiclist li.row dl {
|
||||
padding: 2px 0;
|
||||
}
|
||||
|
||||
ul.topiclist dt, ul.topiclist dd {
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
ul.topiclist dt {
|
||||
width: 100%;
|
||||
margin-right: -440px;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
ul.topiclist.missing-column dt {
|
||||
margin-right: -345px;
|
||||
}
|
||||
|
||||
ul.topiclist.two-long-columns dt {
|
||||
margin-right: -250px;
|
||||
}
|
||||
|
||||
ul.topiclist.two-columns dt {
|
||||
margin-right: -80px;
|
||||
}
|
||||
|
||||
ul.topiclist dt .list-inner {
|
||||
margin-right: 440px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
ul.topiclist.missing-column dt .list-inner {
|
||||
margin-right: 345px;
|
||||
}
|
||||
|
||||
ul.topiclist.two-long-columns dt .list-inner {
|
||||
margin-right: 250px;
|
||||
}
|
||||
|
||||
ul.topiclist.two-columns dt .list-inner {
|
||||
margin-right: 80px;
|
||||
}
|
||||
|
||||
ul.topiclist dd {
|
||||
border-left: 1px solid transparent;
|
||||
padding: 4px 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
ul.topiclist dfn {
|
||||
/* Labels for post/view counts */
|
||||
position: absolute;
|
||||
left: -999px;
|
||||
width: 990px;
|
||||
}
|
||||
|
||||
ul.topiclist li.row dt a.subforum {
|
||||
background-image: none;
|
||||
background-position: 0 50%;
|
||||
background-repeat: no-repeat;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
padding: 0 0 0 12px;
|
||||
}
|
||||
|
||||
.forum-image {
|
||||
float: left;
|
||||
padding-top: 5px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
li.row {
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
}
|
||||
|
||||
li.row strong {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
li.header dt, li.header dd {
|
||||
line-height: 1em;
|
||||
border-left-width: 0;
|
||||
margin: 2px 0 4px 0;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
font-size: 1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
li.header dt {
|
||||
font-weight: bold;
|
||||
width: 100%;
|
||||
margin-right: -440px;
|
||||
}
|
||||
|
||||
li.header dt .list-inner {
|
||||
margin-right: 440px;
|
||||
}
|
||||
|
||||
li.header dd {
|
||||
padding-left: 1px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
li.header dl.icon dt, li.header dl.icon dd {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
li.header dl.icon dt .list-inner {
|
||||
/* Tweak for headers alignment when folder icon used */
|
||||
padding-left: 0;
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
/* Forum list column styles */
|
||||
dl.icon {
|
||||
background-position: 10px 50%; /* Position of folder icon */
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
dl.icon dt {
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 95%; /* Position of topic icon */
|
||||
}
|
||||
|
||||
dl.icon dt .list-inner {
|
||||
padding-left: 45px; /* Space for folder icon */
|
||||
}
|
||||
|
||||
dl.icon dt, dl.icon dd {
|
||||
min-height: 35px;
|
||||
}
|
||||
|
||||
dl a.icon-link { /* topic row icon links */
|
||||
display: block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
margin-top: -15px;
|
||||
margin-left: 9px;
|
||||
}
|
||||
|
||||
dd.posts, dd.topics, dd.views, dd.extra, dd.mark {
|
||||
width: 80px;
|
||||
text-align: center;
|
||||
line-height: 2.2em;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
dd.posts, dd.topics, dd.views {
|
||||
width: 95px;
|
||||
}
|
||||
|
||||
/* List in forum description */
|
||||
dl.icon dt ol,
|
||||
dl.icon dt ul {
|
||||
list-style-position: inside;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
dl.icon dt li {
|
||||
display: list-item;
|
||||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
dd.lastpost, dd.redirect, dd.moderation, dd.time, dd.info {
|
||||
width: 250px;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
dd.redirect {
|
||||
line-height: 2.5em;
|
||||
}
|
||||
|
||||
dd.time {
|
||||
line-height: 200%;
|
||||
}
|
||||
|
||||
dd.lastpost > span, ul.topiclist dd.info > span, ul.topiclist dd.time > span, dd.redirect > span, dd.moderation > span {
|
||||
display: block;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
dd.extra, dd.mark {
|
||||
line-height: 200%;
|
||||
}
|
||||
|
||||
dd.option {
|
||||
width: 125px;
|
||||
line-height: 200%;
|
||||
text-align: center;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
/* Post body styles
|
||||
----------------------------------------*/
|
||||
.postbody {
|
||||
padding: 0;
|
||||
line-height: 1.48em;
|
||||
width: 76%;
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.postbody .ignore {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.postbody h3.first {
|
||||
/* The first post on the page uses this */
|
||||
font-size: 1.7em;
|
||||
}
|
||||
|
||||
.postbody h3 {
|
||||
/* Postbody requires a different h3 format - so change it here */
|
||||
float: left;
|
||||
font-size: 1.5em;
|
||||
padding: 2px 0 0 0;
|
||||
margin-top: 0 !important;
|
||||
margin-bottom: 0.3em !important;
|
||||
text-transform: none;
|
||||
border: none;
|
||||
line-height: 125%;
|
||||
}
|
||||
|
||||
.postbody h3 img {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.has-profile .postbody h3 {
|
||||
/* If there is a post-profile, we position the post-buttons differently */
|
||||
float: none !important;
|
||||
margin-right: 180px;
|
||||
}
|
||||
|
||||
.postbody .content {
|
||||
font-size: 1.3em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.postbody img.postimage {
|
||||
max-width: 100%;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.search .postbody {
|
||||
width: 68%
|
||||
}
|
||||
|
||||
/* Topic review panel
|
||||
----------------------------------------*/
|
||||
#review {
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
#topicreview {
|
||||
padding-right: 5px;
|
||||
overflow: auto;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
#topicreview .postbody {
|
||||
width: auto;
|
||||
float: none;
|
||||
margin: 0;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#topicreview .post {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#topicreview h2 {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
|
||||
.post-ignore .postbody {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* MCP Post details
|
||||
----------------------------------------*/
|
||||
#post_details {
|
||||
/* This will only work in IE7+, plus the others */
|
||||
overflow: auto;
|
||||
max-height: 300px;
|
||||
}
|
||||
|
||||
/* Content container styles
|
||||
----------------------------------------*/
|
||||
.content {
|
||||
clear: both;
|
||||
min-height: 3em;
|
||||
overflow: hidden;
|
||||
line-height: 1.4em;
|
||||
font-size: 1em;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.content h2, .panel h2 {
|
||||
font-weight: normal;
|
||||
border-bottom: 1px solid transparent;
|
||||
font-size: 1.6em;
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.panel h3 {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.panel p {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 1em;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.content p {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 1em;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
dl.faq {
|
||||
font-size: 1.1em;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 2em;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
dl.faq dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.content dl.faq {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.content li {
|
||||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
.content ul, .content ol {
|
||||
margin-bottom: 1em;
|
||||
margin-left: 3em;
|
||||
}
|
||||
|
||||
.posthilit {
|
||||
padding: 0 2px 1px 2px;
|
||||
}
|
||||
|
||||
/* Post author */
|
||||
p.author {
|
||||
margin-bottom: 0.6em;
|
||||
padding: 0 0 5px 0;
|
||||
font-size: 1em;
|
||||
line-height: 1.2em;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* Post signature */
|
||||
.signature {
|
||||
margin-top: 1.5em;
|
||||
padding-top: 0.2em;
|
||||
font-size: 1.1em;
|
||||
border-top: 1px solid transparent;
|
||||
clear: left;
|
||||
line-height: 140%;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.signature.standalone {
|
||||
border-top-width: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
dd .signature {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
clear: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.signature li {
|
||||
list-style-type: inherit;
|
||||
}
|
||||
|
||||
.signature ul, .signature ol {
|
||||
margin-bottom: 1em;
|
||||
margin-left: 3em;
|
||||
}
|
||||
|
||||
/* Post noticies */
|
||||
.notice {
|
||||
width: auto;
|
||||
margin-top: 1.5em;
|
||||
padding-top: 0.2em;
|
||||
font-size: 1em;
|
||||
border-top: 1px dashed transparent;
|
||||
clear: left;
|
||||
line-height: 130%;
|
||||
}
|
||||
|
||||
/* Jump to post link for now */
|
||||
ul.searchresults {
|
||||
list-style: none;
|
||||
text-align: right;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* BB Code styles
|
||||
----------------------------------------*/
|
||||
/* Quote block */
|
||||
blockquote {
|
||||
background: transparent none 6px 8px no-repeat;
|
||||
border: 1px solid transparent;
|
||||
font-size: 0.95em;
|
||||
margin: 0.5em 1px 0 25px;
|
||||
overflow: hidden;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
blockquote blockquote {
|
||||
/* Nested quotes */
|
||||
font-size: 1em;
|
||||
margin: 0.5em 1px 0 15px;
|
||||
}
|
||||
|
||||
blockquote cite {
|
||||
/* Username/source of quoter */
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
margin-left: 20px;
|
||||
display: block;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
blockquote cite cite {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
blockquote.uncited {
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
/* Code block */
|
||||
.codebox {
|
||||
padding: 3px;
|
||||
border: 1px solid transparent;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.codebox p {
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid transparent;
|
||||
margin-bottom: 3px;
|
||||
font-size: 0.8em !important;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
}
|
||||
|
||||
blockquote .codebox {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.codebox code {
|
||||
overflow: auto;
|
||||
display: block;
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
white-space: normal;
|
||||
padding-top: 5px;
|
||||
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
|
||||
line-height: 1.3em;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
/* Attachments
|
||||
----------------------------------------*/
|
||||
.attachbox {
|
||||
float: left;
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
margin: 5px 5px 5px 0;
|
||||
padding: 6px;
|
||||
border: 1px dashed transparent;
|
||||
clear: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.attachbox dt {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.attachbox dd {
|
||||
margin-top: 4px;
|
||||
padding-top: 4px;
|
||||
clear: left;
|
||||
border-top: 1px solid transparent;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.attachbox dd dd {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.attachbox p {
|
||||
line-height: 110%;
|
||||
font-weight: normal;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.attachbox p.stats
|
||||
{
|
||||
line-height: 110%;
|
||||
font-weight: normal;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.attach-image {
|
||||
margin: 3px 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.attach-image img {
|
||||
border: 1px solid transparent;
|
||||
/* cursor: move; */
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Inline image thumbnails */
|
||||
div.inline-attachment dl.thumbnail, div.inline-attachment dl.file {
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
div.inline-attachment p {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
dl.file {
|
||||
display: block;
|
||||
}
|
||||
|
||||
dl.file dt {
|
||||
text-transform: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dl.file dd {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
dl.thumbnail img {
|
||||
padding: 3px;
|
||||
border: 1px solid transparent;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
dl.thumbnail dd {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.attachbox dl.thumbnail dd {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
dl.thumbnail dt a:hover img {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
/* Post poll styles
|
||||
----------------------------------------*/
|
||||
fieldset.polls {
|
||||
}
|
||||
|
||||
fieldset.polls dl {
|
||||
margin-top: 5px;
|
||||
border-top: 1px solid transparent;
|
||||
padding: 5px 0 0 0;
|
||||
line-height: 120%;
|
||||
}
|
||||
|
||||
fieldset.polls dl.voted {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
fieldset.polls dt {
|
||||
text-align: left;
|
||||
float: left;
|
||||
display: block;
|
||||
width: 30%;
|
||||
border-right: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
fieldset.polls dd {
|
||||
float: left;
|
||||
width: 10%;
|
||||
border-left: none;
|
||||
padding: 0 5px;
|
||||
margin-left: 0;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
fieldset.polls dd.resultbar {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
fieldset.polls dd input {
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
fieldset.polls dd div {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
padding: 0 2px;
|
||||
overflow: visible;
|
||||
min-width: 8px;
|
||||
}
|
||||
|
||||
.pollbar1, .pollbar2, .pollbar3, .pollbar4, .pollbar5 {
|
||||
border-bottom: 1px solid transparent;
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
|
||||
.vote-submitted {
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Poster profile block
|
||||
----------------------------------------*/
|
||||
.postprofile {
|
||||
margin: 5px 0 10px 0;
|
||||
min-height: 80px;
|
||||
border: 1px solid transparent;
|
||||
border-width: 0 0 0 1px;
|
||||
width: 22%;
|
||||
float: right;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.postprofile dd, .postprofile dt {
|
||||
line-height: 1.2em;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.postprofile dd {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.postprofile strong {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.postprofile dt.no-profile-rank, .postprofile dd.profile-rank, .postprofile .search-result-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* Post-profile avatars */
|
||||
.postprofile .has-avatar .avatar-container {
|
||||
margin-bottom: 3px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.postprofile .avatar {
|
||||
display: block;
|
||||
float: left;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.postprofile .avatar img {
|
||||
display: block;
|
||||
height: auto !important;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.postprofile .profile-posts a {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
dd.profile-warnings {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dd.profile-contact {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.profile-contact .dropdown-container {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.profile-contact .icon_contact {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.profile-contact .dropdown {
|
||||
margin-right: -14px;
|
||||
}
|
||||
|
||||
.online {
|
||||
background-image: none;
|
||||
background-position: 100% 0;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/* Poster profile used by search*/
|
||||
.search .postprofile {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
/* Profile used on view-profile */
|
||||
.profile-avatar img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* pm list in compose message if mass pm is enabled */
|
||||
dl.pmlist dt {
|
||||
width: 60% !important;
|
||||
}
|
||||
|
||||
dl.pmlist dt textarea {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
dl.pmlist dd {
|
||||
margin-left: 61% !important;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.action-bar div.dl_links {
|
||||
padding: 10px 0 0 10px;
|
||||
}
|
||||
|
||||
div.dl_links {
|
||||
display: inline-block;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.dl_links strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.dl_links ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dl_links li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.attachment-filename {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ellipsis-text {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
table.fixed-width-table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
/* Show scrollbars for items with overflow on iOS devices
|
||||
----------------------------------------*/
|
||||
.postbody .content::-webkit-scrollbar, #topicreview::-webkit-scrollbar, #post_details::-webkit-scrollbar, .codebox code::-webkit-scrollbar, .attachbox dd::-webkit-scrollbar, .attach-image::-webkit-scrollbar, .dropdown-extended ul::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
-webkit-appearance: none;
|
||||
background: rgba(0, 0, 0, .1);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.postbody .content::-webkit-scrollbar-thumb, #topicreview::-webkit-scrollbar-thumb, #post_details::-webkit-scrollbar-thumb, .codebox code::-webkit-scrollbar-thumb, .attachbox dd::-webkit-scrollbar-thumb, .attach-image::-webkit-scrollbar-thumb, .dropdown-extended ul::-webkit-scrollbar-thumb {
|
||||
background: rgba(0, 0, 0, .3);
|
||||
border-radius: 3px;
|
||||
}
|
||||
376
theme/cp.css
Normal file
@@ -0,0 +1,376 @@
|
||||
/* Control Panel Styles
|
||||
---------------------------------------- */
|
||||
|
||||
|
||||
/* Main CP box
|
||||
----------------------------------------*/
|
||||
#cp-menu {
|
||||
float:left;
|
||||
width: 19%;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#cp-main {
|
||||
float: left;
|
||||
width: 81%;
|
||||
}
|
||||
|
||||
#cp-main .content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.panel-container .panel p {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.panel-container .panel ol {
|
||||
margin-left: 2em;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.panel-container .panel li.row {
|
||||
border-bottom: 1px solid transparent;
|
||||
border-top: 1px solid transparent;
|
||||
}
|
||||
|
||||
ul.cplist {
|
||||
margin-bottom: 5px;
|
||||
border-top: 1px solid transparent;
|
||||
}
|
||||
|
||||
.panel-container .panel li.header dd, .panel-container .panel li.header dt {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.panel-container table.table1 {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.panel-container table.table1 thead th {
|
||||
font-weight: bold;
|
||||
border-bottom: 1px solid transparent;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.panel-container table.table1 tbody th {
|
||||
font-style: italic;
|
||||
background-color: transparent !important;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#cp-main .pm-message {
|
||||
border: 1px solid transparent;
|
||||
margin: 10px 0;
|
||||
width: auto;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.pm-message h2 {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
#cp-main .postbody h3, #cp-main .box2 h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.panel-container .postbody p.author {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#cp-main .buttons {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
#cp-main ul.linklist {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* MCP Specific tweaks */
|
||||
.mcp-main .postbody {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tabs-container h2 {
|
||||
float: left;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
/* CP tabs shared
|
||||
----------------------------------------*/
|
||||
#tabs, #minitabs {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
#tabs > ul, #minitabs > ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#tabs .tab, #minitabs .tab {
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
#tabs .tab > a, #minitabs .tab > a {
|
||||
display: block;
|
||||
padding: 5px 9px;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* CP tabbed menu
|
||||
----------------------------------------*/
|
||||
#tabs {
|
||||
margin: 20px 0 0 7px;
|
||||
}
|
||||
|
||||
#tabs .tab > a {
|
||||
border: 1px solid transparent;
|
||||
border-radius: 4px 4px 0 0;
|
||||
margin: 1px 1px 0 0;
|
||||
}
|
||||
|
||||
#tabs .activetab > a {
|
||||
margin-top: 0;
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
|
||||
/* Mini tabbed menu used in MCP
|
||||
----------------------------------------*/
|
||||
#minitabs {
|
||||
float: right;
|
||||
margin: 15px 7px 0 0;
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
#minitabs .tab {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#minitabs .tab > a {
|
||||
border-radius: 5px 5px 0 0;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
#minitabs .tab > a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Responsive tabs
|
||||
----------------------------------------*/
|
||||
.responsive-tab {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.responsive-tab > a.responsive-tab-link {
|
||||
display: block;
|
||||
font-size: 1.6em;
|
||||
position: relative;
|
||||
width: 16px;
|
||||
line-height: 0.9em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.responsive-tab .responsive-tab-link:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 7px;
|
||||
height: .125em;
|
||||
width: 14px;
|
||||
border-bottom: 0.125em solid transparent;
|
||||
border-top: 0.375em double transparent;
|
||||
}
|
||||
|
||||
#tabs .dropdown, #minitabs .dropdown {
|
||||
top: 20px;
|
||||
margin-right: -2px;
|
||||
font-size: 1.1em;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#minitabs .dropdown {
|
||||
margin-right: -4px;
|
||||
}
|
||||
|
||||
#tabs .dropdown-up .dropdown, #minitabs .dropdown-up .dropdown {
|
||||
bottom: 20px;
|
||||
top: auto;
|
||||
}
|
||||
|
||||
#tabs .dropdown li {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#minitabs .dropdown li {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* UCP navigation menu
|
||||
----------------------------------------*/
|
||||
/* Container for sub-navigation list */
|
||||
#navigation {
|
||||
width: 100%;
|
||||
padding-top: 36px;
|
||||
}
|
||||
|
||||
#navigation ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Default list state */
|
||||
#navigation li {
|
||||
display: inline;
|
||||
font-weight: bold;
|
||||
margin: 1px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Link styles for the sub-section links */
|
||||
#navigation a {
|
||||
display: block;
|
||||
padding: 5px;
|
||||
margin: 1px 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#navigation a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Preferences pane layout
|
||||
----------------------------------------*/
|
||||
#cp-main h2 {
|
||||
border-bottom: none;
|
||||
padding: 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
/* Friends list */
|
||||
.cp-mini {
|
||||
margin: 10px 15px 10px 5px;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
padding: 5px 10px;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
dl.mini dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dl.mini dd {
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
.friend-online {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.friend-offline {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* PM Styles
|
||||
----------------------------------------*/
|
||||
#pm-menu {
|
||||
line-height: 2.5em;
|
||||
}
|
||||
|
||||
/* Defined rules list for PM options */
|
||||
ol.def-rules {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ol.def-rules li {
|
||||
line-height: 180%;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
/* PM marking colours */
|
||||
.pmlist li.bg1 {
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.pmlist li.bg2 {
|
||||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.pmlist li.pm_message_reported_colour, .pm_message_reported_colour {
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
|
||||
.pmlist li.pm_marked_colour, .pm_marked_colour,
|
||||
.pmlist li.pm_replied_colour, .pm_replied_colour,
|
||||
.pmlist li.pm_friend_colour, .pm_friend_colour,
|
||||
.pmlist li.pm_foe_colour, .pm_foe_colour {
|
||||
padding: 0;
|
||||
border: solid 3px transparent;
|
||||
border-width: 0 3px;
|
||||
}
|
||||
|
||||
.pm-legend {
|
||||
border-left-width: 10px;
|
||||
border-left-style: solid;
|
||||
border-right-width: 0;
|
||||
margin-bottom: 3px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
/* Avatar gallery */
|
||||
#gallery label {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin: 10px;
|
||||
padding: 5px;
|
||||
width: auto;
|
||||
border: 1px solid transparent;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* Responsive *CP navigation
|
||||
----------------------------------------*/
|
||||
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
|
||||
{
|
||||
.nojs #tabs a span, .nojs #minitabs a span {
|
||||
max-width: 40px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
letter-spacing: -.5px;
|
||||
}
|
||||
|
||||
#cp-menu, #navigation, #cp-main {
|
||||
float: none;
|
||||
width: auto;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#navigation {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
max-width: 320px;
|
||||
}
|
||||
|
||||
#navigation a {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
#navigation li:first-child a {
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
|
||||
#navigation li:last-child a {
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
}
|
||||
43
theme/df_images.css
Normal file
@@ -0,0 +1,43 @@
|
||||
.reply-icon span { background-image: url("./images/button_topic_reply_.gif"); }
|
||||
.post-icon span { background-image: url("./images/button_topic_new_.gif"); }
|
||||
.locked-icon span { background-image: url("./images/button_topic_locked_.gif"); }
|
||||
.pmreply-icon span { background-image: url("./images/button_pm_reply_.gif"); }
|
||||
.newpm-icon span { background-image: url("./images/button_pm_new_.gif"); }
|
||||
.forwardpm-icon span { background-image: url("./images/button_pm_forward_.gif"); }
|
||||
.email-icon, .email-icon a { background-image: url("./images/icon_contact_email_.gif"); }
|
||||
.aim-icon, .aim-icon a { background-image: url("./images/icon_contact_aim_.gif"); }
|
||||
.yahoo-icon, .yahoo-icon a { background-image: url("./images/icon_contact_yahoo_.gif"); }
|
||||
.web-icon, .web-icon a { background-image: url("./images/icon_contact_www_.gif"); }
|
||||
.msnm-icon, .msnm-icon a { background-image: url("./images/icon_contact_msnm_.gif"); }
|
||||
.icq-icon, .icq-icon a { background-image: url("./images/icon_contact_icq_.gif"); }
|
||||
.jabber-icon, .jabber-icon a { background-image: url("./images/icon_contact_jabber_.gif"); }
|
||||
.pm-icon, .pm-icon a { background-image: url("./images/icon_contact_pm_.gif"); }
|
||||
.quote-icon, .quote-icon a { background-image: url("./images/icon_post_quote.gif"); }
|
||||
.report-icon, .report-icon a { background-image: url("./images/icon_post_report.gif"); }
|
||||
.edit-icon, .edit-icon a { background-image: url("./images/icon_post_edit_.gif"); }
|
||||
.delete-icon, .delete-icon a { background-image: url("./images/icon_post_delete_.gif"); }
|
||||
.info-icon, .info-icon a { background-image: url("./images/icon_post_info_.gif"); }
|
||||
.warn-icon, .warn-icon a { background-image: url("./images/icon_user_warn_.gif"); }
|
||||
|
||||
/* Online image */
|
||||
.online { background-image: url("./images/icon_user_online.gif"); }
|
||||
|
||||
.imageset.icon_user_online {
|
||||
background-image: url("./images/icon_user_online.gif");
|
||||
padding-left: 58px;
|
||||
padding-top: 58px;
|
||||
}
|
||||
|
||||
.dfzitatbutton {
|
||||
background-image:
|
||||
url("./images/icon_post_quote.gif")
|
||||
}
|
||||
|
||||
.dfzitatbutton:hover {
|
||||
background-image:
|
||||
url("./images/icon_post_quote.gif")
|
||||
}
|
||||
|
||||
/*
|
||||
.icon-button:before, .dropdown-select:after { background-image: url("./images/icons_button.png"); }
|
||||
*/
|
||||
431
theme/forms.css
Normal file
@@ -0,0 +1,431 @@
|
||||
/* Form Styles
|
||||
---------------------------------------- */
|
||||
|
||||
/* General form styles
|
||||
----------------------------------------*/
|
||||
fieldset {
|
||||
border-width: 0;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
input {
|
||||
font-weight: normal;
|
||||
vertical-align: middle;
|
||||
padding: 0 3px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
select {
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
border: 1px solid transparent;
|
||||
padding: 1px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
option {
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
select optgroup option {
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 60%;
|
||||
padding: 2px;
|
||||
font-size: 1em;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: default;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
label input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
label img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Definition list layout for forms
|
||||
---------------------------------------- */
|
||||
fieldset dl {
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
fieldset dt {
|
||||
float: left;
|
||||
width: 40%;
|
||||
text-align: left;
|
||||
display: block;
|
||||
}
|
||||
|
||||
fieldset dd {
|
||||
margin-left: 41%;
|
||||
vertical-align: top;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
/* Specific layout 1 */
|
||||
fieldset.fields1 dt {
|
||||
width: 15em;
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
fieldset.fields1 dd {
|
||||
margin-left: 15em;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
fieldset.fields1 div {
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
/* Set it back to 0px for the reCaptcha divs: PHPBB3-9587 */
|
||||
fieldset.fields1 #recaptcha_widget_div div, fieldset.fields1 .live-search div {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Specific layout 2 */
|
||||
fieldset.fields2 dt {
|
||||
width: 15em;
|
||||
border-right-width: 0;
|
||||
}
|
||||
|
||||
fieldset.fields2 dd {
|
||||
margin-left: 16em;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
/* Form elements */
|
||||
dt label {
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
dd label {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
dd input, dd textarea {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
dd select {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
dd select[multiple] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
dd textarea {
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
/* Hover effects */
|
||||
#timezone {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
/* Quick-login on index page */
|
||||
fieldset.quick-login {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
fieldset.quick-login input {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
fieldset.quick-login input.inputbox {
|
||||
width: 15%;
|
||||
vertical-align: middle;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
fieldset.quick-login label {
|
||||
white-space: nowrap;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
/* Display options on viewtopic/viewforum pages */
|
||||
fieldset.display-options {
|
||||
text-align: center;
|
||||
margin: 3px 0 5px 0;
|
||||
}
|
||||
|
||||
fieldset.display-options label {
|
||||
white-space: nowrap;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
fieldset.display-options a {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
/* Display actions for ucp and mcp pages */
|
||||
fieldset.display-actions {
|
||||
text-align: right;
|
||||
line-height: 2em;
|
||||
white-space: nowrap;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
fieldset.display-actions label {
|
||||
white-space: nowrap;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
fieldset.sort-options {
|
||||
line-height: 2em;
|
||||
}
|
||||
|
||||
/* MCP forum selection*/
|
||||
fieldset.forum-selection {
|
||||
margin: 5px 0 3px 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
fieldset.forum-selection2 {
|
||||
margin: 13px 0 3px 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Submit button fieldset */
|
||||
fieldset.submit-buttons {
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
fieldset.submit-buttons input {
|
||||
vertical-align: middle;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
/* Posting page styles
|
||||
----------------------------------------*/
|
||||
|
||||
/* Buttons used in the editor */
|
||||
#format-buttons {
|
||||
margin: 15px 0 2px 0;
|
||||
}
|
||||
|
||||
#format-buttons input, #format-buttons select {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Main message box */
|
||||
#message-box {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
#message-box textarea {
|
||||
width: 450px;
|
||||
height: 270px;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
font-size: 1.2em;
|
||||
resize: vertical;
|
||||
outline: 3px dashed transparent;
|
||||
outline-offset: -4px;
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-ms-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
|
||||
/* Emoticons panel */
|
||||
#smiley-box {
|
||||
width: 18%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#smiley-box img {
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
/* Input field styles
|
||||
---------------------------------------- */
|
||||
.inputbox {
|
||||
border: 1px solid transparent;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.inputbox:hover, .inputbox:focus {
|
||||
border: 1px solid transparent;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
input.inputbox { width: 85%; }
|
||||
input.medium { width: 50%; }
|
||||
input.narrow { width: 25%; }
|
||||
input.tiny { width: 150px; }
|
||||
|
||||
textarea.inputbox {
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.autowidth {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
-moz-padding-end: inherit;
|
||||
}
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield;
|
||||
-webkit-box-sizing: content-box;
|
||||
}
|
||||
|
||||
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Form button styles
|
||||
---------------------------------------- */
|
||||
input.button1, input.button2 {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
a.button1, input.button1, input.button3, a.button2, input.button2 {
|
||||
width: auto !important;
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
background: transparent none repeat-x top left;
|
||||
}
|
||||
|
||||
a.button1, input.button1 {
|
||||
font-weight: bold;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
input.button3 {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
line-height: 5px;
|
||||
height: 12px;
|
||||
background-image: none;
|
||||
font-variant: small-caps;
|
||||
}
|
||||
|
||||
input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Alternative button */
|
||||
a.button2, input.button2, input.button3 {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
/* <a> button in the style of the form buttons */
|
||||
a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.button2:link, a.button2:visited, a.button2:active {
|
||||
text-decoration: none;
|
||||
padding: 2px 8px;
|
||||
line-height: 250%;
|
||||
vertical-align: text-bottom;
|
||||
background-position: 0 1px;
|
||||
}
|
||||
|
||||
/* Hover states */
|
||||
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
|
||||
border: 1px solid transparent;
|
||||
background-position: 0 100%;
|
||||
}
|
||||
|
||||
input.disabled {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* Focus states */
|
||||
input.button1:focus, input.button2:focus, input.button3:focus {
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
/* Topic and forum Search */
|
||||
.search-box {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.search-box .inputbox {
|
||||
background-image: none;
|
||||
border-right-width: 0;
|
||||
border-radius: 4px 0 0 4px;
|
||||
float: left;
|
||||
height: 24px;
|
||||
padding: 3px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.search-box button {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.search-box button.search-icon {
|
||||
border-radius: 0;
|
||||
font-size: 0;
|
||||
height: 24px;
|
||||
margin: 0;
|
||||
padding: 3px 5px;
|
||||
}
|
||||
|
||||
.search-box a.button {
|
||||
border-left-width: 0;
|
||||
border-radius: 0 4px 4px 0;
|
||||
font-size: 0;
|
||||
margin: 0;
|
||||
padding: 2px 5px 2px 3px;
|
||||
}
|
||||
|
||||
/* Search box (header)
|
||||
--------------------------------------------- */
|
||||
.search-header {
|
||||
border-radius: 4px;
|
||||
display: block;
|
||||
float: right;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.search-header .inputbox { border: 0; }
|
||||
|
||||
.search-header button {
|
||||
border-top: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.search-header a.button {
|
||||
border: 0;
|
||||
border-left: 1px;
|
||||
padding: 3px 5px 3px 4px;
|
||||
}
|
||||
|
||||
input.search {
|
||||
background-image: none;
|
||||
background-repeat: no-repeat;
|
||||
background-position: left 1px;
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
.full { width: 95%; }
|
||||
.medium { width: 50%;}
|
||||
.narrow { width: 25%;}
|
||||
.tiny { width: 10%;}
|
||||
@@ -1,106 +0,0 @@
|
||||
.gallery-icon, .gallery-icon a { background: none top left no-repeat; }
|
||||
ul.profile-icons li.gallery-icon { width: 20px; height: 20px; }
|
||||
.gallery-icon, .gallery-icon a { background-image: url("{T_IMAGESET_PATH}/icon_contact_gallery.gif"); }
|
||||
|
||||
.buttons div.upload-icon { width: {IMG_BUTTON_UPLOAD_IMAGE_WIDTH}px; height: {IMG_BUTTON_UPLOAD_IMAGE_HEIGHT}px; }
|
||||
.upload-icon span { background-image: url("{IMG_BUTTON_UPLOAD_IMAGE_SRC}"); }
|
||||
|
||||
.icon-gallery {
|
||||
background-position: 0 50%;
|
||||
background-repeat: no-repeat;
|
||||
padding: 1px 0 0 17px;
|
||||
background-image: url("{T_THEME_PATH}/images/icon_gallery.gif");
|
||||
}
|
||||
|
||||
.rtl .icon-gallery {
|
||||
background-position: 100% 50%;
|
||||
padding: 1px 17px 0 0;
|
||||
}
|
||||
|
||||
fieldset.gallery dd.simulate-dt label {
|
||||
margin-left: 0;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
color: #425067;
|
||||
}
|
||||
.rtl fieldset.gallery dd.simulate-dt label {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
fieldset.gallery dl:hover dd.simulate-dt label {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
fieldset.gallery dt.simulate-dt {
|
||||
width: 22em;
|
||||
}
|
||||
|
||||
fieldset.gallery dt.first {
|
||||
min-height: 16em;
|
||||
}
|
||||
|
||||
fieldset.gallery dd.simulate-dt {
|
||||
margin-left: 0;
|
||||
float: left;
|
||||
}
|
||||
|
||||
fieldset.gallery dd.simulate-dd {
|
||||
margin-left: 35em;
|
||||
}
|
||||
|
||||
fieldset.gallery #format-buttons {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
fieldset.gallery input.readonly, fieldset.gallery textarea.readonly {
|
||||
background: #DCDCDC;
|
||||
}
|
||||
|
||||
dd.g_lastimage {
|
||||
padding-left: 5px;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
dd.g_moderation {
|
||||
width: 35%;
|
||||
}
|
||||
|
||||
dd.g_rating, dd.g_comments {
|
||||
width: 12%;
|
||||
text-align: center;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
dd.g_status {
|
||||
width: 15%;
|
||||
text-align: center;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
span.reported-images-number {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.g_unapproved {
|
||||
background-position: 100% 0;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("{T_IMAGESET_PATH}/icon_gallery_unapproved.gif");
|
||||
}
|
||||
|
||||
.g_locked {
|
||||
background-position: 100% 0;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("{T_IMAGESET_PATH}/icon_gallery_locked.gif");
|
||||
}
|
||||
|
||||
.g_reported {
|
||||
background-position: 100% 0;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url("{T_IMAGESET_PATH}/icon_gallery_reported.gif");
|
||||
}
|
||||
|
||||
input.autowidth-gallery {
|
||||
width: 96%;
|
||||
max-width: 186px;
|
||||
}
|
||||
BIN
theme/images/alert_close.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
theme/images/announce_read.gif
Normal file
|
After Width: | Height: | Size: 728 B |
BIN
theme/images/announce_read_locked.gif
Normal file
|
After Width: | Height: | Size: 739 B |
BIN
theme/images/announce_read_locked_mine.gif
Normal file
|
After Width: | Height: | Size: 753 B |
BIN
theme/images/announce_read_mine.gif
Normal file
|
After Width: | Height: | Size: 724 B |
BIN
theme/images/announce_unread.gif
Normal file
|
After Width: | Height: | Size: 730 B |
BIN
theme/images/announce_unread_locked.gif
Normal file
|
After Width: | Height: | Size: 745 B |
BIN
theme/images/announce_unread_locked_mine.gif
Normal file
|
After Width: | Height: | Size: 755 B |
BIN
theme/images/announce_unread_mine.gif
Normal file
|
After Width: | Height: | Size: 765 B |
|
Before Width: | Height: | Size: 113 B After Width: | Height: | Size: 51 B |
|
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 49 B |
|
Before Width: | Height: | Size: 113 B After Width: | Height: | Size: 51 B |
|
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
BIN
theme/images/bg_button.gif.1.gif
Normal file
|
After Width: | Height: | Size: 182 B |
BIN
theme/images/bg_header.gif
Normal file
|
After Width: | Height: | Size: 226 B |
BIN
theme/images/bg_list.gif
Normal file
|
After Width: | Height: | Size: 374 B |
|
Before Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 420 B |
BIN
theme/images/button_topic_new.gif
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
theme/images/button_topic_new_r.gif
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
theme/images/button_topic_new_w.gif
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
theme/images/button_topic_reply.gif
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
theme/images/button_topic_reply.gif.1.gif
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
theme/images/button_topic_reply.gif.2.gif
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
theme/images/debian.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
theme/images/debian_hell.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/images/feed.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
theme/images/forum_link.gif
Normal file
|
After Width: | Height: | Size: 708 B |
BIN
theme/images/forum_link.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
theme/images/forum_read.gif
Normal file
|
After Width: | Height: | Size: 662 B |
BIN
theme/images/forum_read.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
theme/images/forum_read_locked.gif
Normal file
|
After Width: | Height: | Size: 681 B |
BIN
theme/images/forum_read_locked.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/images/forum_read_subforum.gif
Normal file
|
After Width: | Height: | Size: 725 B |
BIN
theme/images/forum_read_subforum.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
theme/images/forum_unread.gif
Normal file
|
After Width: | Height: | Size: 667 B |
BIN
theme/images/forum_unread.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
theme/images/forum_unread_locked.gif
Normal file
|
After Width: | Height: | Size: 677 B |
BIN
theme/images/forum_unread_locked.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
theme/images/forum_unread_subforum.gif
Normal file
|
After Width: | Height: | Size: 725 B |
BIN
theme/images/forum_unread_subforum.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
theme/images/gradient.gif
Normal file
|
After Width: | Height: | Size: 549 B |
BIN
theme/images/icon_acp.gif
Normal file
|
After Width: | Height: | Size: 389 B |
BIN
theme/images/icon_back_top.gif
Normal file
|
After Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
|
Before Width: | Height: | Size: 148 B After Width: | Height: | Size: 148 B |
BIN
theme/images/icon_contact.png
Normal file
|
After Width: | Height: | Size: 340 B |
BIN
theme/images/icon_contact_aim.gif
Normal file
|
After Width: | Height: | Size: 546 B |
BIN
theme/images/icon_contact_email.gif
Normal file
|
After Width: | Height: | Size: 523 B |
BIN
theme/images/icon_contact_gallery.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
theme/images/icon_contact_icq.gif
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
theme/images/icon_contact_jabber.gif
Normal file
|
After Width: | Height: | Size: 1014 B |
BIN
theme/images/icon_contact_msnm.gif
Normal file
|
After Width: | Height: | Size: 588 B |
BIN
theme/images/icon_contact_www.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
theme/images/icon_contact_yahoo.gif
Normal file
|
After Width: | Height: | Size: 541 B |
BIN
theme/images/icon_delete_cookies.gif
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
theme/images/icon_download.gif
Normal file
|
After Width: | Height: | Size: 198 B |
|
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
|
Before Width: | Height: | Size: 559 B |
|
Before Width: | Height: | Size: 960 B |
BIN
theme/images/icon_gallery_locked.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
theme/images/icon_gallery_reported.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
theme/images/icon_gallery_unapproved.gif
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 306 B After Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 219 B |
BIN
theme/images/icon_mark.gif
Normal file
|
After Width: | Height: | Size: 360 B |
BIN
theme/images/icon_mcp.gif
Normal file
|
After Width: | Height: | Size: 342 B |
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
BIN
theme/images/icon_notification.gif
Normal file
|
After Width: | Height: | Size: 551 B |
BIN
theme/images/icon_offline.gif
Normal file
|
After Width: | Height: | Size: 322 B |
BIN
theme/images/icon_online.gif
Normal file
|
After Width: | Height: | Size: 331 B |
|
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 1006 B |
BIN
theme/images/icon_pm.gif
Normal file
|
After Width: | Height: | Size: 576 B |
BIN
theme/images/icon_post_delete.gif
Normal file
|
After Width: | Height: | Size: 528 B |
BIN
theme/images/icon_post_info.gif
Normal file
|
After Width: | Height: | Size: 501 B |
BIN
theme/images/icon_post_quote.gif
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
theme/images/icon_post_quote_.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
theme/images/icon_post_quote_r.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
theme/images/icon_post_quote_w.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
theme/images/icon_post_report.gif
Normal file
|
After Width: | Height: | Size: 474 B |
BIN
theme/images/icon_post_target.gif
Normal file
|
After Width: | Height: | Size: 124 B |
BIN
theme/images/icon_post_target_unread.gif
Normal file
|
After Width: | Height: | Size: 89 B |
BIN
theme/images/icon_print.gif
Normal file
|
After Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 859 B |
BIN
theme/images/icon_profile.gif
Normal file
|
After Width: | Height: | Size: 538 B |
BIN
theme/images/icon_rate_bad.gif
Normal file
|
After Width: | Height: | Size: 465 B |
BIN
theme/images/icon_rate_good.gif
Normal file
|
After Width: | Height: | Size: 462 B |
|
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 231 B |
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |