mirror of
https://github.com/e107inc/e107.git
synced 2025-04-20 04:32:01 +02:00
Plupload styling
This commit is contained in:
parent
2112721aff
commit
9b97e07270
@ -25,6 +25,9 @@ min-height:50px;
|
||||
background-color: #191919;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
.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;
|
||||
/* IE7 inline-block hack */
|
||||
@ -790,6 +792,46 @@ span.tag button.close {
|
||||
}
|
||||
|
||||
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); }
|
||||
|
@ -48,17 +48,6 @@ else
|
||||
$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)
|
||||
{
|
||||
global $style;
|
||||
@ -142,52 +131,68 @@ function tablestyle($caption, $text, $mode)
|
||||
return;
|
||||
}
|
||||
|
||||
if(trim($caption) == '')
|
||||
{
|
||||
$style = 'no_caption';
|
||||
}
|
||||
|
||||
|
||||
|
||||
switch(varset($style, 'admin_content')) {
|
||||
switch(varset($style, 'admin_content'))
|
||||
{
|
||||
|
||||
case 'admin_menu' :
|
||||
echo '
|
||||
case 'admin_menu' :
|
||||
echo '
|
||||
<div class="well sidebar-nav" >
|
||||
<div class="nav-header">'.$caption.'</div>
|
||||
'.$text.'
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
|
||||
case 'site_info' :
|
||||
echo '
|
||||
<div class="well sidebar-nav" >
|
||||
<div class="nav-header">'.$caption.'</div>
|
||||
'.$text.'
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
|
||||
case 'site_info' :
|
||||
echo '
|
||||
<div class="well sidebar-nav" >
|
||||
<div class="nav-header">'.$caption.'</div>
|
||||
<p style="padding:10px">
|
||||
'.$text.'
|
||||
</p>
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
/*
|
||||
case 'admin_content':
|
||||
echo '
|
||||
<div class="block">
|
||||
<h2 class="caption">'.$caption.'</h2>
|
||||
<div class="block-text">
|
||||
'.$text.'
|
||||
<div class="nav-header">'.$caption.'</div>
|
||||
<p style="padding:10px">
|
||||
'.$text.'
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
*/
|
||||
default:
|
||||
echo '
|
||||
<div class="block">
|
||||
<h4 class="caption">'.$caption.'</h4>
|
||||
<div class="block-text">
|
||||
'.$text.'
|
||||
';
|
||||
break;
|
||||
/*
|
||||
case 'admin_content':
|
||||
echo '
|
||||
<div class="block">
|
||||
<h2 class="caption">'.$caption.'</h2>
|
||||
<div class="block-text">
|
||||
'.$text.'
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
';
|
||||
break;
|
||||
*/
|
||||
|
||||
case 'no_caption' :
|
||||
echo '
|
||||
<div class="block">
|
||||
<div class="block-text">
|
||||
'.$text.'
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
echo '
|
||||
<div class="block">
|
||||
<h4 class="caption">'.$caption.'</h4>
|
||||
<div class="block-text">
|
||||
'.$text.'
|
||||
</div>
|
||||
</div>
|
||||
';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user