mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge remote-tracking branch 'cyberalien/feature/prosilver-cleanup/remove-tweaks2' into develop
This commit is contained in:
commit
3d610e3872
6 changed files with 28 additions and 84 deletions
|
@ -84,6 +84,10 @@
|
||||||
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!--[if lte IE 8]>
|
||||||
|
<link href="{T_THEME_PATH}/tweaks.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
|
<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
|
||||||
|
|
|
@ -50,6 +50,10 @@
|
||||||
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!--[if lte IE 8]>
|
||||||
|
<link href="{T_THEME_PATH}/tweaks.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
<!-- DEFINE $POPUP = 1 -->
|
<!-- DEFINE $POPUP = 1 -->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -372,6 +372,8 @@ span.corners-bottom span {
|
||||||
ul.linklist {
|
ul.linklist {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
height: 4%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.linklist li {
|
ul.linklist li {
|
||||||
|
@ -558,6 +560,11 @@ dl.details dd {
|
||||||
width: 65%;
|
width: 65%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.clearfix, #tabs, #minitabs, fieldset dl, ul.topiclist dl, dl.polls {
|
||||||
|
height: 1%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
/* Pagination
|
/* Pagination
|
||||||
---------------------------------------- */
|
---------------------------------------- */
|
||||||
.pagination {
|
.pagination {
|
||||||
|
|
|
@ -149,10 +149,6 @@ fieldset.fields2 dl:hover dt label {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
}
|
}
|
||||||
|
|
||||||
* html #timezone {
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Quick-login on index page */
|
/* Quick-login on index page */
|
||||||
fieldset.quick-login {
|
fieldset.quick-login {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
|
|
@ -13,6 +13,5 @@
|
||||||
@import url("buttons.css");
|
@import url("buttons.css");
|
||||||
@import url("cp.css");
|
@import url("cp.css");
|
||||||
@import url("forms.css");
|
@import url("forms.css");
|
||||||
@import url("tweaks.css");
|
|
||||||
@import url("colours.css");
|
@import url("colours.css");
|
||||||
@import url("imageset.css");
|
@import url("imageset.css");
|
||||||
|
|
|
@ -1,97 +1,31 @@
|
||||||
/* Style Sheet Tweaks
|
/* Style Sheet Tweaks
|
||||||
|
|
||||||
These style definitions are mainly IE specific
|
These style definitions are IE 7 and 8 specific
|
||||||
tweaks required due to its poor CSS support.
|
tweaks required due to its poor CSS support.
|
||||||
-------------------------------------------------*/
|
-------------------------------------------------*/
|
||||||
|
|
||||||
* html table, * html select, * html input { font-size: 100%; }
|
|
||||||
* html hr { margin: 0; }
|
|
||||||
* html span.corners-top, * html span.corners-bottom { background-image: url("./images/corners_left.gif"); }
|
|
||||||
* html span.corners-top span, * html span.corners-bottom span { background-image: url("./images/corners_right.gif"); }
|
|
||||||
|
|
||||||
table.table1 {
|
table.table1 {
|
||||||
width: 99%; /* IE < 6 browsers */
|
|
||||||
/* Tantek hack */
|
|
||||||
voice-family: "\"}\"";
|
|
||||||
voice-family: inherit;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
html>body table.table1 { width: 100%; } /* Reset 100% for opera */
|
|
||||||
|
|
||||||
* html ul.topiclist li { position: relative; }
|
/* Align checkboxes/radio buttons nicely */
|
||||||
* html .postbody h3 img { vertical-align: middle; }
|
dd label input {
|
||||||
|
vertical-align: text-bottom;
|
||||||
/* Form styles */
|
*vertical-align: middle;
|
||||||
html>body dd label input { vertical-align: text-bottom; } /* Align checkboxes/radio buttons nicely */
|
|
||||||
|
|
||||||
* html input.button1, * html input.button2 {
|
|
||||||
padding-bottom: 0;
|
|
||||||
margin-bottom: 1px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Misc layout styles */
|
/* Simple fix so forum and topic lists always have a height set */
|
||||||
* html .column1, * html .column2 { width: 45%; }
|
|
||||||
|
|
||||||
/* Nice method for clearing floated blocks without having to insert any extra markup (like spacer above)
|
|
||||||
From http://www.positioniseverything.net/easyclearing.html
|
|
||||||
#tabs:after, #minitabs:after, .post:after, .navbar:after, fieldset dl:after, ul.topiclist dl:after, ul.linklist:after, dl.polls:after {
|
|
||||||
content: ".";
|
|
||||||
display: block;
|
|
||||||
height: 0;
|
|
||||||
clear: both;
|
|
||||||
visibility: hidden;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
.clearfix, #tabs, #minitabs, fieldset dl, ul.topiclist dl, dl.polls {
|
|
||||||
height: 1%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* viewtopic fix */
|
|
||||||
* html .post {
|
|
||||||
height: 25%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* navbar fix */
|
|
||||||
* html .clearfix, * html .navbar, ul.linklist {
|
|
||||||
height: 4%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Simple fix so forum and topic lists always have a min-height set, even in IE6
|
|
||||||
From http://www.dustindiaz.com/min-height-fast-hack */
|
|
||||||
dl.icon {
|
dl.icon {
|
||||||
min-height: 35px;
|
*height: 35px;
|
||||||
height: auto !important;
|
|
||||||
height: 35px;
|
|
||||||
}
|
|
||||||
|
|
||||||
* html li.row dl.icon dt {
|
|
||||||
height: 35px;
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
* html #search-box {
|
|
||||||
width: 25%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Correctly clear floating for details on profile view */
|
/* Correctly clear floating for details on profile view */
|
||||||
*:first-child+html dl.details dd {
|
dl.details dd {
|
||||||
margin-left: 30%;
|
*margin-left: 30%;
|
||||||
float: none;
|
*float: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
* html dl.details dd {
|
/* Headerbar height fix for IE7 */
|
||||||
margin-left: 30%;
|
#site-description p {
|
||||||
float: none;
|
*margin-bottom: 1.0em;
|
||||||
}
|
|
||||||
|
|
||||||
/* Headerbar height fix for IE7 and below */
|
|
||||||
* html #site-description p {
|
|
||||||
margin-bottom: 1.0em;
|
|
||||||
}
|
|
||||||
|
|
||||||
*:first-child+html #site-description p {
|
|
||||||
margin-bottom: 1.0em;
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue