mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
commit
ac32ae79af
5 changed files with 25 additions and 14 deletions
|
|
@ -87,9 +87,14 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0
|
|||
table td.filename .nametext { overflow:hidden; text-overflow:ellipsis; }
|
||||
table td.filename .uploadtext { font-weight:normal; margin-left:.5em; }
|
||||
table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; }
|
||||
|
||||
/* File checkboxes */
|
||||
#fileList tr td.filename>input[type="checkbox"]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; float:left; margin:.7em 0 0 1em; /* bigger clickable area doesn’t work in FF width:2.8em; height:2.4em;*/ -webkit-transition:opacity 200ms; -moz-transition:opacity 200ms; -o-transition:opacity 200ms; transition:opacity 200ms; }
|
||||
#fileList tr td.filename>input[type="checkbox"]:hover:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
|
||||
/* Always show checkbox when selected */
|
||||
#fileList tr td.filename>input[type="checkbox"]:checked:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
|
||||
#fileList tr.selected td.filename>input[type="checkbox"]:first-child { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
|
||||
|
||||
#fileList tr td.filename {
|
||||
position:relative; width:100%;
|
||||
-webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,8 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC
|
|||
|
||||
/* INPUTS */
|
||||
input[type="text"], input[type="password"] { cursor:text; }
|
||||
input, textarea, select, button, .button, #quota, div.jp-progress, .pager li a {
|
||||
input[type="text"], input[type="password"], input[type="search"],
|
||||
textarea, select, button, .button, #quota, div.jp-progress, .pager li a {
|
||||
width:10em; margin:.3em; padding:.6em .5em .4em;
|
||||
font-size:1em; font-family:Arial, Verdana, sans-serif;
|
||||
background:#fff; color:#333; border:1px solid #ddd; outline:none;
|
||||
|
|
@ -154,7 +155,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
|
|||
#adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; }
|
||||
#adminlogin+label+img, #adminpass-icon, #user+label+img, #password-icon {
|
||||
position:absolute; left:1.25em; top:1.65em;
|
||||
opacity:.3;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3;
|
||||
}
|
||||
#adminpass-icon, #password-icon { top:1.1em; }
|
||||
input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; }
|
||||
|
|
@ -194,10 +195,11 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
|
|||
#show { position:absolute; right:1em; top:.8em; float:right; }
|
||||
#show, #personal-show { display:none; }
|
||||
#show + label { right:1em; top:1.25em!important; }
|
||||
#show:checked + label, #personal-show:checked + label { opacity:.8; }
|
||||
#show:checked + label, #personal-show:checked + label { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
|
||||
#show + label, #personal-show + label {
|
||||
position:absolute!important; height:14px; width:24px;
|
||||
background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3;
|
||||
background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3;
|
||||
}
|
||||
#pass2, input[name="personal-password-clone"] { padding:0.6em 2.5em 0.4em 0.4em; width:8em;}
|
||||
#personal-show + label { margin-top:1em; margin-left:-3em; }
|
||||
|
|
@ -238,11 +240,12 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
|
|||
#navigation a {
|
||||
display:block; padding:8px 0 4px;
|
||||
text-decoration:none; font-size:10px; text-align:center;
|
||||
color:#fff; text-shadow:#000 0 -1px 0; opacity:.5;
|
||||
color:#fff; text-shadow:#000 0 -1px 0;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5;
|
||||
white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names
|
||||
}
|
||||
#navigation a:hover, #navigation a:focus { opacity:.8; }
|
||||
#navigation a.active { opacity:1; }
|
||||
#navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; }
|
||||
#navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
|
||||
#navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; }
|
||||
#navigation li:first-child a { padding-top:16px; }
|
||||
|
||||
|
|
@ -251,17 +254,20 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
|
|||
#settings { float:right; margin-top:7px; color:#bbb; text-shadow:0 -1px 0 #000; }
|
||||
#expand { padding:15px; cursor:pointer; font-weight:bold; }
|
||||
#expand:hover, #expand:focus, #expand:active { color:#fff; }
|
||||
#expand img { opacity:.7; margin-bottom:-2px; }
|
||||
#expand:hover img, #expand:focus img, #expand:active img { opacity:1; }
|
||||
#expand img { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70); opacity:.7; margin-bottom:-2px; }
|
||||
#expand:hover img, #expand:focus img, #expand:active img { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
|
||||
#expanddiv {
|
||||
position:absolute; right:0; top:45px; z-index:76; display:none;
|
||||
background-color:#444; border-bottom-left-radius:7px; box-shadow: 0 0 20px rgb(29,45,68);
|
||||
background:#383c43 url('../img/noise.png') repeat; border-bottom:1px #333 solid; border-left:border-bottom:1px #333 solid;
|
||||
-moz-box-shadow:0 0 7px rgb(29,45,68); -webkit-box-shadow:0 0 7px rgb(29,45,68); box-shadow:0 0 7px rgb(29,45,68);
|
||||
}
|
||||
#expanddiv a { display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; opacity:.7; }
|
||||
#expanddiv a {
|
||||
display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px;
|
||||
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter:alpha(opacity=70);opacity:.7;
|
||||
}
|
||||
#expanddiv a img { margin-bottom:-3px; }
|
||||
#expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { opacity:1; }
|
||||
#expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
|
||||
|
||||
|
||||
/* VARIOUS REUSABLE SELECTORS */
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
</fieldset>
|
||||
|
||||
<fieldset id="datadirField">
|
||||
<legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> ▾</a></legend>
|
||||
<legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> <img class="svg" src="<?php echo image_path('', 'actions/triangle-s.svg'); ?>" /></a></legend>
|
||||
<div id="datadirContent">
|
||||
<label for="directory"><?php echo $l->t( 'Data folder' ); ?></label>
|
||||
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" />
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
<?php foreach($_['navigation'] as $entry): ?>
|
||||
<li data-id="<?php echo $entry['id']; ?>">
|
||||
<a href="<?php echo $entry['href']; ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
|
||||
<img class="icon" src="<?php echo $entry['icon']; ?>"/>
|
||||
<img class="icon svg" src="<?php echo $entry['icon']; ?>"/>
|
||||
<?php echo $entry['name']; ?>
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ $_['subadmingroups'] = array_flip($items);
|
|||
<td class="remove">
|
||||
<?php if($user['name']!=OC_User::getUser()):?>
|
||||
<a href="#" class="action delete" original-title="<?php echo $l->t('Delete')?>">
|
||||
<img src="<?php echo image_path('core', 'actions/delete.svg') ?>" />
|
||||
<img src="<?php echo image_path('core', 'actions/delete.svg') ?>" class="svg" />
|
||||
</a>
|
||||
<?php endif;?>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue