mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +02:00
Plupload styling
This commit is contained in:
@@ -25,6 +25,9 @@ min-height:50px;
|
|||||||
background-color: #191919;
|
background-color: #191919;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.bootstrap-select, bootstrap-select button
|
.bootstrap-select, bootstrap-select button
|
||||||
{
|
{
|
||||||
|
@@ -247,7 +247,9 @@ i.s-message-debug { background-position: -1480px 0; width: 32px; height: 32px;
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.button {
|
.button,
|
||||||
|
.plupload_button,
|
||||||
|
.plupload_button:hover{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
*display: inline;
|
*display: inline;
|
||||||
/* IE7 inline-block hack */
|
/* IE7 inline-block hack */
|
||||||
@@ -790,6 +792,46 @@ span.tag button.close {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h4.caption { margin-bottom:20px; }
|
h4.caption { margin-bottom:20px; }
|
||||||
|
|
||||||
|
.plupload_container {
|
||||||
|
padding:0px;
|
||||||
|
margin: 10px 20px;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.plupload_header { background: transparent }
|
||||||
|
|
||||||
|
.plupload_header_content { background: transparent; padding-left:0px; min-height:30px; }
|
||||||
|
|
||||||
|
.plupload_wrapper { font: inherit; }
|
||||||
|
.plupload_header_title { display: none; }
|
||||||
|
|
||||||
|
.plupload_filelist_header,
|
||||||
|
.plupload_filelist_footer {
|
||||||
|
|
||||||
|
background-color: rgb(54, 54, 54);
|
||||||
|
background-image: linear-gradient(to bottom, rgb(68, 68, 68), rgb(34, 34, 34));
|
||||||
|
border: 1px solid rgb(3, 3, 3);
|
||||||
|
color: rgb(198, 198, 198);
|
||||||
|
height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.plupload_filelist .plupload_file_name {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.plupload_filelist li { background: transparent }
|
||||||
|
|
||||||
|
.plupload_file_status span {
|
||||||
|
color: rgb(198, 198, 198);
|
||||||
|
}
|
||||||
|
|
||||||
|
.plupload_scroll .plupload_filelist
|
||||||
|
{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
body { background-color: rgb(68, 68, 68); }
|
body { background-color: rgb(68, 68, 68); }
|
||||||
|
@@ -48,17 +48,6 @@ else
|
|||||||
$no_core_css = TRUE;
|
$no_core_css = TRUE;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function theme_head() {
|
|
||||||
|
|
||||||
$ret = '
|
|
||||||
<!--[if lte IE 7]>
|
|
||||||
<script type="text/javascript" src="'.THEME_ABS.'menu/menu.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
';
|
|
||||||
return $ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
function tablestyle($caption, $text, $mode)
|
function tablestyle($caption, $text, $mode)
|
||||||
{
|
{
|
||||||
global $style;
|
global $style;
|
||||||
@@ -142,10 +131,14 @@ function tablestyle($caption, $text, $mode)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(trim($caption) == '')
|
||||||
|
{
|
||||||
|
$style = 'no_caption';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
switch(varset($style, 'admin_content'))
|
||||||
switch(varset($style, 'admin_content')) {
|
{
|
||||||
|
|
||||||
case 'admin_menu' :
|
case 'admin_menu' :
|
||||||
echo '
|
echo '
|
||||||
@@ -166,7 +159,7 @@ function tablestyle($caption, $text, $mode)
|
|||||||
</div>
|
</div>
|
||||||
';
|
';
|
||||||
break;
|
break;
|
||||||
/*
|
/*
|
||||||
case 'admin_content':
|
case 'admin_content':
|
||||||
echo '
|
echo '
|
||||||
<div class="block">
|
<div class="block">
|
||||||
@@ -177,7 +170,19 @@ function tablestyle($caption, $text, $mode)
|
|||||||
</div>
|
</div>
|
||||||
';
|
';
|
||||||
break;
|
break;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
case 'no_caption' :
|
||||||
|
echo '
|
||||||
|
<div class="block">
|
||||||
|
<div class="block-text">
|
||||||
|
'.$text.'
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
';
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
echo '
|
echo '
|
||||||
<div class="block">
|
<div class="block">
|
||||||
|
Reference in New Issue
Block a user