[ticket/15115] Fix errors

PHPBB3-15115
This commit is contained in:
hanakin 2017-03-09 16:35:28 -05:00
parent 2ca1402476
commit ec71279a77
16 changed files with 340 additions and 176 deletions

View file

@ -18,13 +18,17 @@
/* Define your base font-size here; most elements will inherit this. */ /* Define your base font-size here; most elements will inherit this. */
html { html {
font-size: 1em; /* Assuming 16px... */ font-size: 16px; /* Assuming 16px... */
line-height: 1.5; /* 24px (This is now our magic number; all subsequent margin-bottoms and line-heights want to be a multiple of this number in order to maintain vertical rhythm.) */
/* 24px (This is now our magic number; all subsequent margin-bottoms and
line-heights want to be a multiple of this number in order to maintain
vertical rhythm.) */
line-height: 1.5;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
} }
body { body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #ffffff; background-color: #ffffff;
color: #333333; color: #333333;
} }
@ -116,7 +120,7 @@ ul {
* This prevents an unwanted focus outline from appearing around elements that * This prevents an unwanted focus outline from appearing around elements that
* might still respond to pointer events. * might still respond to pointer events.
*/ */
[tabindex='-1']:focus { [tabindex="-1"]:focus {
outline: none !important; outline: none !important;
} }

View file

@ -3,6 +3,7 @@
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/** /**
* common.css * common.css
@ -411,8 +412,8 @@ li.breadcrumbs span:first-child > a {
} }
.rtl ul.topiclist dd { .rtl ul.topiclist dd {
border-right-style: solid;
border-right-width: 1px; border-right-width: 1px;
border-right-style: solid;
border-left: none; border-left: none;
float: right; float: right;
} }
@ -601,8 +602,8 @@ li.breadcrumbs span:first-child > a {
.rtl .pollbar4, .rtl .pollbar4,
.rtl .pollbar5 { .rtl .pollbar5 {
border-right: none; border-right: none;
border-left-style: solid;
border-left-width: 1px; border-left-width: 1px;
border-left-style: solid;
} }
/* Poster profile block /* Poster profile block
@ -615,8 +616,8 @@ li.breadcrumbs span:first-child > a {
} }
.rtl .pm .postprofile { .rtl .pm .postprofile {
border-right-style: solid;
border-right-width: 1px; border-right-width: 1px;
border-right-style: solid;
border-left: none; border-left: none;
} }
@ -669,8 +670,8 @@ li.breadcrumbs span:first-child > a {
---------------------------------------- */ ---------------------------------------- */
.rtl .contact-icons a { .rtl .contact-icons a {
border-right: none; border-right: none;
border-left-style: dotted;
border-left-width: 1px; border-left-width: 1px;
border-left-style: dotted;
float: right; float: right;
} }
@ -810,8 +811,8 @@ li.breadcrumbs span:first-child > a {
/* PM marking colours */ /* PM marking colours */
.rtl .pm-legend { .rtl .pm-legend {
border-right-style: solid;
border-right-width: 10px; border-right-width: 10px;
border-right-style: solid;
border-left-width: 0; border-left-width: 0;
padding-right: 3px; padding-right: 3px;
padding-left: 0; padding-left: 0;
@ -958,9 +959,9 @@ li.breadcrumbs span:first-child > a {
} }
.rtl .search-box .inputbox { .rtl .search-box .inputbox {
border-radius: 0 4px 4px 0;
border-right-width: 1px; border-right-width: 1px;
border-left-width: 0; border-left-width: 0;
border-radius: 0 4px 4px 0;
float: right; float: right;
padding: 3px; padding: 3px;
} }
@ -971,9 +972,9 @@ li.breadcrumbs span:first-child > a {
} }
.rtl .button-search-end { .rtl .button-search-end {
border-radius: 4px 0 0 4px;
border-right-width: 0; border-right-width: 0;
border-left-width: 1px; border-left-width: 1px;
border-radius: 4px 0 0 4px;
} }
.rtl .search-header .button-search-end { .rtl .search-header .button-search-end {
@ -1137,4 +1138,7 @@ li.breadcrumbs span:first-child > a {
margin-right: 0; margin-right: 0;
} }
} }
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */

View file

@ -2,8 +2,10 @@
$Buttons $Buttons
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
.button { .button {
font-family: 'Open Sans', 'Droid Sans', Verdana, Arial, Helvetica; font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
font-size: 13px; font-size: 13px;
font-weight: normal; font-weight: normal;
line-height: 1.4; line-height: 1.4;
@ -59,8 +61,8 @@
} }
.button-search-end { .button-search-end {
border-radius: 0 4px 4px 0;
border-left-width: 0; border-left-width: 0;
border-radius: 0 4px 4px 0;
} }
.search-header .button-search, .search-header .button-search,
@ -173,8 +175,8 @@ button::-moz-focus-inner {
------------------------------------------------- */ ------------------------------------------------- */
.small-icon { .small-icon {
background-image: none; background-image: none;
background-position: 0 50%;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0 50%;
} }
.dropdown .small-icon { .dropdown .small-icon {
@ -191,7 +193,7 @@ button::-moz-focus-inner {
ul.linklist.bulletin > li.small-icon:before { ul.linklist.bulletin > li.small-icon:before {
display: none; display: none;
} }
/* stylelint-enable */ /* stylelint-enable selector-no-qualifying-type */
.dropdown .small-icon > a { .dropdown .small-icon > a {
display: block; display: block;
@ -205,3 +207,5 @@ ul.linklist.bulletin > li.small-icon:before {
padding-right: 19px; padding-right: 19px;
padding-left: 0; padding-left: 0;
} }
/* stylelint-enable declaration-property-unit-whitelist */

View file

@ -162,7 +162,7 @@ ul.zebra-list li:nth-child(even) {
} }
.site_logo { .site_logo {
background-image: url('./images/site_logo.gif'); background-image: url("./images/site_logo.gif");
} }
/* horizontal lists */ /* horizontal lists */
@ -338,7 +338,7 @@ p.post-notice {
ul.forums { ul.forums {
background-color: #eef5f9; /* old browsers */ /* ff3.6+ */ background-color: #eef5f9; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #d2e0eb 0%, #eef5f9 100%); /* w3c */ background-image: linear-gradient(to bottom, #d2e0eb 0%, #eef5f9 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#d2e0eb', endcolorstr='#eef5f9', gradienttype=0); /* ie6-9 */ filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#d2e0eb", endcolorstr="#eef5f9", gradienttype=0); /* ie6-9 */
} }
ul.topiclist li { ul.topiclist li {
@ -426,12 +426,12 @@ dl.faq dt {
/* quote block */ /* quote block */
blockquote { blockquote {
background-color: #ebeadd; background-color: #ebeadd;
background-image: url('./images/quote.gif'); background-image: url("./images/quote.gif");
border-color: #dbdbce; border-color: #dbdbce;
} }
.rtl blockquote { .rtl blockquote {
background-image: url('./images/quote_rtl.gif'); background-image: url("./images/quote_rtl.gif");
} }
blockquote blockquote { blockquote blockquote {
@ -595,7 +595,7 @@ fieldset.polls dd div {
} }
.online { .online {
background-image: url('./en/icon_user_online.gif'); background-image: url("./en/icon_user_online.gif");
} }
dd.profile-warnings { dd.profile-warnings {
@ -629,20 +629,20 @@ dd.profile-warnings {
.button { .button {
background-color: #e9e9e9; /* old browsers */ /* ff3.6+ */ background-color: #e9e9e9; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%); /* w3c */ background-image: linear-gradient(to bottom, #ffffff 0%, #e9e9e9 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#ffffff", endcolorstr="#e9e9e9", gradienttype=0); /* ie6-9 */
border-color: #c7c3bf; border-color: #c7c3bf;
-webkit-box-shadow: 0 0 0 1px #ffffff inset; -webkit-box-shadow: 0 0 0 1px #ffffff inset;
box-shadow: 0 0 0 1px #ffffff inset; box-shadow: 0 0 0 1px #ffffff inset;
color: #d31141; color: #d31141;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#ffffff', endcolorstr='#e9e9e9', gradienttype=0); /* ie6-9 */
} }
.button:hover, .button:hover,
.button:focus { .button:focus {
background-color: #ffffff; /* old browsers */ /* ff3.6+ */ background-color: #ffffff; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #e9e9e9 0%, #ffffff 100%); /* w3c */ background-image: linear-gradient(to bottom, #e9e9e9 0%, #ffffff 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#e9e9e9", endcolorstr="#ffffff", gradienttype=0); /* ie6-9 */
border-color: #0a8ed0; border-color: #0a8ed0;
text-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #ffffff, -1px -1px 0 rgba(188, 42, 77, 0.2); text-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #ffffff, -1px -1px 0 rgba(188, 42, 77, 0.2);
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#e9e9e9', endcolorstr='#ffffff', gradienttype=0); /* ie6-9 */
} }
.button .icon, .button .icon,
@ -701,12 +701,12 @@ dd.profile-warnings {
.pagination li a { .pagination li a {
background: #ecedee; background: #ecedee;
-webkit-filter: none;
filter: none;
border-color: #b4bac0; border-color: #b4bac0;
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
color: #5c758c; color: #5c758c;
-webkit-filter: none;
filter: none;
} }
.pagination li.ellipsis span { .pagination li.ellipsis span {
@ -725,11 +725,11 @@ dd.profile-warnings {
.pagination .dropdown-visible a.dropdown-trigger, .pagination .dropdown-visible a.dropdown-trigger,
.nojs .pagination .dropdown-container:hover a.dropdown-trigger { .nojs .pagination .dropdown-container:hover a.dropdown-trigger {
background: #368ad2; background: #368ad2;
border-color: #368ad2;
color: #ffffff;
text-shadow: none;
-webkit-filter: none; -webkit-filter: none;
filter: none; filter: none;
border-color: #368ad2;
text-shadow: none;
color: #ffffff;
} }
/* search box */ /* search box */
@ -747,7 +747,7 @@ dd.profile-warnings {
/* icon images */ /* icon images */
.contact-icon { .contact-icon {
background-image: url('./images/icons_contact.png'); background-image: url("./images/icons_contact.png");
} }
/* profile & navigation icons */ /* profile & navigation icons */
@ -805,181 +805,181 @@ dd.profile-warnings {
/* forum icons & topic icons */ /* forum icons & topic icons */
.global_read { .global_read {
background-image: url('./images/announce_read.gif'); background-image: url("./images/announce_read.gif");
} }
.global_read_mine { .global_read_mine {
background-image: url('./images/announce_read_mine.gif'); background-image: url("./images/announce_read_mine.gif");
} }
.global_read_locked { .global_read_locked {
background-image: url('./images/announce_read_locked.gif'); background-image: url("./images/announce_read_locked.gif");
} }
.global_read_locked_mine { .global_read_locked_mine {
background-image: url('./images/announce_read_locked_mine.gif'); background-image: url("./images/announce_read_locked_mine.gif");
} }
.global_unread { .global_unread {
background-image: url('./images/announce_unread.gif'); background-image: url("./images/announce_unread.gif");
} }
.global_unread_mine { .global_unread_mine {
background-image: url('./images/announce_unread_mine.gif'); background-image: url("./images/announce_unread_mine.gif");
} }
.global_unread_locked { .global_unread_locked {
background-image: url('./images/announce_unread_locked.gif'); background-image: url("./images/announce_unread_locked.gif");
} }
.global_unread_locked_mine { .global_unread_locked_mine {
background-image: url('./images/announce_unread_locked_mine.gif'); background-image: url("./images/announce_unread_locked_mine.gif");
} }
.announce_read { .announce_read {
background-image: url('./images/announce_read.gif'); background-image: url("./images/announce_read.gif");
} }
.announce_read_mine { .announce_read_mine {
background-image: url('./images/announce_read_mine.gif'); background-image: url("./images/announce_read_mine.gif");
} }
.announce_read_locked { .announce_read_locked {
background-image: url('./images/announce_read_locked.gif'); background-image: url("./images/announce_read_locked.gif");
} }
.announce_read_locked_mine { .announce_read_locked_mine {
background-image: url('./images/announce_read_locked_mine.gif'); background-image: url("./images/announce_read_locked_mine.gif");
} }
.announce_unread { .announce_unread {
background-image: url('./images/announce_unread.gif'); background-image: url("./images/announce_unread.gif");
} }
.announce_unread_mine { .announce_unread_mine {
background-image: url('./images/announce_unread_mine.gif'); background-image: url("./images/announce_unread_mine.gif");
} }
.announce_unread_locked { .announce_unread_locked {
background-image: url('./images/announce_unread_locked.gif'); background-image: url("./images/announce_unread_locked.gif");
} }
.announce_unread_locked_mine { .announce_unread_locked_mine {
background-image: url('./images/announce_unread_locked_mine.gif'); background-image: url("./images/announce_unread_locked_mine.gif");
} }
.forum_link { .forum_link {
background-image: url('./images/forum_link.gif'); background-image: url("./images/forum_link.gif");
} }
.forum_read { .forum_read {
background-image: url('./images/forum_read.gif'); background-image: url("./images/forum_read.gif");
} }
.forum_read_locked { .forum_read_locked {
background-image: url('./images/forum_read_locked.gif'); background-image: url("./images/forum_read_locked.gif");
} }
.forum_read_subforum { .forum_read_subforum {
background-image: url('./images/forum_read_subforum.gif'); background-image: url("./images/forum_read_subforum.gif");
} }
.forum_unread { .forum_unread {
background-image: url('./images/forum_unread.gif'); background-image: url("./images/forum_unread.gif");
} }
.forum_unread_locked { .forum_unread_locked {
background-image: url('./images/forum_unread_locked.gif'); background-image: url("./images/forum_unread_locked.gif");
} }
.forum_unread_subforum { .forum_unread_subforum {
background-image: url('./images/forum_unread_subforum.gif'); background-image: url("./images/forum_unread_subforum.gif");
} }
.sticky_read { .sticky_read {
background-image: url('./images/sticky_read.gif'); background-image: url("./images/sticky_read.gif");
} }
.sticky_read_mine { .sticky_read_mine {
background-image: url('./images/sticky_read_mine.gif'); background-image: url("./images/sticky_read_mine.gif");
} }
.sticky_read_locked { .sticky_read_locked {
background-image: url('./images/sticky_read_locked.gif'); background-image: url("./images/sticky_read_locked.gif");
} }
.sticky_read_locked_mine { .sticky_read_locked_mine {
background-image: url('./images/sticky_read_locked_mine.gif'); background-image: url("./images/sticky_read_locked_mine.gif");
} }
.sticky_unread { .sticky_unread {
background-image: url('./images/sticky_unread.gif'); background-image: url("./images/sticky_unread.gif");
} }
.sticky_unread_mine { .sticky_unread_mine {
background-image: url('./images/sticky_unread_mine.gif'); background-image: url("./images/sticky_unread_mine.gif");
} }
.sticky_unread_locked { .sticky_unread_locked {
background-image: url('./images/sticky_unread_locked.gif'); background-image: url("./images/sticky_unread_locked.gif");
} }
.sticky_unread_locked_mine { .sticky_unread_locked_mine {
background-image: url('./images/sticky_unread_locked_mine.gif'); background-image: url("./images/sticky_unread_locked_mine.gif");
} }
.topic_moved { .topic_moved {
background-image: url('./images/topic_moved.gif'); background-image: url("./images/topic_moved.gif");
} }
.pm_read, .pm_read,
.topic_read { .topic_read {
background-image: url('./images/topic_read.gif'); background-image: url("./images/topic_read.gif");
} }
.topic_read_mine { .topic_read_mine {
background-image: url('./images/topic_read_mine.gif'); background-image: url("./images/topic_read_mine.gif");
} }
.topic_read_hot { .topic_read_hot {
background-image: url('./images/topic_read_hot.gif'); background-image: url("./images/topic_read_hot.gif");
} }
.topic_read_hot_mine { .topic_read_hot_mine {
background-image: url('./images/topic_read_hot_mine.gif'); background-image: url("./images/topic_read_hot_mine.gif");
} }
.topic_read_locked { .topic_read_locked {
background-image: url('./images/topic_read_locked.gif'); background-image: url("./images/topic_read_locked.gif");
} }
.topic_read_locked_mine { .topic_read_locked_mine {
background-image: url('./images/topic_read_locked_mine.gif'); background-image: url("./images/topic_read_locked_mine.gif");
} }
.pm_unread, .pm_unread,
.topic_unread { .topic_unread {
background-image: url('./images/topic_unread.gif'); background-image: url("./images/topic_unread.gif");
} }
.topic_unread_mine { .topic_unread_mine {
background-image: url('./images/topic_unread_mine.gif'); background-image: url("./images/topic_unread_mine.gif");
} }
.topic_unread_hot { .topic_unread_hot {
background-image: url('./images/topic_unread_hot.gif'); background-image: url("./images/topic_unread_hot.gif");
} }
.topic_unread_hot_mine { .topic_unread_hot_mine {
background-image: url('./images/topic_unread_hot_mine.gif'); background-image: url("./images/topic_unread_hot_mine.gif");
} }
.topic_unread_locked { .topic_unread_locked {
background-image: url('./images/topic_unread_locked.gif'); background-image: url("./images/topic_unread_locked.gif");
} }
.topic_unread_locked_mine { .topic_unread_locked_mine {
background-image: url('./images/topic_unread_locked_mine.gif'); background-image: url("./images/topic_unread_locked_mine.gif");
} }
@ -1033,10 +1033,10 @@ ul.cplist {
.tabs .activetab > a:hover { .tabs .activetab > a:hover {
background-color: #cadceb; /* old browsers */ /* ff3.6+ */ background-color: #cadceb; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #e2f2ff 0%, #cadceb 100%); /* w3c */ background-image: linear-gradient(to bottom, #e2f2ff 0%, #cadceb 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#e2f2ff", endcolorstr="#cadceb", gradienttype=0); /* ie6-9 */
border-color: #cadceb; border-color: #cadceb;
box-shadow: 0 1px 1px #f2f9ff inset; box-shadow: 0 1px 1px #f2f9ff inset;
color: #333333; color: #333333;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#e2f2ff', endcolorstr='#cadceb', gradienttype=0); /* ie6-9 */
} }
.tabs .activetab > a:hover { .tabs .activetab > a:hover {
@ -1069,26 +1069,26 @@ ul.cplist {
.navigation a { .navigation a {
background: #cadceb; /* old browsers */ /* ff3.6+ */ background: #cadceb; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to right, #b4c4d1 50%, #cadceb 100%); /* w3c */ background-image: linear-gradient(to right, #b4c4d1 50%, #cadceb 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#b4c4d1", endcolorstr="#cadceb", gradienttype=1); /* ie6-9 */
color: #333333; color: #333333;
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#b4c4d1', endcolorstr='#cadceb', gradienttype=1); /* ie6-9 */
} }
.rtl .navigation a { .rtl .navigation a {
background: #b4c4d1; /* old browsers */ /* ff3.6+ */ background: #b4c4d1; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to right, #cadceb 50%, #b4c4d1 100%); /* w3c */ background-image: linear-gradient(to right, #cadceb 50%, #b4c4d1 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#cadceb', endcolorstr='#b4c4d1', gradienttype=1); /* ie6-9 */ filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#cadceb", endcolorstr="#b4c4d1", gradienttype=1); /* ie6-9 */
} }
.navigation a:hover { .navigation a:hover {
background: #aabac6; background: #aabac6;
color: #bc2a4d;
filter: progid:dximagetransform.microsoft.gradient(enabled = false); filter: progid:dximagetransform.microsoft.gradient(enabled = false);
color: #bc2a4d;
} }
.navigation .active-subsection a { .navigation .active-subsection a {
background: #f9f9f9; background: #f9f9f9;
color: #d31141;
filter: progid:dximagetransform.microsoft.gradient(enabled = false); filter: progid:dximagetransform.microsoft.gradient(enabled = false);
color: #d31141;
} }
.navigation .active-subsection a:hover { .navigation .active-subsection a:hover {
@ -1261,6 +1261,62 @@ fieldset.quick-login input.inputbox {
color: transparent; color: transparent;
} }
/* form button styles */
a.button1,
input.button1,
input.button3,
a.button2,
input.button2 {
background-color: #efefef; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #d2d2d2 0%, #efefef 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#d2d2d2", endcolorstr="#efefef", gradienttype=0); /* ie6-9 */
color: #000000;
}
a.button1,
input.button1 {
border-color: #666666;
}
input.button3 {
background-image: none;
}
/* alternative button */
a.button2,
input.button2,
input.button3 {
border-color: #666666;
}
/* <a> button in the style of the form buttons */
a.button1,
a.button2 {
color: #000000;
}
/* hover states */
a.button1:hover,
input.button1:hover,
a.button2:hover,
input.button2:hover,
input.button3:hover {
background-color: #d2d2d2; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #efefef 0%, #d2d2d2 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#efefef", endcolorstr="#d2d2d2", gradienttype=0); /* ie6-9 */
border-color: #d31141;
color: #d31141;
}
/* focus states */
input.button1:focus,
input.button2:focus,
input.button3:focus {
border-color: #11a3ea;
color: #0f4987;
}
input.disabled { input.disabled {
color: #666666; color: #666666;
} }
@ -1313,14 +1369,14 @@ input.disabled {
} }
.dropdown-extended .footer { .dropdown-extended .footer {
border-top-style: solid;
border-top-width: 1px; border-top-width: 1px;
border-top-style: solid;
} }
.dropdown-extended .header { .dropdown-extended .header {
background-color: #f1f8ff; /* old browsers */ /* ff3.6+ */ background-color: #f1f8ff; /* old browsers */ /* ff3.6+ */
background-image: linear-gradient(to bottom, #f1f8ff 0%, #cadceb 100%); /* w3c */ background-image: linear-gradient(to bottom, #f1f8ff 0%, #cadceb 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#f1f8ff', endcolorstr='#cadceb', gradienttype=0); /* ie6-9 */ filter: progid:dximagetransform.microsoft.gradient(startcolorstr="#f1f8ff", endcolorstr="#cadceb", gradienttype=0); /* ie6-9 */
} }
.dropdown .pointer { .dropdown .pointer {

View file

@ -3,6 +3,8 @@
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
html { html {
font-size: 100%; font-size: 100%;
@ -23,7 +25,7 @@ body {
h1 { h1 {
/* Forum name */ /* Forum name */
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 2em; font-size: 2em;
font-weight: bold; font-weight: bold;
margin-top: 15px; margin-top: 15px;
@ -32,7 +34,7 @@ h1 {
h2 { h2 {
/* Forum header titles */ /* Forum header titles */
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 2em; font-size: 2em;
font-weight: normal; font-weight: normal;
margin: 0.8em 0 0.2em; margin: 0.8em 0 0.2em;
@ -56,7 +58,7 @@ h3 {
h4 { h4 {
/* Forum and topic list titles */ /* Forum and topic list titles */
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.3em; font-size: 1.3em;
} }
@ -238,8 +240,8 @@ a:hover {
} }
.post { .post {
background-position: 100% 0;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 100% 0;
border-radius: 7px; border-radius: 7px;
position: relative; position: relative;
margin-bottom: 4px; margin-bottom: 4px;
@ -341,7 +343,7 @@ ul.linklist.bulletin > li:before {
line-height: inherit; line-height: inherit;
display: inline-block; display: inline-block;
padding-right: 4px; padding-right: 4px;
content: '\2022'; content: "\2022";
} }
ul.linklist.bulletin > li:first-child:before, ul.linklist.bulletin > li:first-child:before,
@ -381,7 +383,7 @@ a.header-avatar span:after {
display: inline-block; display: inline-block;
padding-top: 2px; padding-top: 2px;
padding-left: 6px; padding-left: 6px;
content: '\f0dd'; content: "\f0dd";
} }
/* Dropdown menu /* Dropdown menu
@ -406,9 +408,9 @@ a.header-avatar span:after {
border: 1px solid transparent; border: 1px solid transparent;
border-radius: 5px; border-radius: 5px;
position: absolute; position: absolute;
z-index: 2;
top: 1.2em; top: 1.2em;
left: 0; left: 0;
z-index: 2;
display: none; display: none;
margin-right: -500px; margin-right: -500px;
padding: 9px 0 0; padding: 9px 0 0;
@ -465,10 +467,10 @@ a.header-avatar span:after {
} }
.dropdown .pointer { .dropdown .pointer {
z-index: 3;
top: -1px; top: -1px;
right: auto; right: auto;
left: 10px; left: 10px;
z-index: 3;
} }
.dropdown-up .pointer { .dropdown-up .pointer {
@ -612,7 +614,7 @@ a.header-avatar span:after {
.breadcrumbs .crumb:before { .breadcrumbs .crumb:before {
font-weight: bold; font-weight: bold;
padding: 0 0.5em; padding: 0 0.5em;
content: '\2039'; content: "\2039";
} }
.breadcrumbs .crumb:first-child:before { .breadcrumbs .crumb:first-child:before {
@ -620,9 +622,9 @@ a.header-avatar span:after {
} }
.breadcrumbs .crumb a { .breadcrumbs .crumb a {
text-overflow: ellipsis;
vertical-align: bottom; vertical-align: bottom;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
} }
@ -777,8 +779,8 @@ table.info tbody th {
} }
.color_palette_placeholder table { .color_palette_placeholder table {
border-collapse: separate;
border-spacing: 1px; border-spacing: 1px;
border-collapse: separate;
} }
/* Misc layout styles /* Misc layout styles
@ -817,7 +819,7 @@ table.info tbody th {
} }
dl.details { dl.details {
/* font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; */ /* font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; */
font-size: 1.1em; font-size: 1.1em;
} }
@ -924,7 +926,7 @@ fieldset.fields1 dl.pmlist dd.recipients {
} }
.pagination li.active span { .pagination li.active span {
font-family: 'Open Sans', 'Droid Sans', Verdana, Arial, Helvetica; font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
font-size: 13px; font-size: 13px;
font-weight: normal; font-weight: normal;
line-height: 1.4; line-height: 1.4;
@ -978,10 +980,10 @@ fieldset.fields1 dl.pmlist dd.recipients {
.phpbb_alert { .phpbb_alert {
border: 1px solid transparent; border: 1px solid transparent;
position: fixed; position: fixed;
z-index: 50;
top: 150px; top: 150px;
right: 0; right: 0;
left: 0; left: 0;
z-index: 50;
display: none; display: none;
width: 620px; width: 620px;
margin: 0 auto; margin: 0 auto;
@ -1028,18 +1030,18 @@ fieldset.fields1 dl.pmlist dd.recipients {
.darken { .darken {
opacity: 0.5; opacity: 0.5;
position: fixed; position: fixed;
z-index: 45;
top: 0; top: 0;
left: 0; left: 0;
z-index: 45;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.loading_indicator { .loading_indicator {
position: fixed; position: fixed;
z-index: 51;
top: 50%; top: 50%;
left: 50%; left: 50%;
z-index: 51;
display: none; display: none;
} }
@ -1163,7 +1165,7 @@ ul.linklist:after,
.postprofile .avatar-container:after { .postprofile .avatar-container:after {
display: block; display: block;
clear: both; clear: both;
content: ''; content: "";
} }
.emoji { .emoji {
@ -1234,13 +1236,13 @@ ul.linklist:after,
} }
.dropdown-extended .header { .dropdown-extended .header {
font-family: Arial, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold; font-weight: bold;
line-height: 3em; line-height: 3em;
text-align: left; text-align: left;
text-transform: uppercase; text-transform: uppercase;
border-radius: 5px 5px 0 0;
border-bottom: 1px solid; border-bottom: 1px solid;
border-radius: 5px 5px 0 0;
text-shadow: 1px 1px 1px #ffffff; text-shadow: 1px 1px 1px #ffffff;
padding: 0 10px; padding: 0 10px;
} }
@ -1259,7 +1261,7 @@ ul.linklist:after,
.dropdown-extended .header:after { .dropdown-extended .header:after {
display: table; display: table;
clear: both; clear: both;
content: ''; content: "";
} }
.dropdown-extended .footer { .dropdown-extended .footer {
@ -1300,8 +1302,8 @@ ul.linklist:after,
.notification_list p.notification-reference, .notification_list p.notification-reference,
.notification_list p.notification-location, .notification_list p.notification-location,
.notification_list li a p.notification-reason { .notification_list li a p.notification-reason {
text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
} }
@ -1321,7 +1323,7 @@ ul.linklist:after,
} }
.notification_list p.notifications_title { .notification_list p.notifications_title {
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 1.2em !important; font-size: 1.2em !important;
} }
@ -1386,3 +1388,6 @@ ul.linklist:after,
.dropdown .clone.hidden + li { .dropdown .clone.hidden + li {
border-top: none; border-top: none;
} }
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /* /* -------------------------------------------------------------- /*
$Content $Content
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
ul.topiclist { ul.topiclist {
display: block; display: block;
@ -135,14 +138,14 @@ li.header dl.row-item dt .list-inner {
/* Forum list column styles */ /* Forum list column styles */
dl.row-item { dl.row-item {
background-position: 10px 50%; /* Position of folder icon */
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 10px 50%; /* Position of folder icon */
background-size: 32px; background-size: 32px;
} }
dl.row-item dt { dl.row-item dt {
background-position: 5px 95%; /* Position of topic icon */
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
background-size: 17px; background-size: 17px;
} }
@ -258,7 +261,7 @@ dd.option {
} }
.postbody h3 { .postbody h3 {
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.5em; font-size: 1.5em;
line-height: 125%; line-height: 125%;
text-transform: none; text-transform: none;
@ -337,7 +340,7 @@ dd.option {
/* Content container styles /* Content container styles
---------------------------------------- */ ---------------------------------------- */
.content { .content {
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1em; font-size: 1em;
line-height: 1.4em; line-height: 1.4em;
clear: both; clear: both;
@ -367,14 +370,14 @@ dd.option {
} }
.content p { .content p {
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.2em; font-size: 1.2em;
line-height: 1.4em; line-height: 1.4em;
margin-bottom: 1em; margin-bottom: 1em;
} }
dl.faq { dl.faq {
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.1em; font-size: 1.1em;
line-height: 1.4em; line-height: 1.4em;
margin-top: 1em; margin-top: 1em;
@ -448,7 +451,7 @@ dd .signature {
/* Post noticies */ /* Post noticies */
.notice { .notice {
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1em; font-size: 1em;
line-height: 130%; line-height: 130%;
border-top: 1px dashed transparent; border-top: 1px dashed transparent;
@ -486,10 +489,10 @@ blockquote blockquote {
blockquote cite { blockquote cite {
font-size: 0.9em; font-size: 0.9em;
font-weight: bold;
/* Username/source of quoter */ /* Username/source of quoter */
font-style: normal; font-style: normal;
font-weight: bold;
display: block; display: block;
margin-left: 20px; margin-left: 20px;
} }
@ -536,7 +539,7 @@ blockquote .codebox {
} }
.codebox code { .codebox code {
font: 0.9em Monaco, 'Andale Mono', 'Courier New', Courier, monospace; font: 0.9em Monaco, "Andale Mono", "Courier New", Courier, monospace;
line-height: 1.3em; line-height: 1.3em;
display: block; display: block;
overflow: auto; overflow: auto;
@ -651,7 +654,7 @@ dl.thumbnail dt a:hover img {
/* Post poll styles /* Post poll styles
---------------------------------------- */ ---------------------------------------- */
fieldset.polls { fieldset.polls {
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
} }
fieldset.polls dl { fieldset.polls dl {
@ -794,8 +797,8 @@ dd.profile-contact {
.online { .online {
background-image: none; background-image: none;
background-position: 100% 0;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 100% 0;
} }
/* Poster profile used by search */ /* Poster profile used by search */
@ -850,8 +853,8 @@ div.dl_links {
} }
.ellipsis-text { .ellipsis-text {
text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis;
display: inline-block; display: inline-block;
overflow: hidden; overflow: hidden;
} }
@ -891,4 +894,9 @@ table.fixed-width-table {
#team tr.inactive { #team tr.inactive {
font-style: italic; font-style: italic;
} }
/* stylelint-enable */ /* stylelint-enable selector-no-id */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /* /* -------------------------------------------------------------- /*
$Contorl Panel $Contorl Panel
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* Main CP box /* Main CP box
---------------------------------------- */ ---------------------------------------- */
@ -126,8 +129,8 @@ ul.cplist {
.tabs .tab > a, .tabs .tab > a,
.minitabs .tab > a { .minitabs .tab > a {
text-decoration: none;
white-space: nowrap; white-space: nowrap;
text-decoration: none;
position: relative; position: relative;
display: block; display: block;
padding: 5px 9px; padding: 5px 9px;
@ -195,7 +198,7 @@ ul.cplist {
left: 10px; left: 10px;
width: 14px; width: 14px;
height: 0.125em; height: 0.125em;
content: ''; content: "";
} }
.tabs .dropdown, .tabs .dropdown,
@ -333,8 +336,8 @@ ol.def-rules li {
.pm-legend { .pm-legend {
border-right-width: 0; border-right-width: 0;
border-left-style: solid;
border-left-width: 10px; border-left-width: 10px;
border-left-style: solid;
margin-bottom: 3px; margin-bottom: 3px;
padding-left: 3px; padding-left: 3px;
} }
@ -386,8 +389,12 @@ ol.def-rules li {
} }
.navigation li:last-child a { .navigation li:last-child a {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
} }
} }
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -1,8 +1,11 @@
/* -------------------------------------------------------------- /* /* -------------------------------------------------------------- /*
$Forms $Forms
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* General form styles /* General form styles
---------------------------------------- */ ---------------------------------------- */
@ -44,7 +47,7 @@ select optgroup option {
} }
textarea { textarea {
font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
font-size: 1em; font-size: 1em;
line-height: 1.4em; line-height: 1.4em;
width: 60%; width: 60%;
@ -263,7 +266,7 @@ fieldset.submit-buttons input {
} }
.message-box textarea { .message-box textarea {
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 1.2em; font-size: 1.2em;
outline: 3px dashed transparent; outline: 3px dashed transparent;
outline-offset: -4px; outline-offset: -4px;
@ -322,33 +325,84 @@ textarea.inputbox {
width: auto !important; width: auto !important;
} }
input[type='number'] { input[type="number"] {
-moz-padding-end: inherit; -moz-padding-end: inherit;
} }
input[type='search'] { input[type="search"] {
-webkit-box-sizing: content-box; -webkit-box-sizing: content-box;
-webkit-appearance: textfield; -webkit-appearance: textfield;
} }
input[type='search']::-webkit-search-decoration, input[type="search"]::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button, input[type="search"]::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration { input[type="search"]::-webkit-search-results-decoration {
display: none; display: none;
} }
input[type='search']::-webkit-search-cancel-button { input[type="search"]::-webkit-search-cancel-button {
cursor: pointer; cursor: pointer;
} }
input[type='button'], /* Form button styles
input[type='submit'], ---------------------------------------- */
input[type='reset'], input.button1,
input[type='checkbox'], input.button2 {
input[type='radio'] { font-size: 1em;
}
a.button1,
input.button1,
input.button3,
a.button2,
input.button2 {
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
line-height: 1.5;
background: transparent none repeat-x top left;
width: auto !important;
padding-top: 1px;
padding-bottom: 1px;
}
a.button1,
input.button1 {
font-weight: bold;
border: 1px solid transparent;
}
input.button3 {
font-variant: small-caps;
line-height: 5px;
background-image: none;
height: 12px;
margin: 0;
padding: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"] {
cursor: pointer; 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.button2 {
vertical-align: text-bottom;
text-decoration: none;
padding: 0 3px;
/* Hover states */
}
input.disabled { input.disabled {
font-weight: normal; font-weight: normal;
} }
@ -360,8 +414,8 @@ input.disabled {
.search-box .inputbox { .search-box .inputbox {
background-image: none; background-image: none;
border-radius: 4px 0 0 4px;
border-right-width: 0; border-right-width: 0;
border-radius: 4px 0 0 4px;
float: left; float: left;
box-sizing: border-box; box-sizing: border-box;
height: 24px; height: 24px;
@ -388,8 +442,8 @@ input.disabled {
input.search { input.search {
background-image: none; background-image: none;
background-position: left 1px;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: left 1px;
padding-left: 17px; padding-left: 17px;
} }
@ -408,4 +462,8 @@ input.search {
.tiny { .tiny {
width: 10%; width: 10%;
} }
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -11,13 +11,13 @@
*/ */
.icon, .icon,
.button .icon { .button .icon {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: FontAwesome; font-family: FontAwesome;
font-size: 14px; font-size: 14px;
font-weight: normal;
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
font-weight: normal;
line-height: 1; line-height: 1;
display: inline-block; display: inline-block;
text-rendering: auto; /* optimizelegibility throws things off #1094 */ text-rendering: auto; /* optimizelegibility throws things off #1094 */

View file

@ -2,6 +2,7 @@
$Links $Links
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
/* Links adjustment to correctly display an order of rtl/ltr mixed content */ /* Links adjustment to correctly display an order of rtl/ltr mixed content */
a { a {
@ -38,13 +39,13 @@ th a:hover {
/* Notification mark read link */ /* Notification mark read link */
.dropdown-extended a.mark_read { .dropdown-extended a.mark_read {
background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center center;
border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px;
position: absolute; position: absolute;
z-index: 2;
top: 50%; top: 50%;
right: 0; right: 0;
z-index: 2;
display: none; display: none;
box-sizing: border-box; box-sizing: border-box;
margin-top: -20px; margin-top: -20px;
@ -66,7 +67,7 @@ th a:hover {
/* Links for forum/topic lists */ /* Links for forum/topic lists */
a.forumtitle { a.forumtitle {
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
font-size: 1.2em; font-size: 1.2em;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
@ -77,7 +78,7 @@ a.forumtitle:hover {
} }
a.topictitle { a.topictitle {
font-family: 'Trebuchet MS', Helvetica, Arial, sans-serif; font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
font-size: 1.2em; font-size: 1.2em;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
@ -208,4 +209,5 @@ a.feed-icon-forum {
a.anchor { a.anchor {
display: block; display: block;
} }
/* stylelint-enable */
/* stylelint-enable declaration-property-unit-whitelist */

View file

@ -2,6 +2,8 @@
$Plupload $Plupload
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable declaration-property-unit-whitelist */
.attach-panel-multi { .attach-panel-multi {
display: none; display: none;
margin-bottom: 1em; margin-bottom: 1em;
@ -69,15 +71,15 @@
} }
.file-status.file-working { .file-status.file-working {
background: url('./images/plupload/throbber.gif'); background: url("./images/plupload/throbber.gif");
} }
.file-status.file-uploaded { .file-status.file-uploaded {
background: url('./images/plupload/done.gif'); background: url("./images/plupload/done.gif");
} }
.file-status.file-error { .file-status.file-error {
background: url('./images/plupload/error.gif'); background: url("./images/plupload/error.gif");
} }
.file-status { .file-status {
@ -90,3 +92,5 @@
vertical-align: bottom; vertical-align: bottom;
max-width: 65%; max-width: 65%;
} }
/* stylelint-enable declaration-property-unit-whitelist */

View file

@ -1,7 +1,10 @@
/* -------------------------------------------------------------- /* /* -------------------------------------------------------------- /*
$Print $Print
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
/* Lots still TODO here! */ /* Lots still TODO here! */
@ -71,7 +74,7 @@ h3,
h1 a, h1 a,
h2 a, h2 a,
h3 a { h3 a {
font-family: 'Trebuchet MS', georgia, Verdana, sans-serif; font-family: "Trebuchet MS", georgia, Verdana, sans-serif;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
background: none; background: none;
@ -93,7 +96,7 @@ h3 {
} }
.content { .content {
font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif; font-family: "Lucida Grande", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 11pt; font-size: 11pt;
line-height: 14pt; line-height: 14pt;
overflow: hidden; overflow: hidden;
@ -117,7 +120,7 @@ html > body .postbody a:link:after,
html > body .postbody a:visited:after { html > body .postbody a:visited:after {
font-size: 90%; font-size: 90%;
text-decoration: none; text-decoration: none;
content: ' (' attr(href) ') '; content: " (" attr(href) ") ";
} }
hr { hr {
@ -152,7 +155,7 @@ html > body .postquote .quote-by a:visited:after,
html > body .postbody h1 a:link:after, html > body .postbody h1 a:link:after,
html > body .postbody h2 a:link:after { html > body .postbody h2 a:link:after {
text-decoration: none; text-decoration: none;
content: ''; content: "";
} }
/* Poster profile */ /* Poster profile */
@ -222,3 +225,4 @@ ul {
width: 1em; width: 1em;
} }
/* stylelint-enable declaration-property-unit-whitelist */ /* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -3,6 +3,8 @@
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
/* stylelint-disable declaration-property-unit-whitelist */
/* stylelint-disable declaration-property-unit-blacklist */
@media (max-width: 320px) { @media (max-width: 320px) {
select, select,
@ -30,15 +32,15 @@
} }
.action-bar .search-box .inputbox ::-moz-placeholder { .action-bar .search-box .inputbox ::-moz-placeholder {
content: 'Search...'; content: "Search...";
} }
.action-bar .search-box .inputbox :-ms-input-placeholder { .action-bar .search-box .inputbox :-ms-input-placeholder {
content: 'Search...'; content: "Search...";
} }
.action-bar .search-box .inputbox ::-webkit-input-placeholder { .action-bar .search-box .inputbox ::-webkit-input-placeholder {
content: 'Search...'; content: "Search...";
} }
} }
@ -299,8 +301,8 @@
} }
ul.topiclist li.row dt a.subforum { ul.topiclist li.row dt a.subforum {
text-overflow: ellipsis;
vertical-align: bottom; vertical-align: bottom;
text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
max-width: 100px; max-width: 100px;
} }
@ -360,7 +362,7 @@
table.responsive td > dfn:after { table.responsive td > dfn:after {
padding-right: 5px; padding-right: 5px;
content: ':'; content: ":";
} }
table.responsive span.rank-img { table.responsive span.rank-img {
@ -368,7 +370,7 @@
padding-right: 5px; padding-right: 5px;
} }
table.responsive.memberlist td:first-child input[type='checkbox'] { table.responsive.memberlist td:first-child input[type="checkbox"] {
float: right; float: right;
} }
@ -455,7 +457,7 @@
margin-left: 20px; margin-left: 20px;
} }
fieldset.quick-login label[for='autologin'] { fieldset.quick-login label[for="autologin"] {
text-align: right; text-align: right;
display: inline-block; display: inline-block;
min-width: 50%; min-width: 50%;
@ -647,4 +649,7 @@
} }
} }
/* stylelint-enable */ /* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */
/* stylelint-enable declaration-property-unit-whitelist */
/* stylelint-enable declaration-property-unit-blacklist */

View file

@ -7,15 +7,15 @@
-------------------------------------------------------------- --------------------------------------------------------------
*/ */
@import url('normalize.css?v=3.3'); @import url("normalize.css?v=3.3");
@import url('base.css?v=3.3'); @import url("base.css?v=3.3");
@import url('utilities.css?v=3.3'); @import url("utilities.css?v=3.3");
@import url('common.css?v=3.3'); @import url("common.css?v=3.3");
@import url('links.css?v=3.3'); @import url("links.css?v=3.3");
@import url('content.css?v=3.3'); @import url("content.css?v=3.3");
@import url('buttons.css?v=3.3'); @import url("buttons.css?v=3.3");
@import url('cp.css?v=3.3'); @import url("cp.css?v=3.3");
@import url('forms.css?v=3.3'); @import url("forms.css?v=3.3");
@import url('icons.css?v=3.3'); @import url("icons.css?v=3.3");
@import url('colours.css?v=3.3'); @import url("colours.css?v=3.3");
@import url('responsive.css?v=3.3'); @import url("responsive.css?v=3.3");

View file

@ -4,6 +4,7 @@
These style definitions are IE 8 & 9 only. These style definitions are IE 8 & 9 only.
They are required due to the poor CSS support in IE browsers. They are required due to the poor CSS support in IE browsers.
/* -------------------------------------------------------------- */ /* -------------------------------------------------------------- */
/* stylelint-disable selector-max-compound-selectors */ /* stylelint-disable selector-max-compound-selectors */
/* stylelint-disable selector-no-qualifying-type */ /* stylelint-disable selector-no-qualifying-type */
@ -27,7 +28,7 @@ dd label input {
height: 20px\9; height: 20px\9;
} }
/* IE8 often can't handle max-width in %, so we use px instead */ /* IE8 often can"t handle max-width in %, so we use px instead */
.postprofile .avatar img { .postprofile .avatar img {
max-width: 150px\9; max-width: 150px\9;
} }
@ -45,14 +46,16 @@ dd label input {
.headerbar, .headerbar,
.forumbg { .forumbg {
background-image: url('./images/bg_header.gif'); background-image: url("./images/bg_header.gif");
} }
.forabg { .forabg {
background-image: url('./images/bg_list.gif'); background-image: url("./images/bg_list.gif");
} }
.tabs .tab > a { .tabs .tab > a {
border-radius: 0; border-radius: 0;
} }
/* stylelint-enable */
/* stylelint-enable selector-max-compound-selectors */
/* stylelint-enable selector-no-qualifying-type */

View file

@ -32,7 +32,7 @@
.row:before, .row:before,
.row:after { .row:after {
display: table; display: table;
content: ' '; content: " ";
} }
.clearfix:after, .clearfix:after,
@ -72,8 +72,8 @@
font: 0/0 a; font: 0/0 a;
background-color: transparent; background-color: transparent;
border: 0; border: 0;
color: transparent;
text-shadow: none; text-shadow: none;
color: transparent;
} }
.hidden { .hidden {